forked from jrsoftware/issrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unicode Inno Setup: Unicode is now supported for the input source. Ad…
…ded UnicodeExample1.iss.
- Loading branch information
1 parent
976cafc
commit c3a102f
Showing
5 changed files
with
46 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
; -- UnicodeExample1.iss -- | ||
; Demonstrates some Unicode functionality. Requires Unicode Inno Setup. | ||
; | ||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES! | ||
|
||
[Setup] | ||
AppName=ɯɐɹƃoɹd ʎɯ | ||
AppVerName=ɯɐɹƃoɹd ʎɯ version 1.5 | ||
DefaultDirName={pf}\ɯɐɹƃoɹd ʎɯ | ||
DefaultGroupName=ɯɐɹƃoɹd ʎɯ | ||
UninstallDisplayIcon={app}\ƃoɹdʎɯ.exe | ||
Compression=lzma2 | ||
SolidCompression=yes | ||
OutputDir=userdocs:Inno Setup Examples Output | ||
|
||
[Files] | ||
Source: "MyProg.exe"; DestDir: "{app}"; DestName: "ƃoɹdʎɯ.exe" | ||
Source: "MyProg.chm"; DestDir: "{app}"; DestName: "ƃoɹdʎɯ.chm" | ||
Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme | ||
|
||
[Icons] | ||
Name: "{group}\ɯɐɹƃoɹd ʎɯ"; Filename: "{app}\ƃoɹdʎɯ.exe" | ||
|
||
[Code] | ||
function InitializeSetup: Boolean; | ||
begin | ||
MsgBox('ɯɐɹƃoɹd ʎɯ', mbInformation, MB_OK); | ||
Result := True; | ||
end; |
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
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