Skip to content

Commit

Permalink
Increment to 0.11.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Jbob committed Jan 7, 2017
1 parent 40ea7d0 commit 14355d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions MSI/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--
FOG Service : A computer management client for the FOG Project
Copyright (C) 2014-2016 FOG Project
Copyright (C) 2014-2017 FOG Project
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
Expand All @@ -20,14 +20,14 @@
-->

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension">
<Product Id="*" Name="FOG Service" Language="1033" Version="0.11.7" UpgradeCode="1CCFDEAF-53E9-43AC-AE18-F9F86CEFA4EA"
<Product Id="*" Name="FOG Service" Language="1033" Version="0.11.8" UpgradeCode="1CCFDEAF-53E9-43AC-AE18-F9F86CEFA4EA"
Manufacturer="FOG">
<Package Description="FOG Service" Comments="A client for the FOG project" InstallerVersion="300" Compressed="yes"
InstallScope="perMachine" />
<!-- Remove old versions -->
<Upgrade Id="1CCFDEAF-53E9-43AC-AE18-F9F86CEFA4EA">
<UpgradeVersion OnlyDetect="yes" Minimum="0.0.0" Property="NEWERVERSIONDETECTED" IncludeMinimum="no" />
<UpgradeVersion OnlyDetect="no" Minimum="0.0.0" Maximum="0.11.6" Property="OLDERVERSIONBEINGUPGRADED"
<UpgradeVersion OnlyDetect="no" Minimum="0.0.0" Maximum="0.11.7" Property="OLDERVERSIONBEINGUPGRADED"
IncludeMinimum="no" IncludeMaximum="yes" MigrateFeatures="yes" />
</Upgrade>
<InstallExecuteSequence>
Expand Down
4 changes: 2 additions & 2 deletions UniversalInstaller/Helper.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* FOG Service : A computer management client for the FOG Project
* Copyright (C) 2014-2015 FOG Project
* Copyright (C) 2014-2017 FOG Project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -28,7 +28,7 @@ namespace FOG
public static class Helper
{
private const string LogName = "Installer";
public const string ClientVersion = "0.11.7";
public const string ClientVersion = "0.11.8";

public static IInstall Instance { get; }

Expand Down

0 comments on commit 14355d8

Please sign in to comment.