Skip to content

Commit

Permalink
#14 UI TR2 Decoupling
Browse files Browse the repository at this point in the history
- Uprevved to 0.9.6.
- Loosened UI ties to TR2 in preparation for TR3.
  • Loading branch information
lahm86 committed Mar 15, 2022
1 parent c895655 commit 42b2ab7
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion TR2RandoTracker/Model/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public bool ShowTitle
}
}

private const string _defaultTitle = "TR II Randomizer";
private const string _defaultTitle = "TR Randomizer";
private string _title;
public string Title
{
Expand Down
12 changes: 6 additions & 6 deletions TR2RandoTracker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("TR2 Rando Tracker")]
[assembly: AssemblyDescription("Tracks completed levels when playing TR2 Randomizer")]
[assembly: AssemblyTitle("TR Rando Tracker")]
[assembly: AssemblyDescription("Tracks completed levels when playing TR Randomizer")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Tomp Community")]
[assembly: AssemblyProduct("TR2RandoTracker v0.9.5")]
[assembly: AssemblyCopyright("Copyright © Tomp Community 2021")]
[assembly: AssemblyProduct("TRRandoTracker v0.9.6")]
[assembly: AssemblyCopyright("Copyright © Tomp Community 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.9.5.0")]
[assembly: AssemblyFileVersion("0.9.5.0")]
[assembly: AssemblyVersion("0.9.6.0")]
[assembly: AssemblyFileVersion("0.9.6.0")]
2 changes: 1 addition & 1 deletion TR2RandoTracker/TR2RandoTracker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ProjectGuid>{2116FCEA-A81B-4E86-8798-22DCFD2FDBB6}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>TR2RandoTracker</RootNamespace>
<AssemblyName>TR2RandoTracker</AssemblyName>
<AssemblyName>TRRandoTracker</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
Expand Down
2 changes: 1 addition & 1 deletion TR2RandoTracker/Windows/AboutWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
WindowStartupLocation="CenterScreen"
ShowInTaskbar="False"
Loaded="Window_Loaded"
Title="About TR2 Rando Tracker" Height="250" Width="550">
Title="About TR Rando Tracker" Height="250" Width="550">
<Grid Margin="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150"/>
Expand Down
4 changes: 2 additions & 2 deletions TR2RandoTracker/Windows/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Background="{Binding Background}"
WindowStartupLocation="Manual"
Icon="..\Resources\clipboard.ico"
Title="TR2 Rando Tracker" Height="486" Width="300" Left="0" Top="0">
Title="TR Rando Tracker" Height="486" Width="300" Left="0" Top="0">

<Window.ContextMenu>
<ContextMenu>
Expand Down Expand Up @@ -42,7 +42,7 @@
Header="Check for Updates"
Click="UpdatesMenuItem_Click"/>
<MenuItem
Header="About TR2 Rando Tracker"
Header="About TR Rando Tracker"
Click="AboutMenuItem_Click"/>
<Separator/>
<MenuItem
Expand Down
2 changes: 1 addition & 1 deletion TR2RandoTracker/Windows/MessageWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
ShowInTaskbar="False"
Loaded="Window_Loaded"
SizeToContent="Height"
Title="TR2 Rando Tracker" Height="200" Width="420">
Title="TR Rando Tracker" Height="200" Width="420">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
Expand Down
2 changes: 1 addition & 1 deletion TR2RandoTracker/Windows/UpdateAvailableWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<TextBlock Grid.ColumnSpan="2"
Margin="0,0,0,5"
Text="A new version of TR2 Rando Tracker is available."/>
Text="A new version of TR Rando Tracker is available."/>

<TextBlock Grid.Row="1"
Margin="20,0,10,3"
Expand Down

0 comments on commit 42b2ab7

Please sign in to comment.