File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public static class Settings
2222 public static bool AutoBreakLine = true ;
2323 public static string Locale = Locales . DefaultLocale ;
2424 public static bool EnableFormLevelBuffering = true ;
25- public static bool DarkTheme = true ;
25+ public static bool DarkTheme = false ;
2626
2727 public static int LoreEntriesPerPage { get { return _loreEntriesPerPage > 0 ? Math . Max ( _loreEntriesPerPage , 10 ) : int . MaxValue ; } }
2828 public static string LoreEntriesPerPageSerialize
Original file line number Diff line number Diff line change @@ -44,8 +44,11 @@ static int Main(string[] args)
4444 {
4545 // Check last version
4646 VersionNumber appVersion ;
47- if ( Backyard . GetAppVersion ( out appVersion ) && AppSettings . BackyardLink . LastVersion != appVersion )
48- AppSettings . BackyardLink . Enabled = false ; // Do not auto-connect to newer versions
47+ if ( Backyard . GetAppVersion ( out appVersion )
48+ && ( AppSettings . BackyardLink . LastVersion . Major != appVersion . Major || AppSettings . BackyardLink . LastVersion . Minor != appVersion . Minor ) )
49+ {
50+ AppSettings . BackyardLink . Enabled = false ; // Do not auto-connect to newer versions (ignoring beta builds)
51+ }
4952 else
5053 {
5154 if ( Backyard . EstablishConnection ( ) == Backyard . Error . NoError )
You can’t perform that action at this time.
0 commit comments