Skip to content

Commit

Permalink
Build update
Browse files Browse the repository at this point in the history
Build script moved, so updated.
Updated version numbers
  • Loading branch information
TCNOco committed Jul 6, 2020
1 parent da85957 commit 04ed59f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -352,5 +352,5 @@ MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/
*.zip
NSIS/TcNo Account Switcher - Installer x64.exe
NSIS/TcNo Account Switcher - Installer x32.exe
other/NSIS/TcNo Account Switcher - Installer x64.exe
other/NSIS/TcNo Account Switcher - Installer x32.exe
2 changes: 1 addition & 1 deletion TcNo-Account-Switcher/TcNo-Acc-Switcher/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public partial class MainWindow : Window
{
private Globals _globals = Globals.LoadExisting(Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location));
//readonly int steam_version = 3000;
readonly int steam_version = 3001;
readonly int steam_version = 3002;
readonly int steam_trayversion = 1000;
public MainWindow()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@ public partial class MainWindow
MainWindowViewModel MainViewmodel = new MainWindowViewModel();
private TrayUsers trayUsers = new TrayUsers();

//int version = 1;
private readonly Color _darkGreen = Color.FromRgb(5, 51, 5);
private readonly Color _defaultGray = Color.FromRgb(51, 51, 51);


// Settings will load later. Just defined here.
private const int SteamVersion = 3001;
private const int SteamVersion = 3002;
private UserSettings _persistentSettings = new UserSettings();
private readonly SolidColorBrush _vacRedBrush = new SolidColorBrush(Color.FromRgb(255,41,58));

Expand Down
Original file line number Diff line number Diff line change
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.0.0.1")]
[assembly: AssemblyFileVersion("0.0.0.1")]
[assembly: AssemblyVersion("3.0.0.2")]
[assembly: AssemblyFileVersion("3.0.0.2")]
Binary file removed other/NSIS/TcNo Account Switcher - Installer x64.exe
Binary file not shown.
8 changes: 4 additions & 4 deletions other/NSIS/nsis-build-x64.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
!define LNK_NAME "TcNo Account Switcher.lnk"
!define COMP_NAME "TechNobo (Wesley Pyburn)"
!define WEB_SITE "https://tcno.co"
!define VERSION "3.0.0.1"
!define VERSION "3.0.0.2"
!define COPYRIGHT "TechNobo (Wesley Pyburn) © 2020"
!define DESCRIPTION "TcNo Account Switcher"
!define LICENSE_TXT "..\LICENSE"
!define LICENSE_TXT "..\..\LICENSE"
!define MAIN_APP_EXE "TcNo Account Switcher.exe"
!define INSTALL_TYPE "SetShellVarContext current"
!define REG_ROOT "HKCU"
Expand All @@ -42,8 +42,8 @@ VIAddVersionKey "FileVersion" "${VERSION}"
!define INSTALLER_NAME "TcNo Account Switcher - Installer x64.exe"
;;;;!define INSTALLER_NAME "TcNo Account Switcher - Installer x32.exe"

!define INSTALLER_FILES "..\TCNO-Acc-Switcher-CSharp-WPF\Build\Release\TcNo.Account.Switcher.x64\*"
;;;;!define INSTALLER_FILES "..\TCNO-Acc-Switcher-CSharp-WPF\Build\Release\TcNo.Account.Switcher.x32\*"
!define INSTALLER_FILES "..\..\TcNo-Account-Switcher\Build\Release\TcNo.Account.Switcher.x64\*"
;;;;!define INSTALLER_FILES "..\..\TcNo-Account-Switcher\Build\Release\TcNo.Account.Switcher.x32\*"

!define INSTALL_DIR "$PROGRAMFILES64\TcNo Account Switcher"
;;;;!define INSTALL_DIR "$PROGRAMFILES\TcNo Account Switcher"
Expand Down
8 changes: 4 additions & 4 deletions other/NSIS/nsis-build-x86.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
!define LNK_NAME "TcNo Account Switcher.lnk"
!define COMP_NAME "TechNobo (Wesley Pyburn)"
!define WEB_SITE "https://tcno.co"
!define VERSION "3.0.0.1"
!define VERSION "3.0.0.2"
!define COPYRIGHT "TechNobo (Wesley Pyburn) © 2020"
!define DESCRIPTION "TcNo Account Switcher"
!define LICENSE_TXT "..\LICENSE"
!define LICENSE_TXT "..\..\LICENSE"
!define MAIN_APP_EXE "TcNo Account Switcher.exe"
!define INSTALL_TYPE "SetShellVarContext current"
!define REG_ROOT "HKCU"
Expand All @@ -42,8 +42,8 @@ VIAddVersionKey "FileVersion" "${VERSION}"
;;;;!define INSTALLER_NAME "TcNo Account Switcher - Installer x64.exe"
!define INSTALLER_NAME "TcNo Account Switcher - Installer x32.exe"

;;;;!define INSTALLER_FILES "..\TCNO-Acc-Switcher-CSharp-WPF\Build\Release\TcNo.Account.Switcher.x64\*"
!define INSTALLER_FILES "..\TCNO-Acc-Switcher-CSharp-WPF\Build\Release\TcNo.Account.Switcher.x32\*"
;;;;!define INSTALLER_FILES "..\..\TcNo-Account-Switcher\Build\Release\TcNo.Account.Switcher.x64\*"
!define INSTALLER_FILES "..\..\TcNo-Account-Switcher\Build\Release\TcNo.Account.Switcher.x32\*"

;;;;!define INSTALL_DIR "$PROGRAMFILES64\TcNo Account Switcher"
!define INSTALL_DIR "$PROGRAMFILES\TcNo Account Switcher"
Expand Down

0 comments on commit 04ed59f

Please sign in to comment.