Skip to content

Commit 1a2d67c

Browse files
committed
update
1 parent 870b648 commit 1a2d67c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

makeinstaller.iss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
[Setup]
44
AppName="PyWinStartup"
5-
AppVerName="PyWinStartup 0.1.0"
5+
AppVerName="PyWinStartup 0.1.1"
66
DefaultDirName="{pf}\PyWinStartup"
77
DefaultGroupName="PyWinStartup"
8-
AppVersion="0.1.0"
8+
AppVersion="0.1.1"
99
AppCopyright="Taehong Kim"
1010
AppPublisher="Taehong Kim"
1111
UninstallDisplayIcon="{app}\PyWinStartup.exe"
1212
Compression=lzma2/max
1313
SolidCompression=yes
1414
OutputDir="dist"
15-
OutputBaseFilename="PyWinStartup-0.1.0-Setup"
16-
; VersionInfoVersion="0.1.0"
17-
VersionInfoProductVersion="0.1.0"
15+
OutputBaseFilename="PyWinStartup-0.1.1-Setup"
16+
; VersionInfoVersion="0.1.1"
17+
VersionInfoProductVersion="0.1.1"
1818
VersionInfoCompany="Taehong Kim"
1919
VersionInfoCopyright="Taehong Kim"
2020
ArchitecturesInstallIn64BitMode="x64"

source/base/nateon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def run_patch(self):
7070
self.patch()
7171
else:
7272
command = 'powershell.exe Start-Process python nateon.py -Verb runAs'
73-
proc = subprocess.Popen(command, shell=True)
73+
proc = subprocess.call(command, shell=True)
7474
proc.communicate()
7575

7676

source/main.pyw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
__appname__ = 'PyWinStartup'
5-
__version__ = '0.1.0'
5+
__version__ = '0.1.1'
66
__author__ = 'Taehong Kim'
77
__email__ = '[email protected]'
88
__license__ = ''

0 commit comments

Comments
 (0)