From 2780344a1b9c22520aeb69026b9f34d272c63dde Mon Sep 17 00:00:00 2001 From: Jacques Distler Date: Sun, 27 Dec 2009 00:55:48 -0600 Subject: [PATCH] Version 0.18 --- CHANGELOG | 29 +++++++++++++++++++++++ app/controllers/application_controller.rb | 4 ++-- 2 files changed, 31 insertions(+), 2 deletions(-) mode change 100755 => 100644 CHANGELOG diff --git a/CHANGELOG b/CHANGELOG old mode 100755 new mode 100644 index a9b1c139..d11aaa77 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,35 @@ N.B.: You *must* run after installing the new software, to enjoy the benefits of this new version. +------------------------------------------------------------------------------ +* 0.18 + +New Features: + +* Syntax colouring: 'ansic', 'javascript', 'sqlite', 'yaml' and 'css' modes, + in addition to the existing 'html', 'xml', and 'ruby' modes, +* Source view [suggested by Andrew Stacey] +* Auto-resizing Textareas scale to fit viewing area. +* Instiki upgraded to Rails 2.3.5 and Rack 1.1. +* Now runs on Ruby 1.9. (If you're a Passenger user, you may need to upgrade to Passenger + 2.2.8, which works around some bugs in Ruby 1.9.1.) +* Upgraded for itex2MML 1.3.19 (which works under Ruby 1.9, and has several new feautures, + relative to 1.3.15). + +Bugs Fixed: + +* Fixed a CSS bug, which screwed up printing (unless you used the "Print" view). +* Fixed a well-formedness bug in the page-name truncation algorithm [reported by Toby Bartels] +* Fixed a cache-sweeping bug [reported by Toby Bartels] +* Better accessibility. +* Improved log rotation under Passenger. +* Omit a (seemingly superfluous) javascript hack which causes Gecko-based browsers to request + /my_wiki/s5/null + when they load an s5 slideshow. +* Upgraded vendored sqlite3-ruby and rubyzip +* Move files when renaming a web (so that links to uploaded files don't break). +* Many Ruby 1.9 fixes, including removing the html5lib Sanitizer. + ------------------------------------------------------------------------------ * 0.17.3 diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 9576a834..45bf6908 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -265,8 +265,8 @@ end module Instiki module VERSION #:nodoc: MAJOR = 0 - MINOR = 17 - TINY = 3 + MINOR = 18 + TINY = 0 SUFFIX = '(MML+)' PRERELEASE = false if PRERELEASE