diff options
-rw-r--r-- | Changes.textile | 52 |
1 files changed, 48 insertions, 4 deletions
diff --git a/Changes.textile b/Changes.textile index e97fb27..a5df277 100644 --- a/Changes.textile +++ b/Changes.textile @@ -4,10 +4,10 @@ p=. _This files lists all changes in the CodeRay library since the 0.8.4 release h2. Changes in 1.0 -h3. @Encoders::HTML@ +* *IMPROVED* documentation in general; additions, corrections and cleanups +* *FIXED* some image links in the documentation +* *IMPROVED* Ruby 1.9 support (_._ not in @$LOAD_PATH@) -* @#token@'s second parameter is no longer optional. - h3. @Encoders::Terminal@ * *RENAMED* from @Encoders::Term@, added @:term@ alias @@ -16,10 +16,53 @@ h3. @Encoders::Terminal@ h3. @Scanners::Plaintext@ -* *IMPROVED* Just returns the string without scanning. +* *IMPROVED* Just returns the string without scanning (faster). This is much faster than scanning until @/\z/@ in Ruby 1.8. +h3. @Styles::Alpha@ + +* *NEW* A style that uses transparent HSLA colors as defined in CSS 3. + +h3. Internal API changes + +* *FIXED* @Encoders::HTML#token@'s second parameter is no longer optional. + See "#119":http://redmine.rubychan.de/issues/199. + + +h2. Changes in 0.9.2 + +* *FIXED* Use @$CODERAY_DEBUG@ for debugging instead of @$DEBUG@. [Trans] + ("#192":http://redmine.rubychan.de/issues/192) +* *REMOVED* @Term::Ansicolor@ was bundled under _lib/_, but not used. [Flameeyes] + ("#195":http://redmine.rubychan.de/issues/195) +* *NEW* Basic tests and a _Rakefile_ are now included in the Gem. [Flameeyes] + +h3. @Encoders::Term@ + +* *FIXED* strings are closed correctly + ("#138":http://redmine.rubychan.de/issues/138) +* *FIXED* several token kinds had no associated color + ("#139":http://redmine.rubychan.de/issues/139) +* *NEW* alias @terminal@ + + *NOTE:* This encoder will be renamed to @Encoders::Terminal@ in the next release. + +h3. @Scanners::Debug@ + +* *FIXED* Don't close tokens that are not open. Send @:error@ token instead. + +h3. @Scanners::Groovy@ + +* *FIXED* token kind of closing brackets is @:operator@ instead of @nil@ + ("#148":http://redmine.rubychan.de/issues/148) + +h3. @Scanners::YAML@ + +* *FIXED* doesn't send debug tokens when @$DEBUG@ is true [Trans] + ("#149":http://redmine.rubychan.de/issues/149) + + h2. Changes in 0.9.1 h3. Token classes @@ -243,3 +286,4 @@ h3. Cleanups * documentation, code + |