pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/mikutter



Module Name:    pkgsrc
Committed By:   tsutsui
Date:           Fri Feb 21 02:53:19 UTC 2020

Modified Files:
        pkgsrc/net/mikutter: DESCR MESSAGE Makefile PLIST distinfo
        pkgsrc/net/mikutter/files: mikutter.sh.in
        pkgsrc/net/mikutter/patches: patch-mikutter.rb

Log Message:
miutter: update to 4.0.4.

pkgsrc changes:

* update DESCR and MESSAGE to reflect twitter plugin removal etc.
* sort DEPENDS by package (i.e. gem) names without categories for
  maintainability
* adjust EXTRACT_DIR per upstream tarball changes
  (probably this will soon be changed again on upstream)
* set DISABLE_BUNDLER_SETUP=1 to disable bundler's auto download on startup

Upstream changes:

mikutter 4.0.4

* crash on adding Mastdon accounts
 * thanks Ahiru Iegamo
* error on Mastodon User Profile tab
 * thanks Ahiru Iegamo
* delayer 1.0.2

mikutter 4.0.3

* support Ruby 2.7 changes
* clear image loading window by bg color after loading images and
  before drawing Pixbuf
 * thanks Shibafu Midorino

mikutter 4.0.2

* support thumbnails of YouTube and Niconico-video
 * thanks Shibafu Midorino
* appimage: fix crash/freeze
 * thanks Yuto Tokunaga
* adjust selected region including custom emoji cases on strings copy
 * thanks Shibafu Midorino
* remove irb from Gemfile

mikutter 4.0.1

* happy new year
* fix appimage
 * thanks hinaloe k
* remove unnecessary code executed per MiraclePainter updates
 * thanks Shibafu Midorino

mikutter 4.0

Major version up after five and half years after prevous update,
for 10 years aniversary of mikutter, with some incompatible changes.

* make Twitter plugins third party plugins
 * Twitter plugins are no longer included
 * users can still use Twitter on mikutter by installing Twitter plugins
   https://github.com/mikutter/twitter_bootstrap
* remove Service module
 * Abstraction by Service was not sufficient and it has been replaced
   by World plugin
* deprecate boot events
 * initialization should be implemented in plugin context or
   Delayer.new {...} should be used if it need to be executed after
   load is conplete
* remove miquire
 * miquire was introduce to avoid (no-longer-recallable) problems
   on ruby 1.8 and to switch loaded files by command line options,
   but both of them no longer exist
* use own implementation to handle event loop
 * mikutter used Gtk mailloop and Delayer queue but it caused FiberError
   exceptions and the FiberError was hard to fix per specification
* make it possible to change, preserve and restore order of general
  Model viewer tabs
 * orders of tabs in Mastdon user prifile tabs are recoreded and
   preserved on the next open even on other similar tabs
* support Ruby 2.5 and later (drop support for 2.4)
 * ruby 2.4 will be EOLed on end of March 2020
   https://www.ruby-lang.org/ja/news/2019/10/02/ruby-2-4-9-released/
* drop bundling gems in release tar ball
 * nowadays bundler is common enough and plugins with Gemfile made
   things more complicated
* all other things forgotten to be written
 * all things I missed


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/mikutter/DESCR
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/mikutter/MESSAGE
cvs rdiff -u -r1.189 -r1.190 pkgsrc/net/mikutter/Makefile
cvs rdiff -u -r1.48 -r1.49 pkgsrc/net/mikutter/PLIST
cvs rdiff -u -r1.170 -r1.171 pkgsrc/net/mikutter/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/mikutter/files/mikutter.sh.in
cvs rdiff -u -r1.7 -r1.8 pkgsrc/net/mikutter/patches/patch-mikutter.rb

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/mikutter/DESCR
diff -u pkgsrc/net/mikutter/DESCR:1.3 pkgsrc/net/mikutter/DESCR:1.4
--- pkgsrc/net/mikutter/DESCR:1.3       Wed May 15 11:24:14 2013
+++ pkgsrc/net/mikutter/DESCR   Fri Feb 21 02:53:19 2020
@@ -1,2 +1,2 @@
-Mikutter is a Twitter client aim for endsville Twitter client For all of
-Miku-aholics and Twitter-holics.
+Mikutter is a Mastodon client aim for endsville Mastodon client For all of
+Miku-aholics and microblog-holics.

Index: pkgsrc/net/mikutter/MESSAGE
diff -u pkgsrc/net/mikutter/MESSAGE:1.1 pkgsrc/net/mikutter/MESSAGE:1.2
--- pkgsrc/net/mikutter/MESSAGE:1.1     Sun May 27 05:17:40 2018
+++ pkgsrc/net/mikutter/MESSAGE Fri Feb 21 02:53:19 2020
@@ -1,15 +1,10 @@
 ===========================================================================
-$NetBSD: MESSAGE,v 1.1 2018/05/27 05:17:40 tsutsui Exp $
+$NetBSD: MESSAGE,v 1.2 2020/02/21 02:53:19 tsutsui Exp $
 
-The Twitter API keys (CK/CS) for mikutter has been suspended since
-May 4th 2018, so currently mikutter cannot connect to Twitter APIs
-and you cannot use mikutter as a Twitter client with the default settings.
+After mikutter 4.0.0, twitter plugins are no longer included and
+only Mastodon plugins are included by default.
 
-While mikutter is not only a Twitter client but can also be used as
-a client for misc SNS services like Mastodon etc., you can still use
-Twitter via mikutter by getting your own Twitter CK/CS and using the
-"twitter_api_keys" plugin.
-
-See @Akkiesoft's document "How to make mikutter work again" for details:
- https://github.com/Akkiesoft/how-to-make-mikutter-work-again
+To use mikutter as a Twitter client as before, you have to install
+Twitter plugins for mikutter using pkgsrc/net/mikutter-plugins-twitter
+package.
 ===========================================================================

Index: pkgsrc/net/mikutter/Makefile
diff -u pkgsrc/net/mikutter/Makefile:1.189 pkgsrc/net/mikutter/Makefile:1.190
--- pkgsrc/net/mikutter/Makefile:1.189  Sun Dec 15 15:38:58 2019
+++ pkgsrc/net/mikutter/Makefile        Fri Feb 21 02:53:19 2020
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.189 2019/12/15 15:38:58 taca Exp $
+# $NetBSD: Makefile,v 1.190 2020/02/21 02:53:19 tsutsui Exp $
 #
 
-DISTNAME=      mikutter.3.9.8
+DISTNAME=      mikutter.4.0.4
 PKGNAME=       ${RUBY_PKGPREFIX}-${DISTNAME:S/./-/}
-PKGREVISION=   1
 CATEGORIES=    net
 MASTER_SITES=  https://mikutter.hachune.net/bin/
 
@@ -14,22 +13,23 @@ LICENSE=    mit AND cc-by-sa-v3.0
 
 .include "../../lang/ruby/rubyversion.mk"
 
-DEPENDS+=      ${RUBY_PKGPREFIX}-pluggaloid>=1.2.0:../../net/ruby-pluggaloid
-DEPENDS+=      ${RUBY_PKGPREFIX}-diva>=1.0.0:../../devel/ruby-diva
-DEPENDS+=      ${RUBY_PKGPREFIX}-gtk2>=3.3.8:../../x11/ruby-gtk2
+DEPENDS+=      ${RUBY_PKGPREFIX}-addressable>=2.7.0:../../net/ruby-addressable
+DEPENDS+=      ${RUBY_PKGPREFIX}-delayer>=1.0.2:../../devel/ruby-delayer
+DEPENDS+=      ${RUBY_PKGPREFIX}-delayer-deferred>=2.1.3:../../devel/ruby-delayer-deferred
+DEPENDS+=      ${RUBY_PKGPREFIX}-diva>=1.0.2:../../devel/ruby-diva
 DEPENDS+=      ${RUBY_PKGPREFIX}-gettext>=3.2.9:../../devel/ruby-gettext
+DEPENDS+=      ${RUBY_PKGPREFIX}-gtk2>=3.3.8:../../x11/ruby-gtk2
+DEPENDS+=      ${RUBY_PKGPREFIX}-httpclient-[0-9]*:../../www/ruby-httpclient
+DEPENDS+=      ${RUBY_PKGPREFIX}-memoist>=0.16.2:../../devel/ruby-memoist
+DEPENDS+=      ${RUBY_PKGPREFIX}-moneta-[0-9]*:../../databases/ruby-moneta
+DEPENDS+=      ${RUBY_PKGPREFIX}-nokogiri-[0-9]*:../../textproc/ruby-nokogiri
 DEPENDS+=      ${RUBY_PKGPREFIX}-oauth>=0.5.4:../../security/ruby-oauth
-DEPENDS+=      ${RUBY_PKGPREFIX}-addressable>=2.6.0:../../net/ruby-addressable
-DEPENDS+=      ${RUBY_PKGPREFIX}-memoist>=0.16.0:../../devel/ruby-memoist
+DEPENDS+=      ${RUBY_PKGPREFIX}-pluggaloid>=1.2.0:../../net/ruby-pluggaloid
 DEPENDS+=      ${RUBY_PKGPREFIX}-typed-array>=0.1.2:../../misc/ruby-typed-array
-DEPENDS+=      ${RUBY_PKGPREFIX}-delayer>=1.0.0:../../devel/ruby-delayer
-DEPENDS+=      ${RUBY_PKGPREFIX}-delayer-deferred>=2.1.0:../../devel/ruby-delayer-deferred
-DEPENDS+=      ${RUBY_PKGPREFIX}-nokogiri-[0-9]*:../../textproc/ruby-nokogiri
-DEPENDS+=      ${RUBY_PKGPREFIX}-httpclient-[0-9]*:../../www/ruby-httpclient
-DEPENDS+=      ${RUBY_PKGPREFIX}-moneta>=0.7:../../databases/ruby-moneta
-DEPENDS+=      ${RUBY_PKGPREFIX}-twitter-text-simpleidn>=3.0.0.0:../../net/ruby-twitter-text-simpleidn
 
-WRKSRC=                ${WRKDIR}/mikutter
+EXTRACT_DIR=   ${WRKDIR}/mikutter
+WRKSRC=                ${EXTRACT_DIR}
+
 USE_LANGUAGES= # none
 USE_TOOLS+=    pax
 

Index: pkgsrc/net/mikutter/PLIST
diff -u pkgsrc/net/mikutter/PLIST:1.48 pkgsrc/net/mikutter/PLIST:1.49
--- pkgsrc/net/mikutter/PLIST:1.48      Sat Jul 20 14:03:42 2019
+++ pkgsrc/net/mikutter/PLIST   Fri Feb 21 02:53:19 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.48 2019/07/20 14:03:42 tsutsui Exp $
+@comment $NetBSD: PLIST,v 1.49 2020/02/21 02:53:19 tsutsui Exp $
 bin/mikutter
 share/applications/mikutter.desktop
 share/doc/mikutter/README
@@ -8,7 +8,6 @@ share/mikutter/core/boot/delayer.rb
 share/mikutter/core/boot/load_plugin.rb
 share/mikutter/core/boot/mainloop.rb
 share/mikutter/core/boot/option.rb
-share/mikutter/core/boot/shell/account.rb
 share/mikutter/core/boot/shell/generate.rb
 share/mikutter/core/boot/shell/makepot.rb
 share/mikutter/core/boot/shell/plugin_depends.rb
@@ -86,13 +85,11 @@ share/mikutter/core/mui/gtk_hierarchycal
 share/mikutter/core/mui/gtk_inneruserlist.rb
 share/mikutter/core/mui/gtk_intelligent_textview.rb
 share/mikutter/core/mui/gtk_keyconfig.rb
-share/mikutter/core/mui/gtk_listlist.rb
 share/mikutter/core/mui/gtk_message_picker.rb
 share/mikutter/core/mui/gtk_mtk.rb
 share/mikutter/core/mui/gtk_photo_pixbuf.rb
 share/mikutter/core/mui/gtk_postbox.rb
 share/mikutter/core/mui/gtk_pseudo_signal_handler.rb
-share/mikutter/core/mui/gtk_retriever_header_widget.rb
 share/mikutter/core/mui/gtk_selectbox.rb
 share/mikutter/core/mui/gtk_timeline_utils.rb
 share/mikutter/core/mui/gtk_tree_view_pretty_scroll.rb
@@ -100,760 +97,6 @@ share/mikutter/core/mui/gtk_userlist.rb
 share/mikutter/core/mui/gtk_web_image_loader.rb
 share/mikutter/core/mui/gtk_webicon.rb
 share/mikutter/core/plugin.rb
-share/mikutter/core/plugin/ChangeLog
-share/mikutter/core/plugin/achievement/.mikutter.yml
-share/mikutter/core/plugin/achievement/achievement.rb
-share/mikutter/core/plugin/achievement/po/ar/achievement.po
-share/mikutter/core/plugin/achievement/po/de/achievement.po
-share/mikutter/core/plugin/achievement/po/el/achievement.po
-share/mikutter/core/plugin/achievement/po/en/achievement.po
-share/mikutter/core/plugin/achievement/po/eo/achievement.po
-share/mikutter/core/plugin/achievement/po/es/achievement.po
-share/mikutter/core/plugin/achievement/po/fr/achievement.po
-share/mikutter/core/plugin/achievement/po/ja_KS/achievement.po
-share/mikutter/core/plugin/achievement/po/nl_NL/achievement.po
-share/mikutter/core/plugin/achievement/po/pt_PT/achievement.po
-share/mikutter/core/plugin/achievement/po/ro_RO/achievement.po
-share/mikutter/core/plugin/achievement/po/ru/achievement.po
-share/mikutter/core/plugin/achievement/po/sr/achievement.po
-share/mikutter/core/plugin/achievement/po/vi/achievement.po
-share/mikutter/core/plugin/achievement/po/zh/achievement.po
-share/mikutter/core/plugin/achievement/po/zh_CN/achievement.po
-share/mikutter/core/plugin/achievement/po/zh_TW/achievement.po
-share/mikutter/core/plugin/activity/.mikutter.yml
-share/mikutter/core/plugin/activity/activity.rb
-share/mikutter/core/plugin/activity/model/activity.rb
-share/mikutter/core/plugin/activity/model_selector.rb
-share/mikutter/core/plugin/activity/po/ar/activity.po
-share/mikutter/core/plugin/activity/po/de/activity.po
-share/mikutter/core/plugin/activity/po/el/activity.po
-share/mikutter/core/plugin/activity/po/en/activity.po
-share/mikutter/core/plugin/activity/po/eo/activity.po
-share/mikutter/core/plugin/activity/po/es/activity.po
-share/mikutter/core/plugin/activity/po/fr/activity.po
-share/mikutter/core/plugin/activity/po/ja_KS/activity.po
-share/mikutter/core/plugin/activity/po/nl_NL/activity.po
-share/mikutter/core/plugin/activity/po/pt_PT/activity.po
-share/mikutter/core/plugin/activity/po/ro_RO/activity.po
-share/mikutter/core/plugin/activity/po/ru/activity.po
-share/mikutter/core/plugin/activity/po/sr/activity.po
-share/mikutter/core/plugin/activity/po/vi/activity.po
-share/mikutter/core/plugin/activity/po/zh/activity.po
-share/mikutter/core/plugin/activity/po/zh_CN/activity.po
-share/mikutter/core/plugin/activity/po/zh_TW/activity.po
-share/mikutter/core/plugin/alsa/.mikutter.yml
-share/mikutter/core/plugin/alsa/alsa.rb
-share/mikutter/core/plugin/api_request_file_cache/.mikutter.yml
-share/mikutter/core/plugin/api_request_file_cache/api_request_file_cache.rb
-share/mikutter/core/plugin/aspectframe/.mikutter.yml
-share/mikutter/core/plugin/aspectframe/aspectframe.rb
-share/mikutter/core/plugin/bitly/.mikutter.yml
-share/mikutter/core/plugin/bitly/bitly.rb
-share/mikutter/core/plugin/bugreport/.mikutter.yml
-share/mikutter/core/plugin/bugreport/bugreport.rb
-share/mikutter/core/plugin/bugreport/po/ar/bugreport.po
-share/mikutter/core/plugin/bugreport/po/de/bugreport.po
-share/mikutter/core/plugin/bugreport/po/el/bugreport.po
-share/mikutter/core/plugin/bugreport/po/en/bugreport.po
-share/mikutter/core/plugin/bugreport/po/eo/bugreport.po
-share/mikutter/core/plugin/bugreport/po/es/bugreport.po
-share/mikutter/core/plugin/bugreport/po/fr/bugreport.po
-share/mikutter/core/plugin/bugreport/po/ja_KS/bugreport.po
-share/mikutter/core/plugin/bugreport/po/nl_NL/bugreport.po
-share/mikutter/core/plugin/bugreport/po/pt_PT/bugreport.po
-share/mikutter/core/plugin/bugreport/po/ro_RO/bugreport.po
-share/mikutter/core/plugin/bugreport/po/ru/bugreport.po
-share/mikutter/core/plugin/bugreport/po/sr/bugreport.po
-share/mikutter/core/plugin/bugreport/po/vi/bugreport.po
-share/mikutter/core/plugin/bugreport/po/zh/bugreport.po
-share/mikutter/core/plugin/bugreport/po/zh_CN/bugreport.po
-share/mikutter/core/plugin/bugreport/po/zh_TW/bugreport.po
-share/mikutter/core/plugin/change_account/.mikutter.yml
-share/mikutter/core/plugin/change_account/account_control.rb
-share/mikutter/core/plugin/change_account/change_account.rb
-share/mikutter/core/plugin/change_account/po/ar/change_account.po
-share/mikutter/core/plugin/change_account/po/de/change_account.po
-share/mikutter/core/plugin/change_account/po/el/change_account.po
-share/mikutter/core/plugin/change_account/po/en/change_account.po
-share/mikutter/core/plugin/change_account/po/eo/change_account.po
-share/mikutter/core/plugin/change_account/po/es/change_account.po
-share/mikutter/core/plugin/change_account/po/fr/change_account.po
-share/mikutter/core/plugin/change_account/po/ja_KS/change_account.po
-share/mikutter/core/plugin/change_account/po/nl_NL/change_account.po
-share/mikutter/core/plugin/change_account/po/pt_PT/change_account.po
-share/mikutter/core/plugin/change_account/po/ro_RO/change_account.po
-share/mikutter/core/plugin/change_account/po/ru/change_account.po
-share/mikutter/core/plugin/change_account/po/sr/change_account.po
-share/mikutter/core/plugin/change_account/po/vi/change_account.po
-share/mikutter/core/plugin/change_account/po/zh/change_account.po
-share/mikutter/core/plugin/change_account/po/zh_CN/change_account.po
-share/mikutter/core/plugin/change_account/po/zh_TW/change_account.po
-share/mikutter/core/plugin/change_account/world_generator.rb
-share/mikutter/core/plugin/change_account/world_generator/controller.rb
-share/mikutter/core/plugin/change_account/world_generator/window.rb
-share/mikutter/core/plugin/command/.mikutter.yml
-share/mikutter/core/plugin/command/command.rb
-share/mikutter/core/plugin/command/conditions.rb
-share/mikutter/core/plugin/command/po/ar/command.po
-share/mikutter/core/plugin/command/po/de/command.po
-share/mikutter/core/plugin/command/po/el/command.po
-share/mikutter/core/plugin/command/po/en/command.po
-share/mikutter/core/plugin/command/po/eo/command.po
-share/mikutter/core/plugin/command/po/es/command.po
-share/mikutter/core/plugin/command/po/fr/command.po
-share/mikutter/core/plugin/command/po/ja_KS/command.po
-share/mikutter/core/plugin/command/po/nl_NL/command.po
-share/mikutter/core/plugin/command/po/pt_PT/command.po
-share/mikutter/core/plugin/command/po/ro_RO/command.po
-share/mikutter/core/plugin/command/po/ru/command.po
-share/mikutter/core/plugin/command/po/sr/command.po
-share/mikutter/core/plugin/command/po/vi/command.po
-share/mikutter/core/plugin/command/po/zh/command.po
-share/mikutter/core/plugin/command/po/zh_CN/command.po
-share/mikutter/core/plugin/command/po/zh_TW/command.po
-share/mikutter/core/plugin/console/.mikutter.yml
-share/mikutter/core/plugin/console/console.rb
-share/mikutter/core/plugin/console/console_control.rb
-share/mikutter/core/plugin/console/po/ar/console.po
-share/mikutter/core/plugin/console/po/de/console.po
-share/mikutter/core/plugin/console/po/el/console.po
-share/mikutter/core/plugin/console/po/en/console.po
-share/mikutter/core/plugin/console/po/eo/console.po
-share/mikutter/core/plugin/console/po/es/console.po
-share/mikutter/core/plugin/console/po/fr/console.po
-share/mikutter/core/plugin/console/po/ja_KS/console.po
-share/mikutter/core/plugin/console/po/nl_NL/console.po
-share/mikutter/core/plugin/console/po/pt_PT/console.po
-share/mikutter/core/plugin/console/po/ro_RO/console.po
-share/mikutter/core/plugin/console/po/ru/console.po
-share/mikutter/core/plugin/console/po/sr/console.po
-share/mikutter/core/plugin/console/po/vi/console.po
-share/mikutter/core/plugin/console/po/zh/console.po
-share/mikutter/core/plugin/console/po/zh_CN/console.po
-share/mikutter/core/plugin/console/po/zh_TW/console.po
-share/mikutter/core/plugin/core/.mikutter.yml
-share/mikutter/core/plugin/core/core.rb
-share/mikutter/core/plugin/current_world/.mikutter.yml
-share/mikutter/core/plugin/current_world/current_world.rb
-share/mikutter/core/plugin/current_world/error.rb
-share/mikutter/core/plugin/direct_message/.mikutter.yml
-share/mikutter/core/plugin/direct_message/direct_message.rb
-share/mikutter/core/plugin/direct_message/dmlistview.rb
-share/mikutter/core/plugin/direct_message/po/ar/direct_message.po
-share/mikutter/core/plugin/direct_message/po/de/direct_message.po
-share/mikutter/core/plugin/direct_message/po/el/direct_message.po
-share/mikutter/core/plugin/direct_message/po/en/direct_message.po
-share/mikutter/core/plugin/direct_message/po/eo/direct_message.po
-share/mikutter/core/plugin/direct_message/po/es/direct_message.po
-share/mikutter/core/plugin/direct_message/po/fr/direct_message.po
-share/mikutter/core/plugin/direct_message/po/ja_KS/direct_message.po
-share/mikutter/core/plugin/direct_message/po/nl_NL/direct_message.po
-share/mikutter/core/plugin/direct_message/po/pt_PT/direct_message.po
-share/mikutter/core/plugin/direct_message/po/ro_RO/direct_message.po
-share/mikutter/core/plugin/direct_message/po/ru/direct_message.po
-share/mikutter/core/plugin/direct_message/po/sr/direct_message.po
-share/mikutter/core/plugin/direct_message/po/vi/direct_message.po
-share/mikutter/core/plugin/direct_message/po/zh/direct_message.po
-share/mikutter/core/plugin/direct_message/po/zh_CN/direct_message.po
-share/mikutter/core/plugin/direct_message/po/zh_TW/direct_message.po
-share/mikutter/core/plugin/direct_message/sender.rb
-share/mikutter/core/plugin/direct_message/userlist.rb
-share/mikutter/core/plugin/extract/.mikutter.yml
-share/mikutter/core/plugin/extract/edit_window.rb
-share/mikutter/core/plugin/extract/extract.rb
-share/mikutter/core/plugin/extract/extract_tab_list.rb
-share/mikutter/core/plugin/extract/model/setting.rb
-share/mikutter/core/plugin/extract/option_widget.rb
-share/mikutter/core/plugin/extract/po/ar/extract.po
-share/mikutter/core/plugin/extract/po/de/extract.po
-share/mikutter/core/plugin/extract/po/el/extract.po
-share/mikutter/core/plugin/extract/po/en/extract.po
-share/mikutter/core/plugin/extract/po/eo/extract.po
-share/mikutter/core/plugin/extract/po/es/extract.po
-share/mikutter/core/plugin/extract/po/fr/extract.po
-share/mikutter/core/plugin/extract/po/ja_KS/extract.po
-share/mikutter/core/plugin/extract/po/nl_NL/extract.po
-share/mikutter/core/plugin/extract/po/pt_PT/extract.po
-share/mikutter/core/plugin/extract/po/ro_RO/extract.po
-share/mikutter/core/plugin/extract/po/ru/extract.po
-share/mikutter/core/plugin/extract/po/sr/extract.po
-share/mikutter/core/plugin/extract/po/vi/extract.po
-share/mikutter/core/plugin/extract/po/zh/extract.po
-share/mikutter/core/plugin/extract/po/zh_CN/extract.po
-share/mikutter/core/plugin/extract/po/zh_TW/extract.po
-share/mikutter/core/plugin/file_path/.mikutter.yml
-share/mikutter/core/plugin/file_path/file_path.rb
-share/mikutter/core/plugin/followingcontrol/.mikutter.yml
-share/mikutter/core/plugin/followingcontrol/followingcontrol.rb
-share/mikutter/core/plugin/gtk/.mikutter.yml
-share/mikutter/core/plugin/gtk/Gemfile
-share/mikutter/core/plugin/gtk/delayer.rb
-share/mikutter/core/plugin/gtk/dialog_window.rb
-share/mikutter/core/plugin/gtk/gtk.rb
-share/mikutter/core/plugin/gtk/konami_watcher.rb
-share/mikutter/core/plugin/gtk/mainloop.rb
-share/mikutter/core/plugin/gtk/mikutter_window.rb
-share/mikutter/core/plugin/gtk/po/ar/gtk.po
-share/mikutter/core/plugin/gtk/po/de/gtk.po
-share/mikutter/core/plugin/gtk/po/el/gtk.po
-share/mikutter/core/plugin/gtk/po/en/gtk.po
-share/mikutter/core/plugin/gtk/po/eo/gtk.po
-share/mikutter/core/plugin/gtk/po/es/gtk.po
-share/mikutter/core/plugin/gtk/po/fr/gtk.po
-share/mikutter/core/plugin/gtk/po/ja/gtk.po
-share/mikutter/core/plugin/gtk/po/ja_KS/gtk.po
-share/mikutter/core/plugin/gtk/po/nl_NL/gtk.po
-share/mikutter/core/plugin/gtk/po/pt_PT/gtk.po
-share/mikutter/core/plugin/gtk/po/ro_RO/gtk.po
-share/mikutter/core/plugin/gtk/po/ru/gtk.po
-share/mikutter/core/plugin/gtk/po/sr/gtk.po
-share/mikutter/core/plugin/gtk/po/vi/gtk.po
-share/mikutter/core/plugin/gtk/po/zh/gtk.po
-share/mikutter/core/plugin/gtk/po/zh_CN/gtk.po
-share/mikutter/core/plugin/gtk/po/zh_TW/gtk.po
-share/mikutter/core/plugin/gtk/slug_dictionary.rb
-share/mikutter/core/plugin/gtk/tab_container.rb
-share/mikutter/core/plugin/gtk/tab_toolbar.rb
-share/mikutter/core/plugin/gtk/toolbar_generator.rb
-share/mikutter/core/plugin/gtk/world_shifter.rb
-share/mikutter/core/plugin/gui/.mikutter.yml
-share/mikutter/core/plugin/gui/cluster.rb
-share/mikutter/core/plugin/gui/command.rb
-share/mikutter/core/plugin/gui/cuscadable.rb
-share/mikutter/core/plugin/gui/dsl.rb
-share/mikutter/core/plugin/gui/event.rb
-share/mikutter/core/plugin/gui/fragment.rb
-share/mikutter/core/plugin/gui/gui.rb
-share/mikutter/core/plugin/gui/hierarchy_child.rb
-share/mikutter/core/plugin/gui/hierarchy_parent.rb
-share/mikutter/core/plugin/gui/pane.rb
-share/mikutter/core/plugin/gui/po/ar/gui.po
-share/mikutter/core/plugin/gui/po/de/gui.po
-share/mikutter/core/plugin/gui/po/el/gui.po
-share/mikutter/core/plugin/gui/po/en/gui.po
-share/mikutter/core/plugin/gui/po/eo/gui.po
-share/mikutter/core/plugin/gui/po/es/gui.po
-share/mikutter/core/plugin/gui/po/fr/gui.po
-share/mikutter/core/plugin/gui/po/ja_KS/gui.po
-share/mikutter/core/plugin/gui/po/nl_NL/gui.po
-share/mikutter/core/plugin/gui/po/pt_PT/gui.po
-share/mikutter/core/plugin/gui/po/ro_RO/gui.po
-share/mikutter/core/plugin/gui/po/ru/gui.po
-share/mikutter/core/plugin/gui/po/sr/gui.po
-share/mikutter/core/plugin/gui/po/vi/gui.po
-share/mikutter/core/plugin/gui/po/zh/gui.po
-share/mikutter/core/plugin/gui/po/zh_CN/gui.po
-share/mikutter/core/plugin/gui/po/zh_TW/gui.po
-share/mikutter/core/plugin/gui/postbox.rb
-share/mikutter/core/plugin/gui/tab.rb
-share/mikutter/core/plugin/gui/tab_child_widget.rb
-share/mikutter/core/plugin/gui/tab_toolbar.rb
-share/mikutter/core/plugin/gui/tablike.rb
-share/mikutter/core/plugin/gui/test/test_cuscadable.rb
-share/mikutter/core/plugin/gui/test/test_dsl.rb
-share/mikutter/core/plugin/gui/test/test_hierarchy_parent.rb
-share/mikutter/core/plugin/gui/test/test_widget.rb
-share/mikutter/core/plugin/gui/timeline.rb
-share/mikutter/core/plugin/gui/widget.rb
-share/mikutter/core/plugin/gui/window.rb
-share/mikutter/core/plugin/guide/.mikutter.yml
-share/mikutter/core/plugin/guide/guide.rb
-share/mikutter/core/plugin/guide/interactive.rb
-share/mikutter/core/plugin/home_timeline/.mikutter.yml
-share/mikutter/core/plugin/home_timeline/home_timeline.rb
-share/mikutter/core/plugin/home_timeline/po/ar/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/de/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/el/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/en/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/eo/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/es/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/fr/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/ja_KS/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/nl_NL/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/pt_PT/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/ro_RO/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/ru/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/sr/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/vi/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/zh/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/zh_CN/home_timeline.po
-share/mikutter/core/plugin/home_timeline/po/zh_TW/home_timeline.po
-share/mikutter/core/plugin/image_file_cache/.mikutter.yml
-share/mikutter/core/plugin/image_file_cache/Gemfile
-share/mikutter/core/plugin/image_file_cache/image_file_cache.rb
-share/mikutter/core/plugin/intent/.mikutter.yml
-share/mikutter/core/plugin/intent/intent.rb
-share/mikutter/core/plugin/intent/model/intent.rb
-share/mikutter/core/plugin/intent/model/intent_token.rb
-share/mikutter/core/plugin/intent_selector/.mikutter.yml
-share/mikutter/core/plugin/intent_selector/intent_selector.rb
-share/mikutter/core/plugin/intent_selector/listview.rb
-share/mikutter/core/plugin/libnotify/.mikutter.yml
-share/mikutter/core/plugin/libnotify/libnotify.rb
-share/mikutter/core/plugin/list/.mikutter.yml
-share/mikutter/core/plugin/list/list.rb
-share/mikutter/core/plugin/list_for_profile/.mikutter.yml
-share/mikutter/core/plugin/list_for_profile/list_for_profile.rb
-share/mikutter/core/plugin/list_for_profile/po/ja_KS/list_for_profile.po
-share/mikutter/core/plugin/list_for_profile/profiletab.rb
-share/mikutter/core/plugin/list_settings/.mikutter.yml
-share/mikutter/core/plugin/list_settings/list_settings.rb
-share/mikutter/core/plugin/list_settings/po/ja_KS/list_settings.po
-share/mikutter/core/plugin/list_settings/tab.rb
-share/mikutter/core/plugin/mastodon/.mikutter.yml
-share/mikutter/core/plugin/mastodon/api.rb
-share/mikutter/core/plugin/mastodon/extractcondition.rb
-share/mikutter/core/plugin/mastodon/icon/bot.png
-share/mikutter/core/plugin/mastodon/icon/direct.png
-share/mikutter/core/plugin/mastodon/icon/libre-gui-email.svg
-share/mikutter/core/plugin/mastodon/icon/libre-gui-lock.svg
-share/mikutter/core/plugin/mastodon/icon/libre-gui-unlock.svg
-share/mikutter/core/plugin/mastodon/icon/pin.png
-share/mikutter/core/plugin/mastodon/icon/private.png
-share/mikutter/core/plugin/mastodon/icon/unlisted.png
-share/mikutter/core/plugin/mastodon/instance_setting_list.rb
-share/mikutter/core/plugin/mastodon/mastodon.rb
-share/mikutter/core/plugin/mastodon/model/account.rb
-share/mikutter/core/plugin/mastodon/model/account_profile.rb
-share/mikutter/core/plugin/mastodon/model/application.rb
-share/mikutter/core/plugin/mastodon/model/attachment.rb
-share/mikutter/core/plugin/mastodon/model/card.rb
-share/mikutter/core/plugin/mastodon/model/emoji.rb
-share/mikutter/core/plugin/mastodon/model/entity_class.rb
-share/mikutter/core/plugin/mastodon/model/instance.rb
-share/mikutter/core/plugin/mastodon/model/mention.rb
-share/mikutter/core/plugin/mastodon/model/model.rb
-share/mikutter/core/plugin/mastodon/model/poll.rb
-share/mikutter/core/plugin/mastodon/model/status.rb
-share/mikutter/core/plugin/mastodon/model/tag.rb
-share/mikutter/core/plugin/mastodon/model/world.rb
-share/mikutter/core/plugin/mastodon/parser.rb
-share/mikutter/core/plugin/mastodon/patch.rb
-share/mikutter/core/plugin/mastodon/rest.rb
-share/mikutter/core/plugin/mastodon/score.rb
-share/mikutter/core/plugin/mastodon/setting.rb
-share/mikutter/core/plugin/mastodon/spell.rb
-share/mikutter/core/plugin/mastodon/subparts_status_info.rb
-share/mikutter/core/plugin/mastodon/util.rb
-share/mikutter/core/plugin/mastodon_sse_streaming/.mikutter.yml
-share/mikutter/core/plugin/mastodon_sse_streaming/client.rb
-share/mikutter/core/plugin/mastodon_sse_streaming/mastodon_sse_streaming.rb
-share/mikutter/core/plugin/mentions/.mikutter.yml
-share/mikutter/core/plugin/mentions/mentions.rb
-share/mikutter/core/plugin/mentions/po/ar/mentions.po
-share/mikutter/core/plugin/mentions/po/de/mentions.po
-share/mikutter/core/plugin/mentions/po/el/mentions.po
-share/mikutter/core/plugin/mentions/po/en/mentions.po
-share/mikutter/core/plugin/mentions/po/eo/mentions.po
-share/mikutter/core/plugin/mentions/po/es/mentions.po
-share/mikutter/core/plugin/mentions/po/fr/mentions.po
-share/mikutter/core/plugin/mentions/po/ja_KS/mentions.po
-share/mikutter/core/plugin/mentions/po/nl_NL/mentions.po
-share/mikutter/core/plugin/mentions/po/pt_PT/mentions.po
-share/mikutter/core/plugin/mentions/po/ro_RO/mentions.po
-share/mikutter/core/plugin/mentions/po/ru/mentions.po
-share/mikutter/core/plugin/mentions/po/sr/mentions.po
-share/mikutter/core/plugin/mentions/po/vi/mentions.po
-share/mikutter/core/plugin/mentions/po/zh/mentions.po
-share/mikutter/core/plugin/mentions/po/zh_CN/mentions.po
-share/mikutter/core/plugin/mentions/po/zh_TW/mentions.po
-share/mikutter/core/plugin/message_detail_view/.mikutter.yml
-share/mikutter/core/plugin/message_detail_view/message_detail_view.rb
-share/mikutter/core/plugin/message_favorite/.mikutter.yml
-share/mikutter/core/plugin/message_favorite/message_favorite.rb
-share/mikutter/core/plugin/message_retweet/.mikutter.yml
-share/mikutter/core/plugin/message_retweet/message_retweet.rb
-share/mikutter/core/plugin/modelviewer/.mikutter.yml
-share/mikutter/core/plugin/modelviewer/modelviewer.rb
-share/mikutter/core/plugin/notification/.mikutter.yml
-share/mikutter/core/plugin/notification/notification.rb
-share/mikutter/core/plugin/notify/.mikutter.yml
-share/mikutter/core/plugin/notify/notify.rb
-share/mikutter/core/plugin/notify/po/ar/notify.po
-share/mikutter/core/plugin/notify/po/de/notify.po
-share/mikutter/core/plugin/notify/po/el/notify.po
-share/mikutter/core/plugin/notify/po/en/notify.po
-share/mikutter/core/plugin/notify/po/eo/notify.po
-share/mikutter/core/plugin/notify/po/es/notify.po
-share/mikutter/core/plugin/notify/po/fr/notify.po
-share/mikutter/core/plugin/notify/po/ja_KS/notify.po
-share/mikutter/core/plugin/notify/po/nl_NL/notify.po
-share/mikutter/core/plugin/notify/po/pt_PT/notify.po
-share/mikutter/core/plugin/notify/po/ro_RO/notify.po
-share/mikutter/core/plugin/notify/po/ru/notify.po
-share/mikutter/core/plugin/notify/po/sr/notify.po
-share/mikutter/core/plugin/notify/po/vi/notify.po
-share/mikutter/core/plugin/notify/po/zh/notify.po
-share/mikutter/core/plugin/notify/po/zh_CN/notify.po
-share/mikutter/core/plugin/notify/po/zh_TW/notify.po
-share/mikutter/core/plugin/openimg/.mikutter.yml
-share/mikutter/core/plugin/openimg/model/photo.rb
-share/mikutter/core/plugin/openimg/openimg.rb
-share/mikutter/core/plugin/openimg/pattern_file.json
-share/mikutter/core/plugin/openimg/po/ar/openimg.po
-share/mikutter/core/plugin/openimg/po/de/openimg.po
-share/mikutter/core/plugin/openimg/po/el/openimg.po
-share/mikutter/core/plugin/openimg/po/en/openimg.po
-share/mikutter/core/plugin/openimg/po/eo/openimg.po
-share/mikutter/core/plugin/openimg/po/es/openimg.po
-share/mikutter/core/plugin/openimg/po/fr/openimg.po
-share/mikutter/core/plugin/openimg/po/ja_KS/openimg.po
-share/mikutter/core/plugin/openimg/po/nl_NL/openimg.po
-share/mikutter/core/plugin/openimg/po/pt_PT/openimg.po
-share/mikutter/core/plugin/openimg/po/ro_RO/openimg.po
-share/mikutter/core/plugin/openimg/po/ru/openimg.po
-share/mikutter/core/plugin/openimg/po/sr/openimg.po
-share/mikutter/core/plugin/openimg/po/vi/openimg.po
-share/mikutter/core/plugin/openimg/po/zh/openimg.po
-share/mikutter/core/plugin/openimg/po/zh_CN/openimg.po
-share/mikutter/core/plugin/openimg/po/zh_TW/openimg.po
-share/mikutter/core/plugin/openimg/window.rb
-share/mikutter/core/plugin/photo/.mikutter.yml
-share/mikutter/core/plugin/photo/model/inner_photo.rb
-share/mikutter/core/plugin/photo/model/photo.rb
-share/mikutter/core/plugin/photo/model/photo_variant.rb
-share/mikutter/core/plugin/photo/photo.rb
-share/mikutter/core/plugin/photo_support/.mikutter.yml
-share/mikutter/core/plugin/photo_support/Gemfile
-share/mikutter/core/plugin/photo_support/photo_support.rb
-share/mikutter/core/plugin/profile/po/ar/profile.po
-share/mikutter/core/plugin/profile/po/de/profile.po
-share/mikutter/core/plugin/profile/po/el/profile.po
-share/mikutter/core/plugin/profile/po/en/profile.po
-share/mikutter/core/plugin/profile/po/eo/profile.po
-share/mikutter/core/plugin/profile/po/es/profile.po
-share/mikutter/core/plugin/profile/po/fr/profile.po
-share/mikutter/core/plugin/profile/po/nl_NL/profile.po
-share/mikutter/core/plugin/profile/po/pt_PT/profile.po
-share/mikutter/core/plugin/profile/po/ro_RO/profile.po
-share/mikutter/core/plugin/profile/po/ru/profile.po
-share/mikutter/core/plugin/profile/po/sr/profile.po
-share/mikutter/core/plugin/profile/po/vi/profile.po
-share/mikutter/core/plugin/profile/po/zh/profile.po
-share/mikutter/core/plugin/profile/po/zh_CN/profile.po
-share/mikutter/core/plugin/profile/po/zh_TW/profile.po
-share/mikutter/core/plugin/proxy/.mikutter.yml
-share/mikutter/core/plugin/proxy/po/ar/proxy.po
-share/mikutter/core/plugin/proxy/po/de/proxy.po
-share/mikutter/core/plugin/proxy/po/el/proxy.po
-share/mikutter/core/plugin/proxy/po/en/proxy.po
-share/mikutter/core/plugin/proxy/po/eo/proxy.po
-share/mikutter/core/plugin/proxy/po/es/proxy.po
-share/mikutter/core/plugin/proxy/po/fr/proxy.po
-share/mikutter/core/plugin/proxy/po/ja_KS/proxy.po
-share/mikutter/core/plugin/proxy/po/nl_NL/proxy.po
-share/mikutter/core/plugin/proxy/po/pt_PT/proxy.po
-share/mikutter/core/plugin/proxy/po/ro_RO/proxy.po
-share/mikutter/core/plugin/proxy/po/ru/proxy.po
-share/mikutter/core/plugin/proxy/po/sr/proxy.po
-share/mikutter/core/plugin/proxy/po/vi/proxy.po
-share/mikutter/core/plugin/proxy/po/zh/proxy.po
-share/mikutter/core/plugin/proxy/po/zh_CN/proxy.po
-share/mikutter/core/plugin/proxy/po/zh_TW/proxy.po
-share/mikutter/core/plugin/proxy/proxy.rb
-share/mikutter/core/plugin/quickstep/.mikutter.yml
-share/mikutter/core/plugin/quickstep/complete.rb
-share/mikutter/core/plugin/quickstep/model/command.rb
-share/mikutter/core/plugin/quickstep/quickstep.rb
-share/mikutter/core/plugin/quoted_message/.mikutter.yml
-share/mikutter/core/plugin/quoted_message/quoted_message.rb
-share/mikutter/core/plugin/ratelimit/.mikutter.yml
-share/mikutter/core/plugin/ratelimit/po/ar/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/de/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/el/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/en/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/eo/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/es/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/fr/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/ja_KS/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/nl_NL/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/pt_PT/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/ro_RO/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/ru/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/sr/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/vi/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/zh/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/zh_CN/ratelimit.po
-share/mikutter/core/plugin/ratelimit/po/zh_TW/ratelimit.po
-share/mikutter/core/plugin/ratelimit/ratelimit.rb
-share/mikutter/core/plugin/rest/.mikutter.yml
-share/mikutter/core/plugin/rest/rest.rb
-share/mikutter/core/plugin/saved_search/.mikutter.yml
-share/mikutter/core/plugin/saved_search/po/ar/saved_search.po
-share/mikutter/core/plugin/saved_search/po/de/saved_search.po
-share/mikutter/core/plugin/saved_search/po/el/saved_search.po
-share/mikutter/core/plugin/saved_search/po/en/saved_search.po
-share/mikutter/core/plugin/saved_search/po/eo/saved_search.po
-share/mikutter/core/plugin/saved_search/po/es/saved_search.po
-share/mikutter/core/plugin/saved_search/po/fr/saved_search.po
-share/mikutter/core/plugin/saved_search/po/ja_KS/saved_search.po
-share/mikutter/core/plugin/saved_search/po/nl_NL/saved_search.po
-share/mikutter/core/plugin/saved_search/po/pt_PT/saved_search.po
-share/mikutter/core/plugin/saved_search/po/ro_RO/saved_search.po
-share/mikutter/core/plugin/saved_search/po/ru/saved_search.po
-share/mikutter/core/plugin/saved_search/po/sr/saved_search.po
-share/mikutter/core/plugin/saved_search/po/vi/saved_search.po
-share/mikutter/core/plugin/saved_search/po/zh/saved_search.po
-share/mikutter/core/plugin/saved_search/po/zh_CN/saved_search.po
-share/mikutter/core/plugin/saved_search/po/zh_TW/saved_search.po
-share/mikutter/core/plugin/saved_search/saved_search.rb
-share/mikutter/core/plugin/score/.mikutter.yml
-share/mikutter/core/plugin/score/model/emoji_note.rb
-share/mikutter/core/plugin/score/model/hyper_link_note.rb
-share/mikutter/core/plugin/score/model/text_note.rb
-share/mikutter/core/plugin/score/score.rb
-share/mikutter/core/plugin/score/select.rb
-share/mikutter/core/plugin/search/.mikutter.yml
-share/mikutter/core/plugin/search/model/search.rb
-share/mikutter/core/plugin/search/po/ar/search.po
-share/mikutter/core/plugin/search/po/de/search.po
-share/mikutter/core/plugin/search/po/el/search.po
-share/mikutter/core/plugin/search/po/en/search.po
-share/mikutter/core/plugin/search/po/eo/search.po
-share/mikutter/core/plugin/search/po/es/search.po
-share/mikutter/core/plugin/search/po/fr/search.po
-share/mikutter/core/plugin/search/po/ja_KS/search.po
-share/mikutter/core/plugin/search/po/nl_NL/search.po
-share/mikutter/core/plugin/search/po/pt_PT/search.po
-share/mikutter/core/plugin/search/po/ro_RO/search.po
-share/mikutter/core/plugin/search/po/ru/search.po
-share/mikutter/core/plugin/search/po/sr/search.po
-share/mikutter/core/plugin/search/po/vi/search.po
-share/mikutter/core/plugin/search/po/zh/search.po
-share/mikutter/core/plugin/search/po/zh_CN/search.po
-share/mikutter/core/plugin/search/po/zh_TW/search.po
-share/mikutter/core/plugin/search/query_box.rb
-share/mikutter/core/plugin/search/search.rb
-share/mikutter/core/plugin/set_input/.mikutter.yml
-share/mikutter/core/plugin/set_input/po/ar/set_input.po
-share/mikutter/core/plugin/set_input/po/de/set_input.po
-share/mikutter/core/plugin/set_input/po/el/set_input.po
-share/mikutter/core/plugin/set_input/po/en/set_input.po
-share/mikutter/core/plugin/set_input/po/eo/set_input.po
-share/mikutter/core/plugin/set_input/po/es/set_input.po
-share/mikutter/core/plugin/set_input/po/fr/set_input.po
-share/mikutter/core/plugin/set_input/po/ja_KS/set_input.po
-share/mikutter/core/plugin/set_input/po/nl_NL/set_input.po
-share/mikutter/core/plugin/set_input/po/pt_PT/set_input.po
-share/mikutter/core/plugin/set_input/po/ro_RO/set_input.po
-share/mikutter/core/plugin/set_input/po/ru/set_input.po
-share/mikutter/core/plugin/set_input/po/sr/set_input.po
-share/mikutter/core/plugin/set_input/po/vi/set_input.po
-share/mikutter/core/plugin/set_input/po/zh/set_input.po
-share/mikutter/core/plugin/set_input/po/zh_CN/set_input.po
-share/mikutter/core/plugin/set_input/po/zh_TW/set_input.po
-share/mikutter/core/plugin/set_input/set_input.rb
-share/mikutter/core/plugin/set_view/.mikutter.yml
-share/mikutter/core/plugin/set_view/po/ar/set_view.po
-share/mikutter/core/plugin/set_view/po/de/set_view.po
-share/mikutter/core/plugin/set_view/po/el/set_view.po
-share/mikutter/core/plugin/set_view/po/en/set_view.po
-share/mikutter/core/plugin/set_view/po/eo/set_view.po
-share/mikutter/core/plugin/set_view/po/es/set_view.po
-share/mikutter/core/plugin/set_view/po/fr/set_view.po
-share/mikutter/core/plugin/set_view/po/ja_KS/set_view.po
-share/mikutter/core/plugin/set_view/po/nl_NL/set_view.po
-share/mikutter/core/plugin/set_view/po/pt_PT/set_view.po
-share/mikutter/core/plugin/set_view/po/ro_RO/set_view.po
-share/mikutter/core/plugin/set_view/po/ru/set_view.po
-share/mikutter/core/plugin/set_view/po/sr/set_view.po
-share/mikutter/core/plugin/set_view/po/vi/set_view.po
-share/mikutter/core/plugin/set_view/po/zh/set_view.po
-share/mikutter/core/plugin/set_view/po/zh_CN/set_view.po
-share/mikutter/core/plugin/set_view/po/zh_TW/set_view.po
-share/mikutter/core/plugin/set_view/set_view.rb
-share/mikutter/core/plugin/settings/.mikutter.yml
-share/mikutter/core/plugin/settings/basic_settings.rb
-share/mikutter/core/plugin/settings/listener.rb
-share/mikutter/core/plugin/settings/menu.rb
-share/mikutter/core/plugin/settings/phantom.rb
-share/mikutter/core/plugin/settings/po/ar/settings.po
-share/mikutter/core/plugin/settings/po/de/settings.po
-share/mikutter/core/plugin/settings/po/el/settings.po
-share/mikutter/core/plugin/settings/po/en/settings.po
-share/mikutter/core/plugin/settings/po/eo/settings.po
-share/mikutter/core/plugin/settings/po/es/settings.po
-share/mikutter/core/plugin/settings/po/fr/settings.po
-share/mikutter/core/plugin/settings/po/ja_KS/settings.po
-share/mikutter/core/plugin/settings/po/nl_NL/settings.po
-share/mikutter/core/plugin/settings/po/pt_PT/settings.po
-share/mikutter/core/plugin/settings/po/ro_RO/settings.po
-share/mikutter/core/plugin/settings/po/ru/settings.po
-share/mikutter/core/plugin/settings/po/sr/settings.po
-share/mikutter/core/plugin/settings/po/vi/settings.po
-share/mikutter/core/plugin/settings/po/zh/settings.po
-share/mikutter/core/plugin/settings/po/zh_CN/settings.po
-share/mikutter/core/plugin/settings/po/zh_TW/settings.po
-share/mikutter/core/plugin/settings/setting_dsl.rb
-share/mikutter/core/plugin/settings/settings.rb
-share/mikutter/core/plugin/settings/test_listener.rb
-share/mikutter/core/plugin/shortcutkey/.mikutter.yml
-share/mikutter/core/plugin/shortcutkey/po/ar/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/de/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/el/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/en/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/eo/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/es/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/fr/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/ja_KS/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/nl_NL/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/pt_PT/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/ro_RO/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/ru/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/sr/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/vi/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/zh/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/zh_CN/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/po/zh_TW/shortcutkey.po
-share/mikutter/core/plugin/shortcutkey/shortcutkey.rb
-share/mikutter/core/plugin/shortcutkey/shortcutkey_listview.rb
-share/mikutter/core/plugin/skin/.mikutter.yml
-share/mikutter/core/plugin/skin/model/image.rb
-share/mikutter/core/plugin/skin/skin.rb
-share/mikutter/core/plugin/skin_setting_gtk/.mikutter.yml
-share/mikutter/core/plugin/skin_setting_gtk/skin_setting_gtk.rb
-share/mikutter/core/plugin/smartthread/.mikutter.yml
-share/mikutter/core/plugin/smartthread/po/ar/smartthread.po
-share/mikutter/core/plugin/smartthread/po/de/smartthread.po
-share/mikutter/core/plugin/smartthread/po/el/smartthread.po
-share/mikutter/core/plugin/smartthread/po/en/smartthread.po
-share/mikutter/core/plugin/smartthread/po/eo/smartthread.po
-share/mikutter/core/plugin/smartthread/po/es/smartthread.po
-share/mikutter/core/plugin/smartthread/po/fr/smartthread.po
-share/mikutter/core/plugin/smartthread/po/ja_KS/smartthread.po
-share/mikutter/core/plugin/smartthread/po/nl_NL/smartthread.po
-share/mikutter/core/plugin/smartthread/po/pt_PT/smartthread.po
-share/mikutter/core/plugin/smartthread/po/ro_RO/smartthread.po
-share/mikutter/core/plugin/smartthread/po/ru/smartthread.po
-share/mikutter/core/plugin/smartthread/po/sr/smartthread.po
-share/mikutter/core/plugin/smartthread/po/vi/smartthread.po
-share/mikutter/core/plugin/smartthread/po/zh/smartthread.po
-share/mikutter/core/plugin/smartthread/po/zh_CN/smartthread.po
-share/mikutter/core/plugin/smartthread/po/zh_TW/smartthread.po
-share/mikutter/core/plugin/smartthread/smartthread.rb
-share/mikutter/core/plugin/sound/.mikutter.yml
-share/mikutter/core/plugin/sound/po/ar/sound.po
-share/mikutter/core/plugin/sound/po/de/sound.po
-share/mikutter/core/plugin/sound/po/el/sound.po
-share/mikutter/core/plugin/sound/po/en/sound.po
-share/mikutter/core/plugin/sound/po/eo/sound.po
-share/mikutter/core/plugin/sound/po/es/sound.po
-share/mikutter/core/plugin/sound/po/fr/sound.po
-share/mikutter/core/plugin/sound/po/ja_KS/sound.po
-share/mikutter/core/plugin/sound/po/nl_NL/sound.po
-share/mikutter/core/plugin/sound/po/pt_PT/sound.po
-share/mikutter/core/plugin/sound/po/ro_RO/sound.po
-share/mikutter/core/plugin/sound/po/ru/sound.po
-share/mikutter/core/plugin/sound/po/sr/sound.po
-share/mikutter/core/plugin/sound/po/vi/sound.po
-share/mikutter/core/plugin/sound/po/zh/sound.po
-share/mikutter/core/plugin/sound/po/zh_CN/sound.po
-share/mikutter/core/plugin/sound/po/zh_TW/sound.po
-share/mikutter/core/plugin/sound/sound.rb
-share/mikutter/core/plugin/spell/.mikutter.yml
-share/mikutter/core/plugin/spell/error.rb
-share/mikutter/core/plugin/spell/spell.rb
-share/mikutter/core/plugin/spell/struct.rb
-share/mikutter/core/plugin/streaming/.mikutter.yml
-share/mikutter/core/plugin/streaming/po/ar/streaming.po
-share/mikutter/core/plugin/streaming/po/de/streaming.po
-share/mikutter/core/plugin/streaming/po/el/streaming.po
-share/mikutter/core/plugin/streaming/po/en/streaming.po
-share/mikutter/core/plugin/streaming/po/es/streaming.po
-share/mikutter/core/plugin/streaming/po/pt_PT/streaming.po
-share/mikutter/core/plugin/streaming/po/ro_RO/streaming.po
-share/mikutter/core/plugin/streaming/po/ru/streaming.po
-share/mikutter/core/plugin/streaming/po/vi/streaming.po
-share/mikutter/core/plugin/streaming/po/zh/streaming.po
-share/mikutter/core/plugin/streaming/po/zh_CN/streaming.po
-share/mikutter/core/plugin/streaming/po/zh_TW/streaming.po
-share/mikutter/core/plugin/streaming/streaming.rb
-share/mikutter/core/plugin/streaming_connection_status/.mikutter.yml
-share/mikutter/core/plugin/streaming_connection_status/streaming_connection_status.rb
-share/mikutter/core/plugin/tco/.mikutter.yml
-share/mikutter/core/plugin/tco/tco.rb
-share/mikutter/core/plugin/template
-share/mikutter/core/plugin/twitter/.mikutter.yml
-share/mikutter/core/plugin/twitter/Gemfile
-share/mikutter/core/plugin/twitter/builder.rb
-share/mikutter/core/plugin/twitter/configuration.json
-share/mikutter/core/plugin/twitter/mikutwitter.rb
-share/mikutter/core/plugin/twitter/mikutwitter/api_call_support.rb
-share/mikutter/core/plugin/twitter/mikutwitter/api_shortcuts.rb
-share/mikutter/core/plugin/twitter/mikutwitter/authentication_failed_action.rb
-share/mikutter/core/plugin/twitter/mikutwitter/basic.rb
-share/mikutter/core/plugin/twitter/mikutwitter/cache.rb
-share/mikutter/core/plugin/twitter/mikutwitter/connect.rb
-share/mikutter/core/plugin/twitter/mikutwitter/error.rb
-share/mikutter/core/plugin/twitter/mikutwitter/oauth_hacks.rb
-share/mikutter/core/plugin/twitter/mikutwitter/query.rb
-share/mikutter/core/plugin/twitter/mikutwitter/rate_limiting.rb
-share/mikutter/core/plugin/twitter/mikutwitter/streaming_failed_actions.rb
-share/mikutter/core/plugin/twitter/mikutwitter/test/154380989328662530.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/extension.rb
-share/mikutter/core/plugin/twitter/mikutwitter/test/friendship.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/list_member.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/list_member_1380555359495881433.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/list_member_1380555797979069262.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/list_member_2.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/list_memberships.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/list_subscriptions.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/lists_all.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/search.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/status_show.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/status_update_duplicate.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/status_update_success.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/test_api_call_support.rb
-share/mikutter/core/plugin/twitter/mikutwitter/test/test_api_shortcuts.rb
-share/mikutter/core/plugin/twitter/mikutwitter/test/test_cache.rb
-share/mikutter/core/plugin/twitter/mikutwitter/test/test_query.rb
-share/mikutter/core/plugin/twitter/mikutwitter/test/test_streaming_failed_actions.rb
-share/mikutter/core/plugin/twitter/mikutwitter/test/test_utils.rb
-share/mikutter/core/plugin/twitter/mikutwitter/test/user.json
-share/mikutter/core/plugin/twitter/mikutwitter/test/user_timeline.json
-share/mikutter/core/plugin/twitter/mikutwitter/utils.rb
-share/mikutter/core/plugin/twitter/model.rb
-share/mikutter/core/plugin/twitter/model/directmessage.rb
-share/mikutter/core/plugin/twitter/model/hash_tag.rb
-share/mikutter/core/plugin/twitter/model/message.rb
-share/mikutter/core/plugin/twitter/model/user.rb
-share/mikutter/core/plugin/twitter/model/userlist.rb
-share/mikutter/core/plugin/twitter/model/world.rb
-share/mikutter/core/plugin/twitter/test/test_message.rb
-share/mikutter/core/plugin/twitter/test/test_user.rb
-share/mikutter/core/plugin/twitter/test/test_userlist.rb
-share/mikutter/core/plugin/twitter/twitter.rb
-share/mikutter/core/plugin/twitter_api_keys/.mikutter.yml
-share/mikutter/core/plugin/twitter_api_keys/twitter_api_keys.rb
-share/mikutter/core/plugin/twitter_search/.mikutter.yml
-share/mikutter/core/plugin/twitter_search/twitter_search.rb
-share/mikutter/core/plugin/uitranslator/.mikutter.yml
-share/mikutter/core/plugin/uitranslator/Gemfile
-share/mikutter/core/plugin/uitranslator/uitranslator.rb
-share/mikutter/core/plugin/user_detail_view/.mikutter.yml
-share/mikutter/core/plugin/user_detail_view/po/ar/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/de/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/el/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/en/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/es/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/ja_KS/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/pt_PT/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/ro_RO/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/ru/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/vi/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/zh/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/zh_CN/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/po/zh_TW/user_detail_view.po
-share/mikutter/core/plugin/user_detail_view/user_detail_view.rb
-share/mikutter/core/plugin/web/.mikutter.yml
-share/mikutter/core/plugin/web/model/web.rb
-share/mikutter/core/plugin/web/web.rb
-share/mikutter/core/plugin/world/.mikutter.yml
-share/mikutter/core/plugin/world/error.rb
-share/mikutter/core/plugin/world/keep.rb
-share/mikutter/core/plugin/world/model/lost_world.rb
-share/mikutter/core/plugin/world/service.rb
-share/mikutter/core/plugin/world/world.rb
 share/mikutter/core/serialthread.rb
 share/mikutter/core/skin.rb
 share/mikutter/core/skin/data/activity.png
@@ -922,4 +165,552 @@ share/mikutter/core/system/user.rb
 share/mikutter/core/userconfig.rb
 share/mikutter/core/utils.rb
 share/mikutter/mikutter.rb
-share/mikutter/plugin/WHATSTHIS
+share/mikutter/plugin/achievement/.mikutter.yml
+share/mikutter/plugin/achievement/achievement.rb
+share/mikutter/plugin/achievement/po/ar/achievement.po
+share/mikutter/plugin/achievement/po/de/achievement.po
+share/mikutter/plugin/achievement/po/el/achievement.po
+share/mikutter/plugin/achievement/po/en/achievement.po
+share/mikutter/plugin/achievement/po/eo/achievement.po
+share/mikutter/plugin/achievement/po/es/achievement.po
+share/mikutter/plugin/achievement/po/fr/achievement.po
+share/mikutter/plugin/achievement/po/ja_KS/achievement.po
+share/mikutter/plugin/achievement/po/nl_NL/achievement.po
+share/mikutter/plugin/achievement/po/pt_PT/achievement.po
+share/mikutter/plugin/achievement/po/ro_RO/achievement.po
+share/mikutter/plugin/achievement/po/ru/achievement.po
+share/mikutter/plugin/achievement/po/sr/achievement.po
+share/mikutter/plugin/achievement/po/vi/achievement.po
+share/mikutter/plugin/achievement/po/zh/achievement.po
+share/mikutter/plugin/achievement/po/zh_CN/achievement.po
+share/mikutter/plugin/achievement/po/zh_TW/achievement.po
+share/mikutter/plugin/activity/.mikutter.yml
+share/mikutter/plugin/activity/activity.rb
+share/mikutter/plugin/activity/model/activity.rb
+share/mikutter/plugin/activity/model_selector.rb
+share/mikutter/plugin/activity/po/ar/activity.po
+share/mikutter/plugin/activity/po/de/activity.po
+share/mikutter/plugin/activity/po/el/activity.po
+share/mikutter/plugin/activity/po/en/activity.po
+share/mikutter/plugin/activity/po/eo/activity.po
+share/mikutter/plugin/activity/po/es/activity.po
+share/mikutter/plugin/activity/po/fr/activity.po
+share/mikutter/plugin/activity/po/ja_KS/activity.po
+share/mikutter/plugin/activity/po/nl_NL/activity.po
+share/mikutter/plugin/activity/po/pt_PT/activity.po
+share/mikutter/plugin/activity/po/ro_RO/activity.po
+share/mikutter/plugin/activity/po/ru/activity.po
+share/mikutter/plugin/activity/po/sr/activity.po
+share/mikutter/plugin/activity/po/vi/activity.po
+share/mikutter/plugin/activity/po/zh/activity.po
+share/mikutter/plugin/activity/po/zh_CN/activity.po
+share/mikutter/plugin/activity/po/zh_TW/activity.po
+share/mikutter/plugin/alsa/.mikutter.yml
+share/mikutter/plugin/alsa/alsa.rb
+share/mikutter/plugin/aspectframe/.mikutter.yml
+share/mikutter/plugin/aspectframe/aspectframe.rb
+share/mikutter/plugin/bitly/.mikutter.yml
+share/mikutter/plugin/bitly/bitly.rb
+share/mikutter/plugin/bugreport/.mikutter.yml
+share/mikutter/plugin/bugreport/bugreport.rb
+share/mikutter/plugin/bugreport/po/ar/bugreport.po
+share/mikutter/plugin/bugreport/po/de/bugreport.po
+share/mikutter/plugin/bugreport/po/el/bugreport.po
+share/mikutter/plugin/bugreport/po/en/bugreport.po
+share/mikutter/plugin/bugreport/po/eo/bugreport.po
+share/mikutter/plugin/bugreport/po/es/bugreport.po
+share/mikutter/plugin/bugreport/po/fr/bugreport.po
+share/mikutter/plugin/bugreport/po/ja_KS/bugreport.po
+share/mikutter/plugin/bugreport/po/nl_NL/bugreport.po
+share/mikutter/plugin/bugreport/po/pt_PT/bugreport.po
+share/mikutter/plugin/bugreport/po/ro_RO/bugreport.po
+share/mikutter/plugin/bugreport/po/ru/bugreport.po
+share/mikutter/plugin/bugreport/po/sr/bugreport.po
+share/mikutter/plugin/bugreport/po/vi/bugreport.po
+share/mikutter/plugin/bugreport/po/zh/bugreport.po
+share/mikutter/plugin/bugreport/po/zh_CN/bugreport.po
+share/mikutter/plugin/bugreport/po/zh_TW/bugreport.po
+share/mikutter/plugin/change_account/.mikutter.yml
+share/mikutter/plugin/change_account/account_control.rb
+share/mikutter/plugin/change_account/change_account.rb
+share/mikutter/plugin/change_account/po/ar/change_account.po
+share/mikutter/plugin/change_account/po/de/change_account.po
+share/mikutter/plugin/change_account/po/el/change_account.po
+share/mikutter/plugin/change_account/po/en/change_account.po
+share/mikutter/plugin/change_account/po/eo/change_account.po
+share/mikutter/plugin/change_account/po/es/change_account.po
+share/mikutter/plugin/change_account/po/fr/change_account.po
+share/mikutter/plugin/change_account/po/ja_KS/change_account.po
+share/mikutter/plugin/change_account/po/nl_NL/change_account.po
+share/mikutter/plugin/change_account/po/pt_PT/change_account.po
+share/mikutter/plugin/change_account/po/ro_RO/change_account.po
+share/mikutter/plugin/change_account/po/ru/change_account.po
+share/mikutter/plugin/change_account/po/sr/change_account.po
+share/mikutter/plugin/change_account/po/vi/change_account.po
+share/mikutter/plugin/change_account/po/zh/change_account.po
+share/mikutter/plugin/change_account/po/zh_CN/change_account.po
+share/mikutter/plugin/change_account/po/zh_TW/change_account.po
+share/mikutter/plugin/change_account/world_generator.rb
+share/mikutter/plugin/change_account/world_generator/controller.rb
+share/mikutter/plugin/change_account/world_generator/window.rb
+share/mikutter/plugin/command/.mikutter.yml
+share/mikutter/plugin/command/command.rb
+share/mikutter/plugin/command/conditions.rb
+share/mikutter/plugin/command/po/ar/command.po
+share/mikutter/plugin/command/po/de/command.po
+share/mikutter/plugin/command/po/el/command.po
+share/mikutter/plugin/command/po/en/command.po
+share/mikutter/plugin/command/po/eo/command.po
+share/mikutter/plugin/command/po/es/command.po
+share/mikutter/plugin/command/po/fr/command.po
+share/mikutter/plugin/command/po/ja_KS/command.po
+share/mikutter/plugin/command/po/nl_NL/command.po
+share/mikutter/plugin/command/po/pt_PT/command.po
+share/mikutter/plugin/command/po/ro_RO/command.po
+share/mikutter/plugin/command/po/ru/command.po
+share/mikutter/plugin/command/po/sr/command.po
+share/mikutter/plugin/command/po/vi/command.po
+share/mikutter/plugin/command/po/zh/command.po
+share/mikutter/plugin/command/po/zh_CN/command.po
+share/mikutter/plugin/command/po/zh_TW/command.po
+share/mikutter/plugin/console/.mikutter.yml
+share/mikutter/plugin/console/console.rb
+share/mikutter/plugin/console/console_control.rb
+share/mikutter/plugin/console/po/ar/console.po
+share/mikutter/plugin/console/po/de/console.po
+share/mikutter/plugin/console/po/el/console.po
+share/mikutter/plugin/console/po/en/console.po
+share/mikutter/plugin/console/po/eo/console.po
+share/mikutter/plugin/console/po/es/console.po
+share/mikutter/plugin/console/po/fr/console.po
+share/mikutter/plugin/console/po/ja_KS/console.po
+share/mikutter/plugin/console/po/nl_NL/console.po
+share/mikutter/plugin/console/po/pt_PT/console.po
+share/mikutter/plugin/console/po/ro_RO/console.po
+share/mikutter/plugin/console/po/ru/console.po
+share/mikutter/plugin/console/po/sr/console.po
+share/mikutter/plugin/console/po/vi/console.po
+share/mikutter/plugin/console/po/zh/console.po
+share/mikutter/plugin/console/po/zh_CN/console.po
+share/mikutter/plugin/console/po/zh_TW/console.po
+share/mikutter/plugin/core/.mikutter.yml
+share/mikutter/plugin/core/core.rb
+share/mikutter/plugin/current_world/.mikutter.yml
+share/mikutter/plugin/current_world/current_world.rb
+share/mikutter/plugin/current_world/error.rb
+share/mikutter/plugin/extract/.mikutter.yml
+share/mikutter/plugin/extract/edit_window.rb
+share/mikutter/plugin/extract/extract.rb
+share/mikutter/plugin/extract/extract_tab_list.rb
+share/mikutter/plugin/extract/model/setting.rb
+share/mikutter/plugin/extract/option_widget.rb
+share/mikutter/plugin/extract/po/ar/extract.po
+share/mikutter/plugin/extract/po/de/extract.po
+share/mikutter/plugin/extract/po/el/extract.po
+share/mikutter/plugin/extract/po/en/extract.po
+share/mikutter/plugin/extract/po/eo/extract.po
+share/mikutter/plugin/extract/po/es/extract.po
+share/mikutter/plugin/extract/po/fr/extract.po
+share/mikutter/plugin/extract/po/ja_KS/extract.po
+share/mikutter/plugin/extract/po/nl_NL/extract.po
+share/mikutter/plugin/extract/po/pt_PT/extract.po
+share/mikutter/plugin/extract/po/ro_RO/extract.po
+share/mikutter/plugin/extract/po/ru/extract.po
+share/mikutter/plugin/extract/po/sr/extract.po
+share/mikutter/plugin/extract/po/vi/extract.po
+share/mikutter/plugin/extract/po/zh/extract.po
+share/mikutter/plugin/extract/po/zh_CN/extract.po
+share/mikutter/plugin/extract/po/zh_TW/extract.po
+share/mikutter/plugin/file_path/.mikutter.yml
+share/mikutter/plugin/file_path/file_path.rb
+share/mikutter/plugin/gtk/.mikutter.yml
+share/mikutter/plugin/gtk/Gemfile
+share/mikutter/plugin/gtk/dialog_window.rb
+share/mikutter/plugin/gtk/gtk.rb
+share/mikutter/plugin/gtk/konami_watcher.rb
+share/mikutter/plugin/gtk/mainloop.rb
+share/mikutter/plugin/gtk/mikutter_window.rb
+share/mikutter/plugin/gtk/po/ar/gtk.po
+share/mikutter/plugin/gtk/po/de/gtk.po
+share/mikutter/plugin/gtk/po/el/gtk.po
+share/mikutter/plugin/gtk/po/en/gtk.po
+share/mikutter/plugin/gtk/po/eo/gtk.po
+share/mikutter/plugin/gtk/po/es/gtk.po
+share/mikutter/plugin/gtk/po/fr/gtk.po
+share/mikutter/plugin/gtk/po/ja/gtk.po
+share/mikutter/plugin/gtk/po/ja_KS/gtk.po
+share/mikutter/plugin/gtk/po/nl_NL/gtk.po
+share/mikutter/plugin/gtk/po/pt_PT/gtk.po
+share/mikutter/plugin/gtk/po/ro_RO/gtk.po
+share/mikutter/plugin/gtk/po/ru/gtk.po
+share/mikutter/plugin/gtk/po/sr/gtk.po
+share/mikutter/plugin/gtk/po/vi/gtk.po
+share/mikutter/plugin/gtk/po/zh/gtk.po
+share/mikutter/plugin/gtk/po/zh_CN/gtk.po
+share/mikutter/plugin/gtk/po/zh_TW/gtk.po
+share/mikutter/plugin/gtk/slug_dictionary.rb
+share/mikutter/plugin/gtk/tab_container.rb
+share/mikutter/plugin/gtk/tab_toolbar.rb
+share/mikutter/plugin/gtk/toolbar_generator.rb
+share/mikutter/plugin/gtk/world_shifter.rb
+share/mikutter/plugin/gui/.mikutter.yml
+share/mikutter/plugin/gui/cluster.rb
+share/mikutter/plugin/gui/command.rb
+share/mikutter/plugin/gui/cuscadable.rb
+share/mikutter/plugin/gui/dsl.rb
+share/mikutter/plugin/gui/event.rb
+share/mikutter/plugin/gui/fragment.rb
+share/mikutter/plugin/gui/gui.rb
+share/mikutter/plugin/gui/hierarchy_child.rb
+share/mikutter/plugin/gui/hierarchy_parent.rb
+share/mikutter/plugin/gui/pane.rb
+share/mikutter/plugin/gui/po/ar/gui.po
+share/mikutter/plugin/gui/po/de/gui.po
+share/mikutter/plugin/gui/po/el/gui.po
+share/mikutter/plugin/gui/po/en/gui.po
+share/mikutter/plugin/gui/po/eo/gui.po
+share/mikutter/plugin/gui/po/es/gui.po
+share/mikutter/plugin/gui/po/fr/gui.po
+share/mikutter/plugin/gui/po/ja_KS/gui.po
+share/mikutter/plugin/gui/po/nl_NL/gui.po
+share/mikutter/plugin/gui/po/pt_PT/gui.po
+share/mikutter/plugin/gui/po/ro_RO/gui.po
+share/mikutter/plugin/gui/po/ru/gui.po
+share/mikutter/plugin/gui/po/sr/gui.po
+share/mikutter/plugin/gui/po/vi/gui.po
+share/mikutter/plugin/gui/po/zh/gui.po
+share/mikutter/plugin/gui/po/zh_CN/gui.po
+share/mikutter/plugin/gui/po/zh_TW/gui.po
+share/mikutter/plugin/gui/postbox.rb
+share/mikutter/plugin/gui/tab.rb
+share/mikutter/plugin/gui/tab_child_widget.rb
+share/mikutter/plugin/gui/tab_toolbar.rb
+share/mikutter/plugin/gui/tablike.rb
+share/mikutter/plugin/gui/test/test_cuscadable.rb
+share/mikutter/plugin/gui/test/test_dsl.rb
+share/mikutter/plugin/gui/test/test_hierarchy_parent.rb
+share/mikutter/plugin/gui/test/test_widget.rb
+share/mikutter/plugin/gui/timeline.rb
+share/mikutter/plugin/gui/widget.rb
+share/mikutter/plugin/gui/window.rb
+share/mikutter/plugin/guide/.mikutter.yml
+share/mikutter/plugin/guide/guide.rb
+share/mikutter/plugin/guide/interactive.rb
+share/mikutter/plugin/image_file_cache/.mikutter.yml
+share/mikutter/plugin/image_file_cache/Gemfile
+share/mikutter/plugin/image_file_cache/image_file_cache.rb
+share/mikutter/plugin/intent/.mikutter.yml
+share/mikutter/plugin/intent/intent.rb
+share/mikutter/plugin/intent/model/intent.rb
+share/mikutter/plugin/intent/model/intent_token.rb
+share/mikutter/plugin/intent_selector/.mikutter.yml
+share/mikutter/plugin/intent_selector/intent_selector.rb
+share/mikutter/plugin/intent_selector/listview.rb
+share/mikutter/plugin/libnotify/.mikutter.yml
+share/mikutter/plugin/libnotify/libnotify.rb
+share/mikutter/plugin/mastodon/.mikutter.yml
+share/mikutter/plugin/mastodon/api.rb
+share/mikutter/plugin/mastodon/extractcondition.rb
+share/mikutter/plugin/mastodon/icon/bot.png
+share/mikutter/plugin/mastodon/icon/direct.png
+share/mikutter/plugin/mastodon/icon/libre-gui-email.svg
+share/mikutter/plugin/mastodon/icon/libre-gui-lock.svg
+share/mikutter/plugin/mastodon/icon/libre-gui-unlock.svg
+share/mikutter/plugin/mastodon/icon/pin.png
+share/mikutter/plugin/mastodon/icon/private.png
+share/mikutter/plugin/mastodon/icon/unlisted.png
+share/mikutter/plugin/mastodon/instance_setting_list.rb
+share/mikutter/plugin/mastodon/mastodon.rb
+share/mikutter/plugin/mastodon/model/account.rb
+share/mikutter/plugin/mastodon/model/account_profile.rb
+share/mikutter/plugin/mastodon/model/application.rb
+share/mikutter/plugin/mastodon/model/attachment.rb
+share/mikutter/plugin/mastodon/model/card.rb
+share/mikutter/plugin/mastodon/model/emoji.rb
+share/mikutter/plugin/mastodon/model/entity_class.rb
+share/mikutter/plugin/mastodon/model/instance.rb
+share/mikutter/plugin/mastodon/model/mention.rb
+share/mikutter/plugin/mastodon/model/model.rb
+share/mikutter/plugin/mastodon/model/poll.rb
+share/mikutter/plugin/mastodon/model/status.rb
+share/mikutter/plugin/mastodon/model/tag.rb
+share/mikutter/plugin/mastodon/model/world.rb
+share/mikutter/plugin/mastodon/parser.rb
+share/mikutter/plugin/mastodon/patch.rb
+share/mikutter/plugin/mastodon/rest.rb
+share/mikutter/plugin/mastodon/score.rb
+share/mikutter/plugin/mastodon/setting.rb
+share/mikutter/plugin/mastodon/spell.rb
+share/mikutter/plugin/mastodon/subparts_status_info.rb
+share/mikutter/plugin/mastodon/util.rb
+share/mikutter/plugin/mastodon_account_viewer/.mikutter.yml
+share/mikutter/plugin/mastodon_account_viewer/mastodon_account_viewer.rb
+share/mikutter/plugin/mastodon_sse_streaming/.mikutter.yml
+share/mikutter/plugin/mastodon_sse_streaming/client.rb
+share/mikutter/plugin/mastodon_sse_streaming/mastodon_sse_streaming.rb
+share/mikutter/plugin/modelviewer/.mikutter.yml
+share/mikutter/plugin/modelviewer/modelviewer.rb
+share/mikutter/plugin/notification/.mikutter.yml
+share/mikutter/plugin/notification/notification.rb
+share/mikutter/plugin/notify/.mikutter.yml
+share/mikutter/plugin/notify/notify.rb
+share/mikutter/plugin/notify/po/ar/notify.po
+share/mikutter/plugin/notify/po/de/notify.po
+share/mikutter/plugin/notify/po/el/notify.po
+share/mikutter/plugin/notify/po/en/notify.po
+share/mikutter/plugin/notify/po/eo/notify.po
+share/mikutter/plugin/notify/po/es/notify.po
+share/mikutter/plugin/notify/po/fr/notify.po
+share/mikutter/plugin/notify/po/ja_KS/notify.po
+share/mikutter/plugin/notify/po/nl_NL/notify.po
+share/mikutter/plugin/notify/po/pt_PT/notify.po
+share/mikutter/plugin/notify/po/ro_RO/notify.po
+share/mikutter/plugin/notify/po/ru/notify.po
+share/mikutter/plugin/notify/po/sr/notify.po
+share/mikutter/plugin/notify/po/vi/notify.po
+share/mikutter/plugin/notify/po/zh/notify.po
+share/mikutter/plugin/notify/po/zh_CN/notify.po
+share/mikutter/plugin/notify/po/zh_TW/notify.po
+share/mikutter/plugin/openimg/.mikutter.yml
+share/mikutter/plugin/openimg/model/photo.rb
+share/mikutter/plugin/openimg/openimg.rb
+share/mikutter/plugin/openimg/pattern_file.json
+share/mikutter/plugin/openimg/po/ar/openimg.po
+share/mikutter/plugin/openimg/po/de/openimg.po
+share/mikutter/plugin/openimg/po/el/openimg.po
+share/mikutter/plugin/openimg/po/en/openimg.po
+share/mikutter/plugin/openimg/po/eo/openimg.po
+share/mikutter/plugin/openimg/po/es/openimg.po
+share/mikutter/plugin/openimg/po/fr/openimg.po
+share/mikutter/plugin/openimg/po/ja_KS/openimg.po
+share/mikutter/plugin/openimg/po/nl_NL/openimg.po
+share/mikutter/plugin/openimg/po/pt_PT/openimg.po
+share/mikutter/plugin/openimg/po/ro_RO/openimg.po
+share/mikutter/plugin/openimg/po/ru/openimg.po
+share/mikutter/plugin/openimg/po/sr/openimg.po
+share/mikutter/plugin/openimg/po/vi/openimg.po
+share/mikutter/plugin/openimg/po/zh/openimg.po
+share/mikutter/plugin/openimg/po/zh_CN/openimg.po
+share/mikutter/plugin/openimg/po/zh_TW/openimg.po
+share/mikutter/plugin/openimg/window.rb
+share/mikutter/plugin/photo/.mikutter.yml
+share/mikutter/plugin/photo/model/inner_photo.rb
+share/mikutter/plugin/photo/model/photo.rb
+share/mikutter/plugin/photo/model/photo_variant.rb
+share/mikutter/plugin/photo/photo.rb
+share/mikutter/plugin/photo_support/.mikutter.yml
+share/mikutter/plugin/photo_support/Gemfile
+share/mikutter/plugin/photo_support/photo_support.rb
+share/mikutter/plugin/profile/po/ar/profile.po
+share/mikutter/plugin/profile/po/de/profile.po
+share/mikutter/plugin/profile/po/el/profile.po
+share/mikutter/plugin/profile/po/en/profile.po
+share/mikutter/plugin/profile/po/eo/profile.po
+share/mikutter/plugin/profile/po/es/profile.po
+share/mikutter/plugin/profile/po/fr/profile.po
+share/mikutter/plugin/profile/po/nl_NL/profile.po
+share/mikutter/plugin/profile/po/pt_PT/profile.po
+share/mikutter/plugin/profile/po/ro_RO/profile.po
+share/mikutter/plugin/profile/po/ru/profile.po
+share/mikutter/plugin/profile/po/sr/profile.po
+share/mikutter/plugin/profile/po/vi/profile.po
+share/mikutter/plugin/profile/po/zh/profile.po
+share/mikutter/plugin/profile/po/zh_CN/profile.po
+share/mikutter/plugin/profile/po/zh_TW/profile.po
+share/mikutter/plugin/proxy/.mikutter.yml
+share/mikutter/plugin/proxy/po/ar/proxy.po
+share/mikutter/plugin/proxy/po/de/proxy.po
+share/mikutter/plugin/proxy/po/el/proxy.po
+share/mikutter/plugin/proxy/po/en/proxy.po
+share/mikutter/plugin/proxy/po/eo/proxy.po
+share/mikutter/plugin/proxy/po/es/proxy.po
+share/mikutter/plugin/proxy/po/fr/proxy.po
+share/mikutter/plugin/proxy/po/ja_KS/proxy.po
+share/mikutter/plugin/proxy/po/nl_NL/proxy.po
+share/mikutter/plugin/proxy/po/pt_PT/proxy.po
+share/mikutter/plugin/proxy/po/ro_RO/proxy.po
+share/mikutter/plugin/proxy/po/ru/proxy.po
+share/mikutter/plugin/proxy/po/sr/proxy.po
+share/mikutter/plugin/proxy/po/vi/proxy.po
+share/mikutter/plugin/proxy/po/zh/proxy.po
+share/mikutter/plugin/proxy/po/zh_CN/proxy.po
+share/mikutter/plugin/proxy/po/zh_TW/proxy.po
+share/mikutter/plugin/proxy/proxy.rb
+share/mikutter/plugin/quickstep/.mikutter.yml
+share/mikutter/plugin/quickstep/complete.rb
+share/mikutter/plugin/quickstep/model/command.rb
+share/mikutter/plugin/quickstep/quickstep.rb
+share/mikutter/plugin/quoted_message/.mikutter.yml
+share/mikutter/plugin/quoted_message/quoted_message.rb
+share/mikutter/plugin/score/.mikutter.yml
+share/mikutter/plugin/score/model/emoji_note.rb
+share/mikutter/plugin/score/model/hyper_link_note.rb
+share/mikutter/plugin/score/model/text_note.rb
+share/mikutter/plugin/score/score.rb
+share/mikutter/plugin/score/select.rb
+share/mikutter/plugin/search/.mikutter.yml
+share/mikutter/plugin/search/model/search.rb
+share/mikutter/plugin/search/po/ar/search.po
+share/mikutter/plugin/search/po/de/search.po
+share/mikutter/plugin/search/po/el/search.po
+share/mikutter/plugin/search/po/en/search.po
+share/mikutter/plugin/search/po/eo/search.po
+share/mikutter/plugin/search/po/es/search.po
+share/mikutter/plugin/search/po/fr/search.po
+share/mikutter/plugin/search/po/ja_KS/search.po
+share/mikutter/plugin/search/po/nl_NL/search.po
+share/mikutter/plugin/search/po/pt_PT/search.po
+share/mikutter/plugin/search/po/ro_RO/search.po
+share/mikutter/plugin/search/po/ru/search.po
+share/mikutter/plugin/search/po/sr/search.po
+share/mikutter/plugin/search/po/vi/search.po
+share/mikutter/plugin/search/po/zh/search.po
+share/mikutter/plugin/search/po/zh_CN/search.po
+share/mikutter/plugin/search/po/zh_TW/search.po
+share/mikutter/plugin/search/search.rb
+share/mikutter/plugin/set_input/.mikutter.yml
+share/mikutter/plugin/set_input/po/ar/set_input.po
+share/mikutter/plugin/set_input/po/de/set_input.po
+share/mikutter/plugin/set_input/po/el/set_input.po
+share/mikutter/plugin/set_input/po/en/set_input.po
+share/mikutter/plugin/set_input/po/eo/set_input.po
+share/mikutter/plugin/set_input/po/es/set_input.po
+share/mikutter/plugin/set_input/po/fr/set_input.po
+share/mikutter/plugin/set_input/po/ja_KS/set_input.po
+share/mikutter/plugin/set_input/po/nl_NL/set_input.po
+share/mikutter/plugin/set_input/po/pt_PT/set_input.po
+share/mikutter/plugin/set_input/po/ro_RO/set_input.po
+share/mikutter/plugin/set_input/po/ru/set_input.po
+share/mikutter/plugin/set_input/po/sr/set_input.po
+share/mikutter/plugin/set_input/po/vi/set_input.po
+share/mikutter/plugin/set_input/po/zh/set_input.po
+share/mikutter/plugin/set_input/po/zh_CN/set_input.po
+share/mikutter/plugin/set_input/po/zh_TW/set_input.po
+share/mikutter/plugin/set_input/set_input.rb
+share/mikutter/plugin/set_view/.mikutter.yml
+share/mikutter/plugin/set_view/po/ar/set_view.po
+share/mikutter/plugin/set_view/po/de/set_view.po
+share/mikutter/plugin/set_view/po/el/set_view.po
+share/mikutter/plugin/set_view/po/en/set_view.po
+share/mikutter/plugin/set_view/po/eo/set_view.po
+share/mikutter/plugin/set_view/po/es/set_view.po
+share/mikutter/plugin/set_view/po/fr/set_view.po
+share/mikutter/plugin/set_view/po/ja_KS/set_view.po
+share/mikutter/plugin/set_view/po/nl_NL/set_view.po
+share/mikutter/plugin/set_view/po/pt_PT/set_view.po
+share/mikutter/plugin/set_view/po/ro_RO/set_view.po
+share/mikutter/plugin/set_view/po/ru/set_view.po
+share/mikutter/plugin/set_view/po/sr/set_view.po
+share/mikutter/plugin/set_view/po/vi/set_view.po
+share/mikutter/plugin/set_view/po/zh/set_view.po
+share/mikutter/plugin/set_view/po/zh_CN/set_view.po
+share/mikutter/plugin/set_view/po/zh_TW/set_view.po
+share/mikutter/plugin/set_view/set_view.rb
+share/mikutter/plugin/settings/.mikutter.yml
+share/mikutter/plugin/settings/basic_settings.rb
+share/mikutter/plugin/settings/listener.rb
+share/mikutter/plugin/settings/menu.rb
+share/mikutter/plugin/settings/phantom.rb
+share/mikutter/plugin/settings/po/ar/settings.po
+share/mikutter/plugin/settings/po/de/settings.po
+share/mikutter/plugin/settings/po/el/settings.po
+share/mikutter/plugin/settings/po/en/settings.po
+share/mikutter/plugin/settings/po/eo/settings.po
+share/mikutter/plugin/settings/po/es/settings.po
+share/mikutter/plugin/settings/po/fr/settings.po
+share/mikutter/plugin/settings/po/ja_KS/settings.po
+share/mikutter/plugin/settings/po/nl_NL/settings.po
+share/mikutter/plugin/settings/po/pt_PT/settings.po
+share/mikutter/plugin/settings/po/ro_RO/settings.po
+share/mikutter/plugin/settings/po/ru/settings.po
+share/mikutter/plugin/settings/po/sr/settings.po
+share/mikutter/plugin/settings/po/vi/settings.po
+share/mikutter/plugin/settings/po/zh/settings.po
+share/mikutter/plugin/settings/po/zh_CN/settings.po
+share/mikutter/plugin/settings/po/zh_TW/settings.po
+share/mikutter/plugin/settings/setting_dsl.rb
+share/mikutter/plugin/settings/settings.rb
+share/mikutter/plugin/settings/test_listener.rb
+share/mikutter/plugin/shortcutkey/.mikutter.yml
+share/mikutter/plugin/shortcutkey/po/ar/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/de/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/el/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/en/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/eo/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/es/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/fr/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/ja_KS/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/nl_NL/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/pt_PT/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/ro_RO/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/ru/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/sr/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/vi/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/zh/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/zh_CN/shortcutkey.po
+share/mikutter/plugin/shortcutkey/po/zh_TW/shortcutkey.po
+share/mikutter/plugin/shortcutkey/shortcutkey.rb
+share/mikutter/plugin/shortcutkey/shortcutkey_listview.rb
+share/mikutter/plugin/skin/.mikutter.yml
+share/mikutter/plugin/skin/model/image.rb
+share/mikutter/plugin/skin/skin.rb
+share/mikutter/plugin/skin_setting_gtk/.mikutter.yml
+share/mikutter/plugin/skin_setting_gtk/skin_setting_gtk.rb
+share/mikutter/plugin/smartthread/.mikutter.yml
+share/mikutter/plugin/smartthread/po/ar/smartthread.po
+share/mikutter/plugin/smartthread/po/de/smartthread.po
+share/mikutter/plugin/smartthread/po/el/smartthread.po
+share/mikutter/plugin/smartthread/po/en/smartthread.po
+share/mikutter/plugin/smartthread/po/eo/smartthread.po
+share/mikutter/plugin/smartthread/po/es/smartthread.po
+share/mikutter/plugin/smartthread/po/fr/smartthread.po
+share/mikutter/plugin/smartthread/po/ja_KS/smartthread.po
+share/mikutter/plugin/smartthread/po/nl_NL/smartthread.po
+share/mikutter/plugin/smartthread/po/pt_PT/smartthread.po
+share/mikutter/plugin/smartthread/po/ro_RO/smartthread.po
+share/mikutter/plugin/smartthread/po/ru/smartthread.po
+share/mikutter/plugin/smartthread/po/sr/smartthread.po
+share/mikutter/plugin/smartthread/po/vi/smartthread.po
+share/mikutter/plugin/smartthread/po/zh/smartthread.po
+share/mikutter/plugin/smartthread/po/zh_CN/smartthread.po
+share/mikutter/plugin/smartthread/po/zh_TW/smartthread.po
+share/mikutter/plugin/smartthread/smartthread.rb
+share/mikutter/plugin/sound/.mikutter.yml
+share/mikutter/plugin/sound/po/ar/sound.po
+share/mikutter/plugin/sound/po/de/sound.po
+share/mikutter/plugin/sound/po/el/sound.po
+share/mikutter/plugin/sound/po/en/sound.po
+share/mikutter/plugin/sound/po/eo/sound.po
+share/mikutter/plugin/sound/po/es/sound.po
+share/mikutter/plugin/sound/po/fr/sound.po
+share/mikutter/plugin/sound/po/ja_KS/sound.po
+share/mikutter/plugin/sound/po/nl_NL/sound.po
+share/mikutter/plugin/sound/po/pt_PT/sound.po
+share/mikutter/plugin/sound/po/ro_RO/sound.po
+share/mikutter/plugin/sound/po/ru/sound.po
+share/mikutter/plugin/sound/po/sr/sound.po
+share/mikutter/plugin/sound/po/vi/sound.po
+share/mikutter/plugin/sound/po/zh/sound.po
+share/mikutter/plugin/sound/po/zh_CN/sound.po
+share/mikutter/plugin/sound/po/zh_TW/sound.po
+share/mikutter/plugin/sound/sound.rb
+share/mikutter/plugin/spell/.mikutter.yml
+share/mikutter/plugin/spell/error.rb
+share/mikutter/plugin/spell/spell.rb
+share/mikutter/plugin/spell/struct.rb
+share/mikutter/plugin/tco/.mikutter.yml
+share/mikutter/plugin/tco/tco.rb
+share/mikutter/plugin/template
+share/mikutter/plugin/twitter_api_keys/.mikutter.yml
+share/mikutter/plugin/twitter_api_keys/twitter_api_keys.rb
+share/mikutter/plugin/uitranslator/.mikutter.yml
+share/mikutter/plugin/uitranslator/Gemfile
+share/mikutter/plugin/uitranslator/uitranslator.rb
+share/mikutter/plugin/web/.mikutter.yml
+share/mikutter/plugin/web/model/web.rb
+share/mikutter/plugin/web/web.rb
+share/mikutter/plugin/world/.mikutter.yml
+share/mikutter/plugin/world/error.rb
+share/mikutter/plugin/world/keep.rb
+share/mikutter/plugin/world/model/lost_world.rb
+share/mikutter/plugin/world/world.rb

Index: pkgsrc/net/mikutter/distinfo
diff -u pkgsrc/net/mikutter/distinfo:1.170 pkgsrc/net/mikutter/distinfo:1.171
--- pkgsrc/net/mikutter/distinfo:1.170  Sat Nov 30 09:20:57 2019
+++ pkgsrc/net/mikutter/distinfo        Fri Feb 21 02:53:19 2020
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.170 2019/11/30 09:20:57 tsutsui Exp $
+$NetBSD: distinfo,v 1.171 2020/02/21 02:53:19 tsutsui Exp $
 
-SHA1 (mikutter.3.9.8.tar.gz) = 6ecdbf5b97a14521e512841634a224a8ac6792ce
-RMD160 (mikutter.3.9.8.tar.gz) = 2874df33f0578e149c58c1fa13faa574935ca1ed
-SHA512 (mikutter.3.9.8.tar.gz) = 65a9eddf082c9d8782bcb7a705383e4a46523ed31b20ac13728e437eba60eb46587b9cdc38fe06504a80152729838f70720ea5e251d61fc4261ef0376255ba4e
-Size (mikutter.3.9.8.tar.gz) = 2758121 bytes
-SHA1 (patch-mikutter.rb) = 34f3ae812c5db53b448111ff0d7c36100e93adce
+SHA1 (mikutter.4.0.4.tar.gz) = c2cb9d66eb66d37a11f380d5ffe2a4c8b73bd758
+RMD160 (mikutter.4.0.4.tar.gz) = e7b7793dba3eba7bdd08abfcb7fccbe85d38ab6a
+SHA512 (mikutter.4.0.4.tar.gz) = 76ca387b2c0e3889a79796e78e0b4d9fa2ba5e542e46184c0cb21039601975d820013b593ca5a9a1868dd4b870360d73c496aae58aa5750f5f3cd6fec7ac3b93
+Size (mikutter.4.0.4.tar.gz) = 2321242 bytes
+SHA1 (patch-mikutter.rb) = 32883f84e9c628954d46744c07f1247b8fc731bc

Index: pkgsrc/net/mikutter/files/mikutter.sh.in
diff -u pkgsrc/net/mikutter/files/mikutter.sh.in:1.2 pkgsrc/net/mikutter/files/mikutter.sh.in:1.3
--- pkgsrc/net/mikutter/files/mikutter.sh.in:1.2        Sun Nov  6 07:49:38 2011
+++ pkgsrc/net/mikutter/files/mikutter.sh.in    Fri Feb 21 02:53:19 2020
@@ -1,6 +1,7 @@
 #! /bin/sh
 #
-# $NetBSD: mikutter.sh.in,v 1.2 2011/11/06 07:49:38 obache Exp $
+# $NetBSD: mikutter.sh.in,v 1.3 2020/02/21 02:53:19 tsutsui Exp $
 #
 
+export DISABLE_BUNDLER_SETUP=1
 exec @PREFIX@/share/mikutter/mikutter.rb "$@"

Index: pkgsrc/net/mikutter/patches/patch-mikutter.rb
diff -u pkgsrc/net/mikutter/patches/patch-mikutter.rb:1.7 pkgsrc/net/mikutter/patches/patch-mikutter.rb:1.8
--- pkgsrc/net/mikutter/patches/patch-mikutter.rb:1.7   Tue Feb 12 17:21:18 2019
+++ pkgsrc/net/mikutter/patches/patch-mikutter.rb       Fri Feb 21 02:53:19 2020
@@ -1,9 +1,9 @@
-$NetBSD: patch-mikutter.rb,v 1.7 2019/02/12 17:21:18 tsutsui Exp $
+$NetBSD: patch-mikutter.rb,v 1.8 2020/02/21 02:53:19 tsutsui Exp $
 
 - pkgsrc can handle location of ruby binary
   https://dev.mikutter.hachune.net/issues/889
 
---- mikutter.rb.orig   2019-02-11 07:32:53.000000000 +0000
+--- mikutter.rb.orig   2020-02-01 07:51:58.000000000 +0000
 +++ mikutter.rb
 @@ -1,7 +1,5 @@
 -#!/bin/sh
@@ -12,5 +12,5 @@ $NetBSD: patch-mikutter.rb,v 1.7 2019/02
 -exec ruby -x "$0" "$@"
 -#!ruby
  =begin rdoc
- = mikutter - the moest twitter client
- Copyright (C) 2009-2019 Toshiaki Asai
+ = mikutter - simple, powerful and moeful Mastodon client
+ Copyright (C) 2009-2020 Toshiaki Asai



Home | Main Index | Thread Index | Old Index