Skip to content

Commit

Permalink
update build files
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Apr 28, 2023
1 parent c4e0b5f commit 2d7effa
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 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 "1.7.0-beta"
#define MyAppVersion "1.7.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'1.7.0-beta'),
StringStruct(u'ProductVersion', u'1.7.0-beta'),
StringStruct(u'FileVersion', u'1.7.0'),
StringStruct(u'ProductVersion', u'1.7.0'),
StringStruct(u'InternalName', u'WingetUI'),
StringStruct(u'LegalCopyright', u'Martí Climent'),
StringStruct(u'OriginalFilename', u'wingetui.exe'),
Expand Down
6 changes: 3 additions & 3 deletions wingetui/Win.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import importlib, os

a = Analysis(['__init__.py'],
pathex=['Y:\WingetUI-Store\wingetui_bin'],
binaries=[('globals.pyc', '.'), ('mainWindow.pyc', '.'), ('scoopHelpers.pyc', '.'), ('storeEngine.pyc', '.'), ('tools.pyc', '.'), ('wingetHelpers.pyc', '.'), ("uiSections.pyc", "."), ("customWidgets.pyc", "."), ("languages.pyc", "."), ("chocoHelpers.pyc", ".")],
datas=[('resources/', 'resources/'), ("winget-cli/", "winget-cli/"), ("components/", "components/"), ("lang/", "lang/"), ("data/", "data/"), ("choco-cli/", "choco-cli/")],
binaries=[('*.pyc', '.')],
datas=[('resources/', 'resources/'), ("winget-cli/", "winget-cli/"), ("components/", "components/"), ("lang/", "lang/"), ("data/", "data/"), ("choco-cli/", "choco-cli/"), ("PackageManagers/", "PackageManagers/")],
hiddenimports=['pkg_resources.py2_warn', "win32gui"],
hookspath=[],
runtime_hooks=[],
excludes=['eel', 'tkinter', "PyQt5", "PySide2", "pygame", "numpy", "matplotlib"],
excludes=['eel', 'tkinter', "PyQt5", "PySide2", "pygame", "numpy", "matplotlib", "wingetui"],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
Expand Down
2 changes: 1 addition & 1 deletion wingetui/data/contributors.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
{
"name": "marticliment",
"link": "https://github.com/marticliment",
"contributions": 1254
"contributions": 1277
},
{
"name": "ppvnf",
Expand Down
4 changes: 2 additions & 2 deletions wingetui/versions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 1.69
versionName = "1.7.0-beta"
version = 1.7
versionName = "1.7.0"
versionISS = "1.7.0.0"

0 comments on commit 2d7effa

Please sign in to comment.