Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonylangsworth committed May 14, 2021
1 parent e8e085c commit 4c88f29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion load.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
this.plugin_name = "FCMS"
this.plugin_url = "https://github.com/anthonylangsworth/FCMS"
this.apikey_url = "https://fleetcarrier.space/my_carrier"
this.version_info = (0, 8, 0)
this.version_info = (0, 9, 0)
this.version = ".".join(map(str, this.version_info))
this.api_url = "https://fleetcarrier.space/api"

Expand Down
6 changes: 3 additions & 3 deletions wix/fcms.wxs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="Elite: Dangerous Fleet Carrier Management System (FCMS) Plug-in" Language="1033"
Version="0.8.0" Manufacturer="Anthony Langsworth"
Version="0.9.0" Manufacturer="Anthony Langsworth"
UpgradeCode="373e1e34-78d5-4657-93b8-2c028a8e9571">
<Package InstallerVersion="200" Compressed="yes" Comments="Windows Installer Package"/>
<Media Id="1" Cabinet="product.cab" EmbedCab="yes"/>
<Upgrade Id="373e1e34-78d5-4657-93b8-2c028a8e9571">
<UpgradeVersion Minimum="0.8.0" OnlyDetect="yes" Property="NEWERVERSIONDETECTED"/>
<UpgradeVersion Minimum="0.0.0" Maximum="0.8.0" IncludeMinimum="yes" IncludeMaximum="no" Property="OLDERVERSIONBEINGUPGRADED"/>
<UpgradeVersion Minimum="0.9.0" OnlyDetect="yes" Property="NEWERVERSIONDETECTED"/>
<UpgradeVersion Minimum="0.0.0" Maximum="0.9.0" IncludeMinimum="yes" IncludeMaximum="no" Property="OLDERVERSIONBEINGUPGRADED"/>
</Upgrade>
<Condition Message="A newer version of this software is already installed.">NOT NEWERVERSIONDETECTED</Condition>
<Property Id="ALLUSERS" Value="2" Secure="yes" />
Expand Down

0 comments on commit 4c88f29

Please sign in to comment.