• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

開発に使用するリポジトリ


Commit MetaInfo

Révisiona53b115a84dd4f8b1f5af9f5c5faf8c8c8484a6f (tree)
l'heure2014-11-23 13:57:08
AuteurKimura Youichi <kim.upsilon@bucy...>
CommiterKimura Youichi

Message de Log

プロフィール画面へのD&Dによるアイコン変更時に確認ダイアログを表示するように変更

Change Summary

Modification

--- a/OpenTween/Properties/Resources.Designer.cs
+++ b/OpenTween/Properties/Resources.Designer.cs
@@ -623,6 +623,15 @@ namespace OpenTween.Properties {
623623 }
624624
625625 /// <summary>
626+ /// アイコンを変更します。よろしいですか? に類似しているローカライズされた文字列を検索します。
627+ /// </summary>
628+ internal static string ChangeIconToolStripMenuItem_Confirm {
629+ get {
630+ return ResourceManager.GetString("ChangeIconToolStripMenuItem_Confirm", resourceCulture);
631+ }
632+ }
633+
634+ /// <summary>
626635 /// 更新履歴
627636 ///
628637 ///==== Ver 1.2.4-beta1(2014/xx/xx)
--- a/OpenTween/Properties/Resources.en.resx
+++ b/OpenTween/Properties/Resources.en.resx
@@ -1119,4 +1119,7 @@ Available service: {1}</value>
11191119 <data name="CheckRuntimeVersion_Error" xml:space="preserve">
11201120 <value>This software requires {0} or later version.</value>
11211121 </data>
1122+ <data name="ChangeIconToolStripMenuItem_Confirm" xml:space="preserve">
1123+ <value>Do you really want to change icon?</value>
1124+ </data>
11221125 </root>
\ No newline at end of file
--- a/OpenTween/Properties/Resources.resx
+++ b/OpenTween/Properties/Resources.resx
@@ -1177,4 +1177,7 @@
11771177 <data name="CheckRuntimeVersion_Error" xml:space="preserve">
11781178 <value>このソフトウェアは {0} 以降が必要です。</value>
11791179 </data>
1180+ <data name="ChangeIconToolStripMenuItem_Confirm" xml:space="preserve">
1181+ <value>アイコンを変更します。よろしいですか?</value>
1182+ </data>
11801183 </root>
\ No newline at end of file
--- a/OpenTween/Resources/ChangeLog.txt
+++ b/OpenTween/Resources/ChangeLog.txt
@@ -9,6 +9,7 @@
99 * CHG: プロフィール表示・編集でのエスケープ処理を twitter.com での挙動に合わせました
1010 - 名前および現在地に < > " の記号を使うことはできません (Twitter側で削除されます)
1111 - 自己紹介では < > " の記号はそれぞれ &lt; &gt; &quot; に変換した上で設定されます
12+ * CHG: プロフィール画面へのD&Dによるアイコン変更時に確認ダイアログを出すようにしました
1213 * FIX: 画像投稿時に、入力したツイートと画像URLの間に空白が2文字入ってしまう不具合を修正
1314 * FIX: 画像が紐付いていないTumblrのURLに対してサムネイル画像欄が表示され読み込みに失敗する不具合を修正
1415 * FIX: ESCキーで閉じられないダイアログが一部存在していた問題を修正
--- a/OpenTween/UserInfoDialog.cs
+++ b/OpenTween/UserInfoDialog.cs
@@ -715,6 +715,11 @@ namespace OpenTween
715715 {
716716 if (e.Data.GetDataPresent(DataFormats.FileDrop))
717717 {
718+ var ret = MessageBox.Show(this, Properties.Resources.ChangeIconToolStripMenuItem_Confirm,
719+ Application.ProductName, MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
720+ if (ret != DialogResult.OK)
721+ return;
722+
718723 string filename = ((string[])e.Data.GetData(DataFormats.FileDrop, false))[0];
719724 await this.DoChangeIcon(filename);
720725 }