• R/O
  • SSH
  • HTTPS

bathyscaphe: Commit


Commit MetaInfo

Revision1812 (tree)
Time2015-03-01 21:40:36
Authortsawada2

Log Message

Welcome Window Fix

Change Summary

Incremental Difference

--- bathyscaphe/trunk/application/source/preferences/AppDefaults.m (revision 1811)
+++ bathyscaphe/trunk/application/source/preferences/AppDefaults.m (revision 1812)
@@ -67,6 +67,7 @@
6767 static NSString *const AppDefaultsPre243MouseDownTrackingConvertedKey = @"BSMatatabiStepIDPopupSettingConverted";
6868
6969 static NSString *const AppDefaults243IntroShownKey = @"BSIntroShown243";
70+static NSString *const AppDefaults244IntroShownKey = @"BSIntroShown244";
7071
7172 #pragma mark -
7273
@@ -258,7 +259,8 @@
258259 [NSNumber numberWithBool:NO], BSUserDebugEnabledKey,
259260 [NSNumber numberWithBool:NO], AppDefaultsPreDotInvaderThemeSettingsConvertedKey,
260261 [NSNumber numberWithBool:NO], AppDefaultsPre243MouseDownTrackingConvertedKey,
261- [NSNumber numberWithBool:NO], AppDefaults243IntroShownKey, NULL];
262+ [NSNumber numberWithBool:YES], AppDefaults243IntroShownKey,
263+ [NSNumber numberWithBool:NO], AppDefaults244IntroShownKey, NULL];
262264 [[self defaults] registerDefaults: dict];
263265
264266 // if (![[self defaults] boolForKey:AppDefaultsOldFontsAndColorsConvertedKey])
@@ -717,12 +719,12 @@
717719
718720 - (BOOL)isIntroShown
719721 {
720- return [[self defaults] boolForKey:AppDefaults243IntroShownKey];
722+ return [[self defaults] boolForKey:AppDefaults244IntroShownKey];
721723 }
722724
723725 - (void)setIntroShown:(BOOL)flag
724726 {
725- [[self defaults] setBool:flag forKey:AppDefaults243IntroShownKey];
727+ [[self defaults] setBool:flag forKey:AppDefaults244IntroShownKey];
726728 }
727729 @end
728730
--- bathyscaphe/trunk/changelog.txt (revision 1811)
+++ bathyscaphe/trunk/changelog.txt (revision 1812)
@@ -1,4 +1,6 @@
11 2015-03-01 tsawada2 <tsawada2@users.sourceforge.jp>
2+ * application/source/preferences/AppDefaults.m
3+ 2.4.4 初回起動時に一度だけようこそ画面を表示するようにした。
24 * application/Resources/ja.lproj/BathyScapheHelp/
35 ヘルプコンテンツの更新。
46 * application/Resources/ja.lproj/board_default.plist
Show on old repository browser