You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add custom ProjectName.txt support, Add rename project title (saves into ProjectSettings/ProjectName.txt file), Add setting for taking projectname from Folder or ProjectName.txt override, or from Player settings ProductName field, REMOVED: Project folder rename (it was too dangerous, rather rename folder from Explorer if needed), fixed nullref if pressed F2 (rename) when recent grid was not selected, #BUILD
<CheckBoxx:Name="chkShowMissingFolderProjects"Content="Show projects that don't exist on disk"Foreground="{DynamicResource ThemeButtonForeground}"Checked="ChkShowMissingFolderProjects_CheckedChanged"Unchecked="ChkShowMissingFolderProjects_CheckedChanged"Margin="0,0,0,4"ToolTip="List in recent projects, even if the project folder is missing"HorizontalAlignment="Left"/>
912
912
<CheckBoxx:Name="chkAllowSingleInstanceOnly"Content="Allow single instance only"Foreground="{DynamicResource ThemeButtonForeground}"Checked="ChkAllowSingleInstanceOnly_CheckedChanged"Unchecked="ChkAllowSingleInstanceOnly_CheckedChanged"Margin="0,0,0,4"ToolTip="Activates already running instance, instead of starting new exe (not working if app is minized to taskbar)"HorizontalAlignment="Left"/>
913
-
<CheckBoxx:Name="chkEnableProjectRename"Content="Enable Project Rename F2 (Not recommended for beginners)"Foreground="{DynamicResource ThemeButtonForeground}"Margin="0,0,0,4"ToolTip="Can use F2 to rename project folders, Note that project will disappears from list on refresh, unless you open it (since its new path, not in unity recent projects registry)"Checked="ChkEnableProjectRename_Checked"Unchecked="ChkEnableProjectRename_Checked"HorizontalAlignment="Left"/>
913
+
<CheckBoxx:Name="chkEnableProjectRename"Content="Enable Project title rename (F2)"Foreground="{DynamicResource ThemeButtonForeground}"Margin="0,0,0,4"ToolTip="Renames project title only, DOES NOT rename project folder! New name is saved into ProjectSettings/ProjectName.txt"Checked="ChkEnableProjectRename_Checked"Unchecked="ChkEnableProjectRename_Checked"HorizontalAlignment="Left"/>
914
914
<CheckBoxx:Name="chkAskNameForQuickProject"Content="Ask name for New Project"Foreground="{DynamicResource ThemeButtonForeground}"Checked="ChkAskNameForQuickProject_Checked"Unchecked="ChkAskNameForQuickProject_Checked"Margin="0,0,0,4"ToolTip="If disabled, uses automatic quick project naming"HorizontalAlignment="Left"/>
915
915
<CheckBoxx:Name="chkStreamerMode"Content="Streamer Mode (hide project names and folders)"Foreground="{DynamicResource ThemeButtonForeground}"Margin="0,0,0,4"ToolTip="Hide project names and folders in main view"Checked="ChkStreamerMode_Checked"Unchecked="ChkStreamerMode_Checked"HorizontalAlignment="Left"/>
916
916
<CheckBoxx:Name="chkShowPlatform"Content="Show current target platform (if exists in .csproj)"Foreground="{DynamicResource ThemeButtonForeground}"Margin="0,0,0,4"ToolTip="Shows target platform column"Checked="ChkShowPlatform_Checked"Unchecked="ChkShowPlatform_Checked"HorizontalAlignment="Left"/>
<CheckBoxx:Name="chkRunAutomatically"Content="Run automatically on startup "Foreground="{DynamicResource ThemeButtonForeground}"Margin="0,0,0,4"ToolTip="Run automatically using startup registry key"HorizontalAlignment="Left"Checked="ChkRunAutomatically_Checked"Unchecked="ChkRunAutomatically_Checked"/>
939
939
<CheckBoxx:Name="chkRunAutomaticallyMinimized"Content="as minimized"Foreground="{DynamicResource ThemeButtonForeground}"Margin="0,0,0,4"ToolTip="Minimize to tray when started automatically"HorizontalAlignment="Left"Checked="ChkRunAutomaticallyMinimized_Checked"Unchecked="ChkRunAutomaticallyMinimized_Checked"/>
940
940
</StackPanel>
941
-
<StackPanelGrid.Row="3"Orientation="Horizontal">
941
+
<StackPanelOrientation="Horizontal">
942
942
<CheckBoxx:Name="chkUseCustomLastModified"Content="Date format"Foreground="{DynamicResource ThemeButtonForeground}"Margin="0,0,0,4"ToolTip="Last modified date format"HorizontalAlignment="Left"Checked="ChkUseCustomLastModified_Checked"Unchecked="ChkUseCustomLastModified_Checked"/>
943
943
<TextBoxx:Name="txtCustomDateTimeFormat"MinWidth="150"ToolTip="Default is dd/MM/yyyy HH:mm:ss"Padding="0,3,0,0"Margin="5,0,0,0"Text="dd/MM/yyyy HH:mm:ss"LostFocus="TxtCustomDateTimeFormat_LostFocus"TextChanged="TxtCustomDateTimeFormat_TextChanged" />
944
944
</StackPanel>
945
945
<CheckBoxx:Name="chkHumanFriendlyDateTime"Content="Use human friendly last modified"Foreground="{DynamicResource ThemeButtonForeground}"Margin="0,0,0,4"ToolTip="Last modified date format"HorizontalAlignment="Left"Checked="ChkHumanFriendlyDateTime_Checked"Unchecked="ChkHumanFriendlyDateTime_Checked"/>
<RadioButtonx:Name="radioProjNameFolder"Content="Folder or ProjectName.txt"Foreground="{DynamicResource ThemeButtonForeground}"Margin="4,0,0,0"GroupName="toggleGroupProjectName"IsChecked="True"Checked="RadioProjNameFolder_Checked"ToolTip="Take project name from project folder name OR ProjectName.txt if file exists in ProjectSettings/ folder"/>
949
+
<RadioButtonx:Name="radioProjNameProductName"Content="Settings ProductName"Foreground="{DynamicResource ThemeButtonForeground}"Margin="5,0,0,0"GroupName="toggleGroupProjectName"Checked="RadioProjNameProductName_Checked"ToolTip="Take project name from player settings ProductName field"/>
0 commit comments