Skip to content

Releases: rust-lang/mdBook

v0.0.14

26 Aug 22:59
Compare
Choose a tag to compare

Change log

Enhancements

  • Tests now emit a non zero exit-code when failing. Thanks @carols10cents

v0.0.13

01 Aug 22:36
Compare
Choose a tag to compare

Change log

Bug fixes

  • <ul><li> and </li></ul> are now correctly balanced in the TOC (Thanks @quornian )
  • Anchors are now correctly encoded (spaces are converted to %20)
  • When you load the page from a url already containing an anchor, a second anchor will not dumbly be appended anymore (Thanks @icanrealizeum )

Style fixes

  • The default theme (light) is now rendered correctly when JavaScript is disabled
  • Styling for printing has been improved

Infrastructure

  • Docs are now deployed correctly again... Because of a bug in the deployment script, they were not updated since march.

v0.0.12

26 Apr 17:13
Compare
Choose a tag to compare

Change log

Bug fixes

  • On windows links are now correctly rendered with / instead of \
  • Paths passed as parameter that are not the current directory are now correctly used again
  • Destination and source paths with multiple directories that do not exist can be constructed correctly now

v0.0.11

13 Apr 20:28
Compare
Choose a tag to compare

Change Log

  • Windows is now tested on new commits
  • On new releases self-contained tarballs / zips are created automatically

Thanks to @japaric !

New features

  • mdbook serve will watch for file changes and serve the rendered book to localhost:3000 (thanks to @Bobo1239)
  • On init the user is now asked if he wants a .gitignore to be created (thanks to @vrinek)

Bug fixes

  • CDN ressources are now loaded from https, making them load correctly on https enabled sites
  • Watch command should now handle multiple "modified" events fired close to each other as one

v0.0.11-rc1

08 Mar 16:28
Compare
Choose a tag to compare
v0.0.11-rc1 Pre-release
Pre-release

This release candidate is to test the new scripts that automatically create tarballs / zips with the binaries

Change Log

  • Windows is now tested on new commits
  • On new releases self-contained tarballs / zips are created automatically

New features

  • On init the user is now asked if he wants a .gitignore to be created

v0.0.10

01 Mar 17:36
Compare
Choose a tag to compare
Merge branch 'master' of https://github.com/azerupi/mdBook

v0.0.9

22 Feb 17:58
Compare
Choose a tag to compare

Change log

New features

  • mdBook now has a beautiful favicon (thanks to @jessestricker) that can be overridden by placing a favicon.png file in the theme directory

v0.0.8

16 Feb 07:53
Compare
Choose a tag to compare

Change Log

Bug Fixes

  • Display theme popup on top of the navigation arrows to make it possible again to change themes

v0.0.7

15 Feb 20:23
Compare
Choose a tag to compare

Change Log

Style fixes

  • modal menu for choosing the color theme is not nested inside the font-awesome <i> tag anymore, the font is now the same as the rest of the page, so is the text color. The "(default)" text is wrapped in a span block that is lighter than the theme name for better contrast
  • tables have now borders, the header row is colored differently and the row color alternates

Bug fixes

  • update in Pulldown-cmark resolved Unicode and empty tables panic

v0.0.6

03 Jan 13:14
Compare
Choose a tag to compare

Change Log

New Features

  • It is now possible to load rust files that are runnable with this syntax: {{#playpen file.rs}}. They will appear as normal code blocks but will have a play button to run them.
  • Anchors for headings now have an href attribute, this means that now when you click a heading you will be redirected to that anchor AND you will see the url to the anchor in the url bar. This was not the case before.
  • pulldown-cmark has been updated, tables and footnotes are now supported
  • blockquotes have been styled and can now be used as asides for example

Bug Fixes

  • Fix bug where # characters (used to hide rust code lines) where not removed if they were not the very first character of the line
  • Remove the temporary copy of Path_Ext, use the version from STD that has been stabilized
  • the std function fs::create_dir_all does the same thing as create_path but better. Is that instead and remove create_path. This resolves a bug where weird things would happen if you gave a path with .. in it.