Skip to content

Commit

Permalink
feat(CLI): First cut {CLI methods, API integrations and basic functio…
Browse files Browse the repository at this point in the history
…nality}

First cut CLI tool with basic book baking helpers and methods \| Simple POST API integration with

bubblin.

Breaking changes to API integration and book \| cover publishing
  • Loading branch information
marvindanig committed Sep 3, 2016
1 parent b823b26 commit 2d9f8f1
Show file tree
Hide file tree
Showing 54 changed files with 2,345 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
["presets": "es2015"]
}
16 changes: 16 additions & 0 deletions .bookizarc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"token": "",
"username": "",
"email": "",

"mode": {
"HTML": "html",
"CSS": "css",
"JS": "js",
"HEAD": "html"
},
"urls": {
"registrationURL": "https://bubbl.in/api/register",
"baseURL": "https://bubbl.in/api/books/"
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
*.DS_store
node_modules/
npm-debug.log
crust
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '6.2'
before_install:
- npm i -g npm@latest
before_script:
- npm prune
script:
- npm run test:once
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Bookiza Change Log
All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).


### [Unreleased] Added 2016-06-11

### [Unreleased] Removed 2016-06-11

### [Unreleased] Reverted 2016-06-11

---

### [Unreleased] Added 2016-06-10
- Added per batch request update and process_complete when last request returns `ok`.
- PAGES_CHUNK_SIZE
- Breaking Changes: Moved "book_id" to `.bookrc` instead of `package.json`, renamed `template.html`, `template.css` and `template.js` to `body.html`, `style.css` and `script.js` respectively for uniformity. Moved book.title to `.bookrc`.

### [Unreleased] Reverted 2016-06-10
- Revert to .bookrc instead of book.json because book.json sounds like actual book. See `lib/manager.js`

### [Unreleased] Removed 2016-06-10
- ProgressBar removed because unused

---

### [Unreleased] Added 2016-06-9
- ES2015 for client registration. See `lib/register`
- Return Promise object for .bookizarc file I/O.
- "Arc Bookiza": "0.0.13", https://www.npmjs.com/package/arc-bookiza

---

### [0.0.22] Added 2016-06-3
- Replace .bookrc with book.json for book-level mode & book_id information.
- "npm-update-module": "1.0.4" - See `update` method in `bin/bin.js`.


## 0.0.1 - 0.0.21 2016-05-31
### Added
- This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG.
- CNAME file to enable GitHub Pages custom domain
- README now contains answers to common questions about CHANGELOGs
- Good examples and basic guidelines, including proper date formatting.
- Counter-examples: "What makes a unicorn cry?"
- Framework website up!
45 changes: 44 additions & 1 deletion LICENSE.markdown
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
# License(s)

Dual license | Offerings to be decided.
THIS REPO IS CURRENTLY UNLICENSED.

TODO: Dual license | To be decided.


-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
___. __ .__
\_ |__ ____ ____ | | _|__|____________
| __ \ / _ \ / _ \| |/ / \___ /\__ \
| \_\ ( <_> | <_> ) <| |/ / / __ \_
|___ /\____/ \____/|__|_ \__/_____ \(____ /
\/ \/ \/ \/

-----------------------------------------------------------------------------
-----------------------------------------------------------------------------

The MIT License

Copyright (c) 2015-2016+ Marvin Danig and The Bubblin Foundation *.

See https://github.com/bubblin/bookiza/contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN

THE SOFTWARE.

-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
39 changes: 39 additions & 0 deletions MIT-license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
___. __ .__
\_ |__ ____ ____ | | _|__|____________
| __ \ / _ \ / _ \| |/ / \___ /\__ \
| \_\ ( <_> | <_> ) <| |/ / / __ \_
|___ /\____/ \____/|__|_ \__/_____ \(____ /
\/ \/ \/ \/

-----------------------------------------------------------------------------
-----------------------------------------------------------------------------

The MIT License

Copyright (c) 2015-2016+ Marvin Danig and The Bubblin Foundation *.

See https://github.com/bubblin/bookiza/contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN

THE SOFTWARE.

-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Quick and beautiful books. *Everywhere*. `Responsive` by default.

Bookiza is a book *baking tool*. It is a lightweight javascript (node 6+) framework that helps you compose book apps (SPAs).
Bookiza is a book *baking tool*. It is a lightweight javascript (node 6+) framework that helps you compose books, magazines and comics (SPAs).

# Advantage
Bookiza cuts your book writing & publishing time down by half. By HALF!, no less. Bringing in some of the best design and development techniques in the world, bookiza will turn your saga into a timeless product, an eternal journey of … no wait, an offline-first, well-paginated simple book app.
Expand Down
Loading

0 comments on commit 2d9f8f1

Please sign in to comment.