Ruby GTK3移行後のメインリポジトリ
Revisión | c02ac652953ddc5cd2b2bd0b98be040e7c1a79ab (tree) |
---|---|
Tiempo | 2017-08-12 21:54:59 |
Autor | Shyouzou Sugitani <shy@user...> |
Commiter | Shyouzou Sugitani |
Prepare for Release of 5.0.4
@@ -1,4 +1,5 @@ | ||
1 | 1 | Sat August 12 2017 Shyouzou Sugitani <shy@users.osdn.me> |
2 | + * バージョン5.0.4リリース. | |
2 | 3 | * Ruby-GNOME2 3.1.2対応. |
3 | 4 | |
4 | 5 | Mon June 26 2017 Shyouzou Sugitani <shy@users.osdn.me> |
@@ -27,21 +27,21 @@ UNIX系OS対応デスクトップアクセサリninixに拡張機能を追加し | ||
27 | 27 | |
28 | 28 | - Ruby/GTK3 (http://ruby-gnome2.osdn.jp/) |
29 | 29 | Gtk+3をRubyから利用するための拡張ライブラリです。 |
30 | - バージョン 3.1.0 での動作を確認しています。 | |
30 | + バージョン 3.1.8 での動作を確認しています。 | |
31 | 31 | |
32 | 32 | - GTK+ (http://www.gtk.org/) |
33 | 33 | クロスプラットフォームの GUI ライブラリです。 |
34 | - バージョン 3.22.11 での動作を確認しています。(3.22以上が必須です。) | |
34 | + バージョン 3.22.18 での動作を確認しています。(3.22以上が必須です。) | |
35 | 35 | 下記GStreamerを使用する場合はRuby/GStreamerもインストールが必要です。 |
36 | 36 | |
37 | 37 | - GStreamer (http://gstreamer.freedesktop.org/) |
38 | 38 | このソフトウェアはninix-ayaを動作させるのに必須ではありません。 |
39 | 39 | 音声ファイルの再生に使用しています。 |
40 | - バージョン 1.10.4 での動作を確認しています。 | |
40 | + バージョン 1.12.2 での動作を確認しています。 | |
41 | 41 | |
42 | 42 | - Rubyzip(https://github.com/rubyzip/rubyzip) |
43 | 43 | Rubyからzipファイルを読み書きするためのモジュールです。 |
44 | - バージョン 1.2.0 での動作を確認しています。 | |
44 | + バージョン 1.2.1 での動作を確認しています。 | |
45 | 45 | |
46 | 46 | - Ruby gettext(http://ruby-gettext.github.io/) |
47 | 47 | Rubyのソフトをローカライズするためのパッケージです。 |
@@ -571,7 +571,7 @@ module Balloon | ||
571 | 571 | @font_desc.set_size(pango_size) |
572 | 572 | @__font_name = font_name |
573 | 573 | @layout.set_font_description(@font_desc) |
574 | - @layout.set_wrap(Pango::WRAP_CHAR) # XXX | |
574 | + @layout.set_wrap(Pango::WrapMode::CHAR) # XXX | |
575 | 575 | # font for sstp message |
576 | 576 | if @side.zero? |
577 | 577 | @sstp_font_desc = Pango::FontDescription.new(font_name) |
@@ -584,7 +584,7 @@ module Balloon | ||
584 | 584 | end |
585 | 585 | @sstp_font_desc.set_size(pango_size) |
586 | 586 | @sstp_layout.set_font_description(@sstp_font_desc) |
587 | - @sstp_layout.set_wrap(Pango::WRAP_CHAR) | |
587 | + @sstp_layout.set_wrap(Pango::WrapMode::CHAR) | |
588 | 588 | end |
589 | 589 | unless @balloon_id.nil? |
590 | 590 | reset_message_regions() |
@@ -346,9 +346,9 @@ module Bln | ||
346 | 346 | @font_desc = Pango::FontDescription.new |
347 | 347 | @font_desc.set_family('Sans') |
348 | 348 | if data.include?('font.bold') and data['font.bold'] == 'on' |
349 | - @font_desc.set_weight(Pango::WEIGHT_BOLD) | |
349 | + @font_desc.set_weight(Pango::Weight::BOLD) | |
350 | 350 | end |
351 | - @layout.set_wrap(Pango::WRAP_CHAR) | |
351 | + @layout.set_wrap(Pango::WrapMode::CHAR) | |
352 | 352 | set_layout() |
353 | 353 | end |
354 | 354 | if data.include?('slide.vx') |
@@ -355,7 +355,7 @@ module Hanayu | ||
355 | 355 | default_gravity = context.base_gravity # XXX |
356 | 356 | context.base_gravity = Pango::Gravity::EAST # Vertical Text |
357 | 357 | layout.set_text(@title) |
358 | - layout.set_wrap(Pango::WRAP_WORD) | |
358 | + layout.set_wrap(Pango::WrapMode::WORD) | |
359 | 359 | tw, th = layout.pixel_size |
360 | 360 | cr.move_to(58, w - 20 - th) |
361 | 361 | cr.show_pango_layout(layout) |
@@ -1253,7 +1253,7 @@ module Surface | ||
1253 | 1253 | font_desc.set_size(8 * Pango::SCALE) |
1254 | 1254 | layout = cr.create_pango_layout |
1255 | 1255 | layout.set_font_description(font_desc) |
1256 | - layout.set_wrap(Pango::WRAP_WORD_CHAR) # XXX | |
1256 | + layout.set_wrap(Pango::WrapMode::WORD_CHAR) # XXX | |
1257 | 1257 | layout.set_text(part) |
1258 | 1258 | cr.show_pango_layout(layout) |
1259 | 1259 | end |
@@ -18,7 +18,7 @@ module Version | ||
18 | 18 | bindtextdomain("ninix-aya") |
19 | 19 | |
20 | 20 | def self.NUMBER |
21 | - '5.0.3' | |
21 | + '5.0.4' | |
22 | 22 | end |
23 | 23 | |
24 | 24 | def self.CODENAME |