Update rabbit to 0.6.3.
== Changes 0.6.3 from 0.6.2: 2009-12-16 === Improvements * [#180] Supported inline markup in DL with Wiki format. [kdmsnr] * Added butler rabbit to the standard theme. * Changed to use scaled images by default even when printing mode. * Supported pixbuf rendering with alpha channel. (when cairo is used as rendering engine) ==== Theme * Added: * lightning-monochrome: Takahashi method slide + monochrome normal slide * Changed: * default-block-quote: Added @block_quote_image_background_alpha parameter that specifies alpha channel of background images. * default-preformatted: Made auto text size adjustment optional. It is customized by @preformatted_keep_in_size parameter. * clear-blue: Displayed title in the left bottom by default. It can be disabled by the following theme: include_theme("clear-blue") @slide_footer_info_left_text = "" * Supported nest of "itemize > enum" and "itemize > itemize > enum". ==== Experimental ((*This maybe changed in the feature.*)) * Supported tag: syntax: (('tag:name:content')) or (('tag:name'))content e.g.: slide.rab: (('tag:center'))Hi, look it! theme.rb: match("**", CustomTag) do |tags| tags.each do |tag| case tag.name when "center" tag.parent.horizontal_centering = true end end end output(before): +-------------------+ | Hi, look it! | +-------------------+ output(after): +-------------------+ | Hi, look it! | +-------------------+ === Fixes * Fixed a problem that fullscreen doesn't work on Ruby 1.9 [Masaki Suketa] * [#179] Fixed a problem that Rabbit sometimes crashes with mouse clicks. [kdmsnr] * newline-in-slides theme: Disabled newline substitution in preformatted text. * Fixed a problem that cursor isn't displayed after unfullscreen. === Thanks * Masaki Suketa * kdmsnr
This commit is contained in:
parent
ea14e5293e
commit
78759cd864
3 changed files with 10 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.15 2009/10/12 02:28:12 obache Exp $
|
||||
# $NetBSD: Makefile,v 1.16 2009/12/17 12:03:59 obache Exp $
|
||||
#
|
||||
|
||||
DISTNAME= rabbit-0.6.2
|
||||
DISTNAME= rabbit-0.6.3
|
||||
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= graphics ruby
|
||||
MASTER_SITES= http://www.cozmixng.org/~kou/download/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.11 2009/06/14 17:59:27 joerg Exp $
|
||||
@comment $NetBSD: PLIST,v 1.12 2009/12/17 12:03:59 obache Exp $
|
||||
bin/rabbirc
|
||||
bin/rabbit
|
||||
bin/rabbit-command
|
||||
|
@ -272,6 +272,8 @@ ${RUBY_VENDORLIB}/rabbit/theme/image/image.rb
|
|||
${RUBY_VENDORLIB}/rabbit/theme/image/property.rb
|
||||
${RUBY_VENDORLIB}/rabbit/theme/lightning-clear-blue/lightning-clear-blue.rb
|
||||
${RUBY_VENDORLIB}/rabbit/theme/lightning-clear-blue/property.rb
|
||||
${RUBY_VENDORLIB}/rabbit/theme/lightning-monochrome/lightning-monochrome.rb
|
||||
${RUBY_VENDORLIB}/rabbit/theme/lightning-monochrome/property.rb
|
||||
${RUBY_VENDORLIB}/rabbit/theme/lightning-rabbit/lightning-rabbit.rb
|
||||
${RUBY_VENDORLIB}/rabbit/theme/lightning-rabbit/property.rb
|
||||
${RUBY_VENDORLIB}/rabbit/theme/lightning-simple/lightning-simple.rb
|
||||
|
@ -394,6 +396,7 @@ share/rabbit/image/rabbit-images/lavie-icon.png
|
|||
share/rabbit/image/rabbit-images/lavie-with-logo.png
|
||||
share/rabbit/image/rabbit-images/lavie.png
|
||||
share/rabbit/image/rabbit-images/mini-alice.png
|
||||
share/rabbit/image/rabbit-images/mini-butler-rabbit.png
|
||||
share/rabbit/image/rabbit-images/mini-horizontal-bar.png
|
||||
share/rabbit/image/rabbit-images/mini-kame-taro.png
|
||||
share/rabbit/image/rabbit-images/mini-tanu-kitaro.png
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
$NetBSD: distinfo,v 1.13 2009/10/12 02:28:12 obache Exp $
|
||||
$NetBSD: distinfo,v 1.14 2009/12/17 12:03:59 obache Exp $
|
||||
|
||||
SHA1 (rabbit-0.6.2.tar.gz) = 879674744d35ee8614d04793efbf9b7c5f7d1a91
|
||||
RMD160 (rabbit-0.6.2.tar.gz) = 7b778262b98846596be13343485f4da4753f8850
|
||||
Size (rabbit-0.6.2.tar.gz) = 5865321 bytes
|
||||
SHA1 (rabbit-0.6.3.tar.gz) = bd97562a3dcab5fc7ed749de7f897e1ced414aa1
|
||||
RMD160 (rabbit-0.6.3.tar.gz) = 8edc4a772d3ed17dcf00083a662fdb46e3f6b364
|
||||
Size (rabbit-0.6.3.tar.gz) = 5891706 bytes
|
||||
SHA1 (patch-ab) = 848ccd627644dde7e36d27032ab318af729dc3ce
|
||||
SHA1 (patch-ac) = 8e9e5a831f54e4a350a422d3c0027aa7dfa85d35
|
||||
SHA1 (patch-ad) = ee455a7c34587fa68fc8152d6ad0a6f48b608222
|
||||
|
|
Loading…
Reference in a new issue