Skip to content

Commit 3025608

Browse files
committed
better default settings (window size, single instance, humanfriendly dates, override 40 max projects)
1 parent a5eadf4 commit 3025608

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

UnityLauncherPro/Properties/Settings.Designer.cs

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnityLauncherPro/Properties/Settings.settings

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Profiles />
44
<Settings>
55
<Setting Name="windowWidth" Type="System.Int32" Scope="User">
6-
<Value Profile="(Default)">600</Value>
6+
<Value Profile="(Default)">880</Value>
77
</Setting>
88
<Setting Name="windowHeight" Type="System.Int32" Scope="User">
99
<Value Profile="(Default)">650</Value>
@@ -33,7 +33,7 @@
3333
<Value Profile="(Default)">False</Value>
3434
</Setting>
3535
<Setting Name="AllowSingleInstanceOnly" Type="System.Boolean" Scope="User">
36-
<Value Profile="(Default)">False</Value>
36+
<Value Profile="(Default)">True</Value>
3737
</Setting>
3838
<Setting Name="preferredVersion" Type="System.String" Scope="User">
3939
<Value Profile="(Default)" />
@@ -63,7 +63,7 @@
6363
<Value Profile="(Default)">theme.ini</Value>
6464
</Setting>
6565
<Setting Name="enablePlatformSelection" Type="System.Boolean" Scope="User">
66-
<Value Profile="(Default)">False</Value>
66+
<Value Profile="(Default)">True</Value>
6767
</Setting>
6868
<Setting Name="runAutomatically" Type="System.Boolean" Scope="User">
6969
<Value Profile="(Default)">False</Value>
@@ -75,7 +75,7 @@
7575
<Value Profile="(Default)">dd/MM/yyyy HH:mm:ss</Value>
7676
</Setting>
7777
<Setting Name="useHumandFriendlyLastModified" Type="System.Boolean" Scope="User">
78-
<Value Profile="(Default)">False</Value>
78+
<Value Profile="(Default)">True</Value>
7979
</Setting>
8080
<Setting Name="recentColumnsOrder" Type="System.Int32[]" Scope="User">
8181
<Value Profile="(Default)" />
@@ -127,10 +127,10 @@
127127
&lt;ArrayOfString xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" /&gt;</Value>
128128
</Setting>
129129
<Setting Name="override40ProjectCount" Type="System.Boolean" Scope="User">
130-
<Value Profile="(Default)">False</Value>
130+
<Value Profile="(Default)">True</Value>
131131
</Setting>
132132
<Setting Name="maxProjectCount" Type="System.Int32" Scope="User">
133-
<Value Profile="(Default)">40</Value>
133+
<Value Profile="(Default)">50</Value>
134134
</Setting>
135135
</Settings>
136136
</SettingsFile>

UnityLauncherPro/Tools.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public static void AddProjectToHistory(string projectPath)
204204
Properties.Settings.Default.projectPaths.RemoveAt(Properties.Settings.Default.projectPaths.Count - 1);
205205
}
206206

207-
Console.WriteLine("AddProjectToHistory, count: " + Properties.Settings.Default.projectPaths.Count);
207+
//Console.WriteLine("AddProjectToHistory, count: " + Properties.Settings.Default.projectPaths.Count);
208208

209209
// TODO no need to save everytime?
210210
Properties.Settings.Default.Save();

0 commit comments

Comments
 (0)