-
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.
- Loading branch information
1 parent
65f98c1
commit 5c63b6e
Showing
7 changed files
with
455 additions
and
92 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,37 @@ | ||
# Compiled source # | ||
################### | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
*.so | ||
|
||
# Packages # | ||
############ | ||
# it's better to unpack these files and commit the raw source | ||
# git has its own built in compression methods | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Logs and databases # | ||
###################### | ||
*.log | ||
*.sql | ||
*.sqlite | ||
|
||
# OS generated files # | ||
###################### | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db |
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,36 @@ | ||
Function StrStrip | ||
Exch $R0 #string | ||
Exch | ||
Exch $R1 #in string | ||
Push $R2 | ||
Push $R3 | ||
Push $R4 | ||
Push $R5 | ||
StrLen $R5 $R0 | ||
StrCpy $R2 -1 | ||
IntOp $R2 $R2 + 1 | ||
StrCpy $R3 $R1 $R5 $R2 | ||
StrCmp $R3 "" +9 | ||
StrCmp $R3 $R0 0 -3 | ||
StrCpy $R3 $R1 $R2 | ||
IntOp $R2 $R2 + $R5 | ||
StrCpy $R4 $R1 "" $R2 | ||
StrCpy $R1 $R3$R4 | ||
IntOp $R2 $R2 - $R5 | ||
IntOp $R2 $R2 - 1 | ||
Goto -10 | ||
StrCpy $R0 $R1 | ||
Pop $R5 | ||
Pop $R4 | ||
Pop $R3 | ||
Pop $R2 | ||
Pop $R1 | ||
Exch $R0 | ||
FunctionEnd | ||
!macro StrStrip Str InStr OutVar | ||
Push '${InStr}' | ||
Push '${Str}' | ||
Call StrStrip | ||
Pop '${OutVar}' | ||
!macroend | ||
!define StrStrip '!insertmacro StrStrip' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
[Settings] | ||
NumFields=7 | ||
|
||
[Field 1] | ||
Type=Label | ||
Top=0 | ||
Left=0 | ||
Right=290 | ||
Bottom=30 | ||
Text=Please select a folder where the setup files can be saved. The setup files can be used later for offline installations. You can also select a mirror close to you from the drop-down list to improve download speed. Click Next to continue. | ||
|
||
[Field 2] | ||
Type=GroupBox | ||
Top=28 | ||
Left=0 | ||
Right=300 | ||
Bottom=65 | ||
Text=Download Folder | ||
|
||
[Field 3] | ||
Type=DirRequest | ||
Top=42 | ||
Left=10 | ||
Right=290 | ||
Bottom=55 | ||
State=C:\ | ||
|
||
[Field 4] | ||
Type=CheckBox | ||
Top=70 | ||
Left=0 | ||
Right=300 | ||
Bottom=80 | ||
Text=Download updated versions of locally stored setup files. | ||
State=1 | ||
|
||
[Field 5] | ||
Type=CheckBox | ||
Top=80 | ||
Left=0 | ||
Right=300 | ||
Bottom=90 | ||
Text=Delete the setup files after installation has completed. | ||
State=0 | ||
|
||
[Field 6] | ||
Type=GroupBox | ||
Top=94 | ||
Left=0 | ||
Right=300 | ||
Bottom=131 | ||
Text=Download Mirror | ||
|
||
[Field 7] | ||
Type=DropList | ||
ListItems=a|b|c | ||
Top=108 | ||
Left=10 | ||
Right=290 | ||
Bottom=3000 | ||
State="Randomly selected mirror (Recommended)" |
Oops, something went wrong.