Skip to content

Commit

Permalink
Updated wxs file and increased version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Weitzel committed Feb 8, 2019
1 parent 12da4d3 commit 721bc10
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TimeTracker/Variables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace TimeTracker
{
static class Variables
{
public static string version = "0.9.5.0";
public static string version = "0.9.6.0";
public static string activityPath = "";
public static string windowPath = "";
public static IDictionary<string, DateTime> windowsLastSeen = new Dictionary<string, DateTime>();
Expand Down
7 changes: 6 additions & 1 deletion TimeTracker/WiX Installer/TimeTrackerSetup.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" UpgradeCode="94ed6562-d6d5-4282-9c23-c843b86f80db" Version="0.9.5" Language="1033" Name="TimeTracker" Manufacturer="Robin Weitzel">
<Product Id="*" UpgradeCode="94ed6562-d6d5-4282-9c23-c843b86f80db" Version="0.9.6" Language="1033" Name="TimeTracker" Manufacturer="Robin Weitzel">
<Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" InstallPrivileges="limited" />
<MajorUpgrade DowngradeErrorMessage="A later version of TimeTracker is already installed. Setup will now exit." />
<Media Id="1" Cabinet="TimeTracker.cab" EmbedCab="yes" />
Expand Down Expand Up @@ -209,6 +209,11 @@
<File Id="CHARTJS_PLUGIN_ZOOM.JS" Name="chartjs-plugin-zoom.js" Source="..\bin\x64\Debug\Resources\chartjs-plugin-zoom.js" />
<File Id="HAMMER.MIN.JS" Name="hammer.min.js" Source="..\bin\x64\Debug\Resources\hammer.min.js" />
<File Id="CHART.BUNDLE.MIN.JS" Name="Chart.bundle.min.js" Source="..\bin\x64\Debug\Resources\Chart.bundle.min.js" />
<File Id="BOOTSTRAP.MIN.CSS" Name="bootstrap.min.css" Source="..\bin\x64\Debug\Resources\bootstrap.min.css" />
<File Id="DATERANGEPICKER.CSS" Name="daterangepicker.css" Source="..\bin\x64\Debug\Resources\daterangepicker.css" />
<File Id="DATERANGEPICKER.JS" Name="daterangepicker.js" Source="..\bin\x64\Debug\Resources\daterangepicker.js" />
<File Id="JQUERY.MIN.JS" Name="jquery.min.js" Source="..\bin\x64\Debug\Resources\jquery.min.js" />
<File Id="MOMENT.MIN.JS" Name="moment.min.js" Source="..\bin\x64\Debug\Resources\moment.min.js" />
</Component>
</DirectoryRef>
<DirectoryRef Id="fontawesomeFolder">
Expand Down

0 comments on commit 721bc10

Please sign in to comment.