Skip to content

Commit 37d011b

Browse files
BetaLeafBetaLeaf
BetaLeaf
authored and
BetaLeaf
committed
Update
Fixed an issue that prevented the option "Hide "Portable " in app names" from working on apps created with this software without needing to add a space between the app name and "Portable". This is now done automatically so this feature works as intended.
1 parent 1fa5ab8 commit 37d011b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Source/App/AppInfo/appinfo.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Format]
22
Type=PortableApps.comFormat
3-
Version=3.0
3+
Version=3.3
44

55
[Details]
66
Name=PortableApps App Creation Wizard
@@ -22,5 +22,5 @@ Icons=1
2222
Start=PortableAppsAppCreationWizard.exe
2323
2424
[Version]
25-
DisplayVersion=0.1 Dev Test 1
26-
PackageVersion=0.1.0.0
25+
DisplayVersion=1.0.0.1
26+
PackageVersion=1.0.0.1
Binary file not shown.

Source/Other/Source/PortableApps App Creation Wizard.au3

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Func CreateApp()
5757
DirCreate($path & $appnameportable & "\Other\Help\Images")
5858
DirCreate($path & $appnameportable & "\Other\Source\")
5959
MsgBox(0, $wintitle, "Project Folders Created. Please move the PortableApp into the Project Folder at " & @CRLF & $path & $appnameportable & "\App\" & $appname & @CRLF & @CRLF & "An icon will be extracted automatically if the ProgramExecutable exists upon submission. Otherwise, you will also want to make/extract the icon at this time. ")
60-
ShellExecute($path & $appnameportable & "\App\" & $appname,"","","open")
60+
ShellExecute($path & $appnameportable & "\App\" & $appname, "", "", "open")
6161

6262
;Step 2. Collect appinfo from user.
6363
#Region ### START Koda GUI section ### Form=D:\OneDrive\Documents\PortableApp_Creator.kxf
@@ -137,7 +137,7 @@ Func CreateApp()
137137
Global $appinfopath = $path & $appnameportable & "\App\AppInfo\appinfo.ini"
138138
IniWrite($appinfopath, "Format", "Type", "PortableApps.comFormat")
139139
IniWrite($appinfopath, "Format", "Version", "3.0" & @CRLF)
140-
IniWrite($appinfopath, "Details", "Name", $appnameportable)
140+
IniWrite($appinfopath, "Details", "Name", $appname & " Portable")
141141
IniWrite($appinfopath, "Details", "AppID", GUICtrlRead($AppIDInput))
142142
IniWrite($appinfopath, "Details", "Publisher", GUICtrlRead($PublisherInput))
143143
IniWrite($appinfopath, "Details", "Homepage", GUICtrlRead($HomepageInput))
@@ -265,10 +265,10 @@ Func CreateApp()
265265
GetIcon()
266266
ShellExecuteWait($PortableAppsLauncherCreatorPath, $path & $appnameportable)
267267
Global $runpath = IniRead($appinfopath, "Control", "Start", "")
268-
If FileExists($path & $appnameportable & "\" & $runpath) Then
268+
If FileExists($path & $appnameportable & "\" & $runpath) Then
269269
MsgBox(0, $wintitle, "Success.")
270-
Else
271-
MsgBox(0, $wintitle, "Something went wrong. Click OK to check the log.")
270+
Else
271+
MsgBox(0, $wintitle, "Something went wrong. Click OK to check the log.")
272272
ShellExecute($path & "PortableApps.comLauncher\Data\PortableApps.comLauncherGeneratorLog.txt")
273273
EndIf
274274
EndFunc ;==>CreateApp

0 commit comments

Comments
 (0)