diff options
-rw-r--r-- | CHANGES.md | 10 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 11 insertions, 1 deletions
@@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.5.0-beta.1 +- Font settings, sharing and search are externalized as default plugins +- Plugins can define a configuration schema in the manifest, this schema will be used to validate configuration during build +- New Node.js API for plugin: `book.formatString(type, content)` +- New client side API for website plugins: `gitbook.toolbar.createButton(opts)` +- Better header/footer for PDF, CSS wil be inlined to easily style the header/footer +- Cleaner table of contents for ebooks +- Support for RTL in ebook's table of contents +- Better colors for mobi (links and code blocks) + ## 2.4.3 - Add ukrainian translation (`uk`) - Add `book.json` configuration for maximum size of search index diff --git a/package.json b/package.json index a1e1667..3f290af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitbook", - "version": "2.4.3", + "version": "2.5.0-beta.1", "homepage": "https://www.gitbook.com", "description": "Library and cmd utility to generate GitBooks", "main": "lib/index.js", |