-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- welcome and license messages, when referencing files to use the contents of, were not displayed properly if the file was given relative to the location of the sfxpp file itself. this is now fixed. - files can now be given http[s] source paths and they will be downloaded when the installer runs. - related to that, there was a bug with the downloader; it could corrupt files by potentially writing more data than was received. this is now fixed - added GetFileNameFromPath js function, which finds the file name portion of a full path and returns a string containing only that. - the TextFileReadLn js function could potentially return bad data, in addition to leaving the trailing \n. this is now fixed.
- Loading branch information
1 parent
17b8e9c
commit 8c17ce6
Showing
10 changed files
with
357 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,6 +143,8 @@ class IExtractor | |
|
||
ER_DONE, | ||
|
||
ER_MUSTDOWNLOAD, | ||
|
||
ER_UNKNOWN_ERROR | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.