Skip to content

Commit

Permalink
update build files
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Sep 23, 2023
1 parent fa0339e commit c1eb15e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion WingetUI.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "WingetUI"
#define MyAppVersion "2.1.0-beta"
#define MyAppVersion "2.1.0"
#define MyAppPublisher "Martí Climent"
#define MyAppURL "https://github.com/marticliment/WingetUI"
#define MyAppExeName "WingetUI.exe"
Expand Down
4 changes: 2 additions & 2 deletions wingetui-version-file
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ StringFileInfo(
[
StringStruct(u'CompanyName', u'Martí Climent'),
StringStruct(u'FileDescription', u'WingetUI'),
StringStruct(u'FileVersion', u'2.1.0-beta'),
StringStruct(u'ProductVersion', u'2.1.0-beta'),
StringStruct(u'FileVersion', u'2.1.0'),
StringStruct(u'ProductVersion', u'2.1.0'),
StringStruct(u'InternalName', u'WingetUI'),
StringStruct(u'LegalCopyright', u'Martí Climent'),
StringStruct(u'OriginalFilename', u'wingetui.exe'),
Expand Down
2 changes: 1 addition & 1 deletion wingetui/Win.spec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import importlib, os
a = Analysis(['__init__.py'],
pathex=['Y:\WingetUI-Store\wingetui_bin'],
binaries=[('*.pyc', '.')],
datas=[('resources/', 'resources/'), ("components/", "components/"), ("lang/", "lang/"), ("data/*.pyc", "data/"), ("choco-cli/", "choco-cli/"), ("PackageManagers/", "PackageManagers/")],
datas=[('choco-cli/', 'choco-cli/'), ("components/", "components/"), ("data/*.pyc", "data/"), ("ExternalLibraries/*.pyc", "ExternalLibraries/"), ("Interface/", "Interface/"), ("lang/", "lang/"), ("PackageManagers/", "PackageManagers/"), ("resources/", "resources")],
hiddenimports=['pkg_resources.py2_warn', "win32gui", "cls"],
hookspath=[],
runtime_hooks=[],
Expand Down
2 changes: 1 addition & 1 deletion wingetui/data/contributors.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
{
"name": "marticliment",
"link": "https://github.com/marticliment",
"contributions": 1957
"contributions": 1974
},
{
"name": "ppvnf",
Expand Down
4 changes: 2 additions & 2 deletions wingetui/data/versions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 2.09
versionName = "2.1.0-beta"
version = 2.1
versionName = "2.1.0"
versionISS = "2.1.0.0"

0 comments on commit c1eb15e

Please sign in to comment.