File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
MyProductName = "SSHFS-Win"
2
2
MyCompanyName = "Navimatics LLC"
3
3
MyDescription = "SSHFS for Windows"
4
+ MyProductVersion = "2020"
4
5
MyVersion = 3.5.$(shell date '+% y% j')
5
6
ifeq ($(shell uname -m) ,x86_64)
6
7
MyArch = x64
@@ -39,6 +40,7 @@ $(Status)/wix: $(Status)/sshfs-win
39
40
-dMyProductName=$(MyProductName ) \
40
41
-dMyCompanyName=$(MyCompanyName ) \
41
42
-dMyDescription=$(MyDescription ) \
43
+ -dMyProductVersion=$(MyProductVersion ) \
42
44
-dMyVersion=$(MyVersion ) \
43
45
-dMyArch=$(MyArch ) \
44
46
-o " $( shell cygpath -aw $( WixDir) /sshfs-win.wixobj) " \
@@ -50,6 +52,7 @@ $(Status)/wix: $(Status)/sshfs-win
50
52
-dMyProductName=$(MyProductName ) \
51
53
-dMyCompanyName=$(MyCompanyName ) \
52
54
-dMyDescription=$(MyDescription ) \
55
+ -dMyProductVersion=$(MyProductVersion ) \
53
56
-dMyVersion=$(MyVersion ) \
54
57
-dMyArch=$(MyArch ) \
55
58
-o " $( shell cygpath -aw $( WixDir) /root.wixobj) " \
Original file line number Diff line number Diff line change 17
17
<Wix xmlns =" http://schemas.microsoft.com/wix/2006/wi" >
18
18
<Product
19
19
Id =" *"
20
- Name =" $(var.MyProductName) ($(var.MyArch))"
20
+ Name =" $(var.MyProductName) $(var.MyProductVersion) ($(var.MyArch))"
21
21
Manufacturer =" $(var.MyCompanyName)"
22
22
Version =" $(var.MyVersion)"
23
23
Language =" 1033"
24
24
UpgradeCode =" $(var.UpgradeCode)" >
25
25
26
26
<Package
27
- Description =" $(var.MyProductName) ($(var.MyArch)) - $(var.MyDescription)"
27
+ Description =" $(var.MyProductName) $(var.MyProductVersion) ($(var.MyArch)) - $(var.MyDescription)"
28
28
InstallerVersion =" 200"
29
29
Compressed =" yes"
30
30
InstallScope =" perMachine" />
165
165
<Feature
166
166
Id =" F.Main"
167
167
Level =" 1"
168
- Title =" $(var.MyProductName) ( $(var.MyArch)) $(var.MyVersion )"
168
+ Title =" $(var.MyProductName) $(var.MyProductVersion) ( $(var.MyArch) )"
169
169
Description =" $(var.MyDescription)"
170
170
Display =" expand"
171
171
ConfigurableDirectory =" INSTALLDIR"
You can’t perform that action at this time.
0 commit comments