• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Ruby GTK3移行後のメインリポジトリ


Commit MetaInfo

Revisiónc02ac652953ddc5cd2b2bd0b98be040e7c1a79ab (tree)
Tiempo2017-08-12 21:54:59
AutorShyouzou Sugitani <shy@user...>
CommiterShyouzou Sugitani

Log Message

Prepare for Release of 5.0.4

Cambiar Resumen

Diferencia incremental

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,5 @@
11 Sat August 12 2017 Shyouzou Sugitani <shy@users.osdn.me>
2+ * バージョン5.0.4リリース.
23 * Ruby-GNOME2 3.1.2対応.
34
45 Mon June 26 2017 Shyouzou Sugitani <shy@users.osdn.me>
--- a/README
+++ b/README
@@ -27,21 +27,21 @@ UNIX系OS対応デスクトップアクセサリninixに拡張機能を追加し
2727
2828 - Ruby/GTK3 (http://ruby-gnome2.osdn.jp/)
2929 Gtk+3をRubyから利用するための拡張ライブラリです。
30- バージョン 3.1.0 での動作を確認しています。
30+ バージョン 3.1.8 での動作を確認しています。
3131
3232 - GTK+ (http://www.gtk.org/)
3333 クロスプラットフォームの GUI ライブラリです。
34- バージョン 3.22.11 での動作を確認しています。(3.22以上が必須です。)
34+ バージョン 3.22.18 での動作を確認しています。(3.22以上が必須です。)
3535 下記GStreamerを使用する場合はRuby/GStreamerもインストールが必要です。
3636
3737 - GStreamer (http://gstreamer.freedesktop.org/)
3838 このソフトウェアはninix-ayaを動作させるのに必須ではありません。
3939 音声ファイルの再生に使用しています。
40- バージョン 1.10.4 での動作を確認しています。
40+ バージョン 1.12.2 での動作を確認しています。
4141
4242 - Rubyzip(https://github.com/rubyzip/rubyzip)
4343 Rubyからzipファイルを読み書きするためのモジュールです。
44- バージョン 1.2.0 での動作を確認しています。
44+ バージョン 1.2.1 での動作を確認しています。
4545
4646 - Ruby gettext(http://ruby-gettext.github.io/)
4747 Rubyのソフトをローカライズするためのパッケージです。
--- a/lib/ninix/balloon.rb
+++ b/lib/ninix/balloon.rb
@@ -571,7 +571,7 @@ module Balloon
571571 @font_desc.set_size(pango_size)
572572 @__font_name = font_name
573573 @layout.set_font_description(@font_desc)
574- @layout.set_wrap(Pango::WRAP_CHAR) # XXX
574+ @layout.set_wrap(Pango::WrapMode::CHAR) # XXX
575575 # font for sstp message
576576 if @side.zero?
577577 @sstp_font_desc = Pango::FontDescription.new(font_name)
@@ -584,7 +584,7 @@ module Balloon
584584 end
585585 @sstp_font_desc.set_size(pango_size)
586586 @sstp_layout.set_font_description(@sstp_font_desc)
587- @sstp_layout.set_wrap(Pango::WRAP_CHAR)
587+ @sstp_layout.set_wrap(Pango::WrapMode::CHAR)
588588 end
589589 unless @balloon_id.nil?
590590 reset_message_regions()
--- a/lib/ninix/dll/bln.rb
+++ b/lib/ninix/dll/bln.rb
@@ -346,9 +346,9 @@ module Bln
346346 @font_desc = Pango::FontDescription.new
347347 @font_desc.set_family('Sans')
348348 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)
350350 end
351- @layout.set_wrap(Pango::WRAP_CHAR)
351+ @layout.set_wrap(Pango::WrapMode::CHAR)
352352 set_layout()
353353 end
354354 if data.include?('slide.vx')
--- a/lib/ninix/dll/hanayu.rb
+++ b/lib/ninix/dll/hanayu.rb
@@ -355,7 +355,7 @@ module Hanayu
355355 default_gravity = context.base_gravity # XXX
356356 context.base_gravity = Pango::Gravity::EAST # Vertical Text
357357 layout.set_text(@title)
358- layout.set_wrap(Pango::WRAP_WORD)
358+ layout.set_wrap(Pango::WrapMode::WORD)
359359 tw, th = layout.pixel_size
360360 cr.move_to(58, w - 20 - th)
361361 cr.show_pango_layout(layout)
--- a/lib/ninix/surface.rb
+++ b/lib/ninix/surface.rb
@@ -1253,7 +1253,7 @@ module Surface
12531253 font_desc.set_size(8 * Pango::SCALE)
12541254 layout = cr.create_pango_layout
12551255 layout.set_font_description(font_desc)
1256- layout.set_wrap(Pango::WRAP_WORD_CHAR) # XXX
1256+ layout.set_wrap(Pango::WrapMode::WORD_CHAR) # XXX
12571257 layout.set_text(part)
12581258 cr.show_pango_layout(layout)
12591259 end
--- a/lib/ninix/version.rb
+++ b/lib/ninix/version.rb
@@ -18,7 +18,7 @@ module Version
1818 bindtextdomain("ninix-aya")
1919
2020 def self.NUMBER
21- '5.0.3'
21+ '5.0.4'
2222 end
2323
2424 def self.CODENAME