├── 7z.dll ├── 7z.exe ├── FilesToInstall ├── FSCapture.exe ├── FSCaptureHelp.chm ├── FSCrossHair.exe ├── FSFocus.exe ├── FSLogo.png ├── FSRecorder.exe ├── LicenseAgreement.txt └── uninst.exe ├── NSIS ├── Bin │ ├── GenPat.exe │ ├── LibraryLocal.exe │ ├── MakeLangId.exe │ ├── RegTool.bin │ └── zip2exe.exe ├── COPYING ├── Contrib │ ├── Graphics │ │ ├── Checks │ │ │ ├── big.bmp │ │ │ ├── classic-cross.bmp │ │ │ ├── classic.bmp │ │ │ ├── colorful.bmp │ │ │ ├── grey-cross.bmp │ │ │ ├── grey.bmp │ │ │ ├── modern.bmp │ │ │ ├── red-round.bmp │ │ │ ├── red.bmp │ │ │ ├── simple-round.bmp │ │ │ ├── simple-round2.bmp │ │ │ └── simple.bmp │ │ ├── Header │ │ │ ├── nsis-r.bmp │ │ │ ├── nsis.bmp │ │ │ ├── orange-nsis.bmp │ │ │ ├── orange-r-nsis.bmp │ │ │ ├── orange-r.bmp │ │ │ ├── orange-uninstall-nsis.bmp │ │ │ ├── orange-uninstall-r-nsis.bmp │ │ │ ├── orange-uninstall-r.bmp │ │ │ ├── orange-uninstall.bmp │ │ │ ├── orange.bmp │ │ │ └── win.bmp │ │ ├── Icons │ │ │ ├── arrow-install.ico │ │ │ ├── arrow-uninstall.ico │ │ │ ├── arrow2-install.ico │ │ │ ├── arrow2-uninstall.ico │ │ │ ├── box-install.ico │ │ │ ├── box-uninstall.ico │ │ │ ├── classic-install.ico │ │ │ ├── classic-uninstall.ico │ │ │ ├── llama-blue.ico │ │ │ ├── llama-grey.ico │ │ │ ├── modern-install-blue-full.ico │ │ │ ├── modern-install-blue.ico │ │ │ ├── modern-install-colorful.ico │ │ │ ├── modern-install-full.ico │ │ │ ├── modern-install.ico │ │ │ ├── modern-uninstall-blue-full.ico │ │ │ ├── modern-uninstall-blue.ico │ │ │ ├── modern-uninstall-colorful.ico │ │ │ ├── modern-uninstall-full.ico │ │ │ ├── modern-uninstall.ico │ │ │ ├── nsis1-install.ico │ │ │ ├── nsis1-uninstall.ico │ │ │ ├── orange-install-nsis.ico │ │ │ ├── orange-install.ico │ │ │ ├── orange-uninstall-nsis.ico │ │ │ ├── orange-uninstall.ico │ │ │ ├── pixel-install.ico │ │ │ ├── pixel-uninstall.ico │ │ │ ├── win-install.ico │ │ │ └── win-uninstall.ico │ │ └── Wizard │ │ │ ├── arrow.bmp │ │ │ ├── llama.bmp │ │ │ ├── nsis.bmp │ │ │ ├── nullsoft.bmp │ │ │ ├── orange-nsis.bmp │ │ │ ├── orange-uninstall-nsis.bmp │ │ │ ├── orange-uninstall.bmp │ │ │ ├── orange.bmp │ │ │ └── win.bmp │ ├── Language files │ │ ├── Afrikaans.nlf │ │ ├── Afrikaans.nsh │ │ ├── Albanian.nlf │ │ ├── Albanian.nsh │ │ ├── Arabic.nlf │ │ ├── Arabic.nsh │ │ ├── Basque.nlf │ │ ├── Basque.nsh │ │ ├── Belarusian.nlf │ │ ├── Belarusian.nsh │ │ ├── Bosnian.nlf │ │ ├── Bosnian.nsh │ │ ├── Breton.nlf │ │ ├── Breton.nsh │ │ ├── Bulgarian.nlf │ │ ├── Bulgarian.nsh │ │ ├── Catalan.nlf │ │ ├── Catalan.nsh │ │ ├── Croatian.nlf │ │ ├── Croatian.nsh │ │ ├── Czech.nlf │ │ ├── Czech.nsh │ │ ├── Danish.nlf │ │ ├── Danish.nsh │ │ ├── Dutch.nlf │ │ ├── Dutch.nsh │ │ ├── English.nlf │ │ ├── English.nsh │ │ ├── Esperanto.nlf │ │ ├── Esperanto.nsh │ │ ├── Estonian.nlf │ │ ├── Estonian.nsh │ │ ├── Farsi.nlf │ │ ├── Farsi.nsh │ │ ├── Finnish.nlf │ │ ├── Finnish.nsh │ │ ├── French.nlf │ │ ├── French.nsh │ │ ├── Galician.nlf │ │ ├── Galician.nsh │ │ ├── German.nlf │ │ ├── German.nsh │ │ ├── Greek.nlf │ │ ├── Greek.nsh │ │ ├── Hebrew.nlf │ │ ├── Hebrew.nsh │ │ ├── Hungarian.nlf │ │ ├── Hungarian.nsh │ │ ├── Icelandic.nlf │ │ ├── Icelandic.nsh │ │ ├── Indonesian.nlf │ │ ├── Indonesian.nsh │ │ ├── Irish.nlf │ │ ├── Irish.nsh │ │ ├── Italian.nlf │ │ ├── Italian.nsh │ │ ├── Japanese.nlf │ │ ├── Japanese.nsh │ │ ├── Korean.nlf │ │ ├── Korean.nsh │ │ ├── Kurdish.nlf │ │ ├── Kurdish.nsh │ │ ├── Latvian.nlf │ │ ├── Latvian.nsh │ │ ├── Lithuanian.nlf │ │ ├── Lithuanian.nsh │ │ ├── Luxembourgish.nlf │ │ ├── Luxembourgish.nsh │ │ ├── Macedonian.nlf │ │ ├── Macedonian.nsh │ │ ├── Malay.nlf │ │ ├── Malay.nsh │ │ ├── Mongolian.nlf │ │ ├── Mongolian.nsh │ │ ├── Norwegian.nlf │ │ ├── Norwegian.nsh │ │ ├── NorwegianNynorsk.nlf │ │ ├── NorwegianNynorsk.nsh │ │ ├── Polish.nlf │ │ ├── Polish.nsh │ │ ├── Portuguese.nlf │ │ ├── Portuguese.nsh │ │ ├── PortugueseBR.nlf │ │ ├── PortugueseBR.nsh │ │ ├── Romanian.nlf │ │ ├── Romanian.nsh │ │ ├── Russian.nlf │ │ ├── Russian.nsh │ │ ├── Serbian.nlf │ │ ├── Serbian.nsh │ │ ├── SerbianLatin.nlf │ │ ├── SerbianLatin.nsh │ │ ├── SimpChinese.nlf │ │ ├── SimpChinese.nsh │ │ ├── Slovak.nlf │ │ ├── Slovak.nsh │ │ ├── Slovenian.nlf │ │ ├── Slovenian.nsh │ │ ├── Spanish.nlf │ │ ├── Spanish.nsh │ │ ├── SpanishInternational.nlf │ │ ├── SpanishInternational.nsh │ │ ├── Swedish.nlf │ │ ├── Swedish.nsh │ │ ├── Thai.nlf │ │ ├── Thai.nsh │ │ ├── TradChinese.nlf │ │ ├── TradChinese.nsh │ │ ├── Turkish.nlf │ │ ├── Turkish.nsh │ │ ├── Ukrainian.nlf │ │ ├── Ukrainian.nsh │ │ ├── Uzbek.nlf │ │ ├── Uzbek.nsh │ │ ├── Welsh.nlf │ │ └── Welsh.nsh │ ├── Modern UI 2 │ │ ├── Deprecated.nsh │ │ ├── Interface.nsh │ │ ├── Localization.nsh │ │ ├── MUI2.nsh │ │ ├── Pages.nsh │ │ └── Pages │ │ │ ├── Components.nsh │ │ │ ├── Directory.nsh │ │ │ ├── Finish.nsh │ │ │ ├── InstallFiles.nsh │ │ │ ├── License.nsh │ │ │ ├── StartMenu.nsh │ │ │ ├── UninstallConfirm.nsh │ │ │ └── Welcome.nsh │ ├── Modern UI │ │ ├── System.nsh │ │ └── ioSpecial.ini │ ├── UIs │ │ ├── default.exe │ │ ├── modern.exe │ │ ├── modern_headerbmp.exe │ │ ├── modern_headerbmpr.exe │ │ ├── modern_nodesc.exe │ │ ├── modern_smalldesc.exe │ │ └── sdbarker_tiny.exe │ └── zip2exe │ │ ├── Base.nsh │ │ ├── Classic.nsh │ │ └── Modern.nsh ├── Include │ ├── Colors.nsh │ ├── FileFunc.nsh │ ├── InstallOptions.nsh │ ├── LangFile.nsh │ ├── Library.nsh │ ├── Locate.nsh │ ├── LogicLib.nsh │ ├── MUI.nsh │ ├── MUI2.nsh │ ├── Memento.nsh │ ├── MultiUser.nsh │ ├── Sections.nsh │ ├── StrFunc.nsh │ ├── TextFunc.nsh │ ├── UpgradeDLL.nsh │ ├── Util.nsh │ ├── VB6RunTime.nsh │ ├── VPatchLib.nsh │ ├── Win │ │ ├── WinDef.nsh │ │ ├── WinError.nsh │ │ ├── WinNT.nsh │ │ └── WinUser.nsh │ ├── WinCore.nsh │ ├── WinMessages.nsh │ ├── WinVer.nsh │ ├── WordFunc.nsh │ ├── common.nsh │ ├── nsDialogs.nsh │ ├── nsProcess.nsh │ └── x64.nsh ├── NSIS.chm ├── NSIS.exe ├── Plugins │ ├── AdvSplash.dll │ ├── Banner.dll │ ├── BgImage.dll │ ├── BgWorker.dll │ ├── Dialer.dll │ ├── InstallOptions.dll │ ├── LangDLL.dll │ ├── Math.dll │ ├── NSISdl.dll │ ├── Splash.dll │ ├── StartMenu.dll │ ├── System.dll │ ├── TypeLib.dll │ ├── UserInfo.dll │ ├── VPatch.dll │ ├── locate.dll │ ├── nsCommon.dll │ ├── nsDialogs.dll │ ├── nsExec.dll │ ├── nsNiuniuSkin.dll │ ├── nsProcess.dll │ └── nsis7zU.dll ├── Stubs │ ├── bzip2 │ ├── bzip2_solid │ ├── lzma │ ├── lzma_solid │ ├── uninst │ ├── zlib │ └── zlib_solid ├── makensis.exe ├── makensisw.exe └── nsisconf.nsh ├── OriginPlugin ├── include │ ├── Locate.nsh │ ├── common.nsh │ └── nsProcess.nsh └── plugin │ ├── BgWorker.dll │ ├── locate.dll │ ├── nsCommon.dll │ ├── nsNiuniuSkin.dll │ ├── nsProcess.dll │ └── nsis7zU.dll ├── README.md ├── SetupScripts ├── FastStoneCapture │ ├── build-nozip.bat │ ├── build.bat │ ├── info.nsi │ ├── licence.rtf │ ├── license.txt │ ├── logo.ico │ ├── skin │ │ ├── configpage.xml │ │ ├── default.xml │ │ ├── finishpage.xml │ │ ├── form │ │ │ ├── arrow_down.png │ │ │ ├── arrow_up.png │ │ │ ├── bg1.png │ │ │ ├── bg2.png │ │ │ ├── bgbottom.png │ │ │ ├── bgtop.png │ │ │ ├── bgtop1.png │ │ │ ├── cancel.png │ │ │ ├── checkbox.png │ │ │ ├── close.png │ │ │ ├── close1.png │ │ │ ├── install.png │ │ │ ├── license_bg.png │ │ │ ├── min.png │ │ │ ├── min1.png │ │ │ ├── modify.png │ │ │ ├── msgWarning.png │ │ │ ├── ok.png │ │ │ ├── process_bottom.png │ │ │ ├── process_top.png │ │ │ ├── scroll.png │ │ │ ├── scroll1.png │ │ │ ├── uninst_ok.png │ │ │ ├── uninst_process_bottom.png │ │ │ ├── uninst_process_top.png │ │ │ ├── uninstall.png │ │ │ ├── uninstall_bg1.png │ │ │ ├── uninstall_bg2.png │ │ │ └── uninstall_bg3.png │ │ ├── install.xml │ │ ├── installingpage.xml │ │ ├── licensepage.xml │ │ ├── msgBox.xml │ │ ├── msgBox2.xml │ │ ├── uninstallfinishpage.xml │ │ ├── uninstallingpage.xml │ │ └── uninstallpage.xml │ ├── ui.nsh │ └── uninst.ico ├── cloudmusic │ ├── UnInstall.ico │ ├── build-nozip.bat │ ├── build.bat │ ├── info.nsi │ ├── licence.rtf │ ├── license.txt │ ├── logo.ico │ ├── skin │ │ ├── configpage.xml │ │ ├── default.xml │ │ ├── finishpage.xml │ │ ├── form │ │ │ ├── bg.png │ │ │ ├── bk_down.png │ │ │ ├── btn_down_hovered.png │ │ │ ├── btn_down_normal.png │ │ │ ├── btn_down_pressed.png │ │ │ ├── btn_installation_disable.png │ │ │ ├── btn_installation_hovered.png │ │ │ ├── btn_installation_normal.png │ │ │ ├── btn_installation_pressed.png │ │ │ ├── btn_path_hovered.png │ │ │ ├── btn_path_normal.png │ │ │ ├── btn_path_pressed.png │ │ │ ├── btn_up_hovered.png │ │ │ ├── btn_up_normal.png │ │ │ ├── btn_up_pressed.png │ │ │ ├── error.png │ │ │ ├── fg.png │ │ │ ├── infor.png │ │ │ ├── license_bg.png │ │ │ ├── msgWarning.png │ │ │ ├── ok.png │ │ │ ├── pic.png │ │ │ ├── question.png │ │ │ ├── scroll.png │ │ │ └── warning.png │ │ ├── install.xml │ │ ├── installingpage.xml │ │ ├── licensepage.xml │ │ ├── msgBox.xml │ │ ├── public │ │ │ ├── bk │ │ │ │ └── bk_shadow.png │ │ │ ├── button │ │ │ │ ├── btn_global_green_80x30_hovered.png │ │ │ │ ├── btn_global_green_80x30_normal.png │ │ │ │ ├── btn_global_green_80x30_pushed.png │ │ │ │ ├── btn_global_white_80x30_hovered.png │ │ │ │ ├── btn_global_white_80x30_normal.png │ │ │ │ ├── btn_global_white_80x30_pushed.png │ │ │ │ ├── btn_wnd_black_close.png │ │ │ │ ├── btn_wnd_black_min.png │ │ │ │ ├── btn_wnd_close_hovered.png │ │ │ │ ├── btn_wnd_close_pushed.png │ │ │ │ ├── btn_wnd_gray_close.png │ │ │ │ ├── btn_wnd_gray_max.png │ │ │ │ ├── btn_wnd_gray_max_hovered.png │ │ │ │ ├── btn_wnd_gray_max_pushed.png │ │ │ │ ├── btn_wnd_gray_min.png │ │ │ │ ├── btn_wnd_gray_min_hovered.png │ │ │ │ ├── btn_wnd_gray_min_pushed.png │ │ │ │ ├── btn_wnd_gray_restore.png │ │ │ │ ├── btn_wnd_gray_restore_hovered.png │ │ │ │ ├── btn_wnd_gray_restore_pushed.png │ │ │ │ ├── btn_wnd_white_close.png │ │ │ │ ├── btn_wnd_white_min.png │ │ │ │ ├── btn_wnd_white_min_hovered.png │ │ │ │ └── btn_wnd_white_min_pushed.png │ │ │ ├── caption │ │ │ │ └── caption_public.png │ │ │ ├── checkbox │ │ │ │ ├── check_green_no.png │ │ │ │ ├── check_green_yes.png │ │ │ │ ├── check_no.png │ │ │ │ ├── check_yes.png │ │ │ │ └── check_yes1.png │ │ │ ├── edit │ │ │ │ └── edit0.png │ │ │ └── vsrcollbar │ │ │ │ ├── bk_hovered.png │ │ │ │ ├── bk_normal.png │ │ │ │ ├── thumb_hovered.png │ │ │ │ └── thumb_normal.png │ │ ├── uninstallfinishpage.xml │ │ ├── uninstallingpage.xml │ │ └── uninstallpage.xml │ └── ui.nsh ├── commonfunc.nsh └── nim │ ├── build-nozip.bat │ ├── build.bat │ ├── info.nsi │ ├── licence.rtf │ ├── license.txt │ ├── logo.ico │ ├── skin │ ├── configpage.xml │ ├── default.xml │ ├── finishpage.xml │ ├── form │ │ ├── bg.png │ │ ├── bk_down.png │ │ ├── btn_down_hovered.png │ │ ├── btn_down_normal.png │ │ ├── btn_down_pressed.png │ │ ├── btn_installation_disable.png │ │ ├── btn_installation_hovered.png │ │ ├── btn_installation_normal.png │ │ ├── btn_installation_pressed.png │ │ ├── btn_path_hovered.png │ │ ├── btn_path_normal.png │ │ ├── btn_path_pressed.png │ │ ├── btn_up_hovered.png │ │ ├── btn_up_normal.png │ │ ├── btn_up_pressed.png │ │ ├── error.png │ │ ├── fg.png │ │ ├── infor.png │ │ ├── license_bg.png │ │ ├── msgWarning.png │ │ ├── ok.png │ │ ├── pic.png │ │ ├── question.png │ │ ├── scroll.png │ │ └── warning.png │ ├── install.xml │ ├── installingpage.xml │ ├── licensepage.xml │ ├── msgBox.xml │ ├── public │ │ ├── bk │ │ │ └── bk_shadow.png │ │ ├── button │ │ │ ├── btn_global_green_80x30_hovered.png │ │ │ ├── btn_global_green_80x30_normal.png │ │ │ ├── btn_global_green_80x30_pushed.png │ │ │ ├── btn_global_white_80x30_hovered.png │ │ │ ├── btn_global_white_80x30_normal.png │ │ │ ├── btn_global_white_80x30_pushed.png │ │ │ ├── btn_wnd_black_close.png │ │ │ ├── btn_wnd_black_min.png │ │ │ ├── btn_wnd_close_hovered.png │ │ │ ├── btn_wnd_close_pushed.png │ │ │ ├── btn_wnd_gray_close.png │ │ │ ├── btn_wnd_gray_max.png │ │ │ ├── btn_wnd_gray_max_hovered.png │ │ │ ├── btn_wnd_gray_max_pushed.png │ │ │ ├── btn_wnd_gray_min.png │ │ │ ├── btn_wnd_gray_min_hovered.png │ │ │ ├── btn_wnd_gray_min_pushed.png │ │ │ ├── btn_wnd_gray_restore.png │ │ │ ├── btn_wnd_gray_restore_hovered.png │ │ │ ├── btn_wnd_gray_restore_pushed.png │ │ │ ├── btn_wnd_white_close.png │ │ │ ├── btn_wnd_white_min.png │ │ │ ├── btn_wnd_white_min_hovered.png │ │ │ └── btn_wnd_white_min_pushed.png │ │ ├── caption │ │ │ └── caption_public.png │ │ ├── checkbox │ │ │ ├── check_green_no.png │ │ │ ├── check_green_yes.png │ │ │ ├── check_no.png │ │ │ ├── check_yes.png │ │ │ └── check_yes1.png │ │ ├── edit │ │ │ └── edit0.png │ │ └── vsrcollbar │ │ │ ├── bk_hovered.png │ │ │ ├── bk_normal.png │ │ │ ├── thumb_hovered.png │ │ │ └── thumb_normal.png │ ├── uninstallfinishpage.xml │ ├── uninstallingpage.xml │ └── uninstallpage.xml │ ├── ui.nsh │ └── uninst.ico ├── api.md ├── images ├── 打包好的程序信息.png ├── 有复选框UI.png ├── 有复选框UI许可协议页面.png ├── 网易云音乐示例.png └── 网易云音乐许可协议页面.png ├── makeapp.bat ├── makensiscode.bat ├── makeskinzip.bat └── 使用方法.md /7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/7z.dll -------------------------------------------------------------------------------- /7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/7z.exe -------------------------------------------------------------------------------- /FilesToInstall/FSCapture.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/FilesToInstall/FSCapture.exe -------------------------------------------------------------------------------- /FilesToInstall/FSCaptureHelp.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/FilesToInstall/FSCaptureHelp.chm -------------------------------------------------------------------------------- /FilesToInstall/FSCrossHair.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/FilesToInstall/FSCrossHair.exe -------------------------------------------------------------------------------- /FilesToInstall/FSFocus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/FilesToInstall/FSFocus.exe -------------------------------------------------------------------------------- /FilesToInstall/FSLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/FilesToInstall/FSLogo.png -------------------------------------------------------------------------------- /FilesToInstall/FSRecorder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/FilesToInstall/FSRecorder.exe -------------------------------------------------------------------------------- /FilesToInstall/LicenseAgreement.txt: -------------------------------------------------------------------------------- 1 | Please read the following terms and conditions carefully before using FastStone Capture. Use of FastStone Capture indicates you accept the terms of this license agreement and warranty. 2 | 3 | 1. Disclaimer of Warranty 4 | 5 | FastStone Capture (this software) is provided "as-is" and without warranty of any kind, express, implied or otherwise, including without limitation, any warranty of merchantability or fitness for a particular purpose. 6 | 7 | In no event shall the author of this software be held liable for data loss, damages, loss of profits or any other kind of loss while using or misusing this software. 8 | 9 | 2. License 10 | 11 | FastStone Capture is shareware. You may try it free for 30 days. Once this 30-day period has expired, you must either purchase a license to use this software, or uninstall it from your computer promptly. 12 | 13 | 3. Restrictions on Use 14 | 15 | FastStone Capture must not be decompiled, disassembled, reverse engineered or otherwise modified. 16 | 17 | 18 | Copyright (C) 2018 FastStone Soft. All rights reserved. 19 | 20 | -------------------------------------------------------------------------------- /FilesToInstall/uninst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/FilesToInstall/uninst.exe -------------------------------------------------------------------------------- /NSIS/Bin/GenPat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Bin/GenPat.exe -------------------------------------------------------------------------------- /NSIS/Bin/LibraryLocal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Bin/LibraryLocal.exe -------------------------------------------------------------------------------- /NSIS/Bin/MakeLangId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Bin/MakeLangId.exe -------------------------------------------------------------------------------- /NSIS/Bin/RegTool.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Bin/RegTool.bin -------------------------------------------------------------------------------- /NSIS/Bin/zip2exe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Bin/zip2exe.exe -------------------------------------------------------------------------------- /NSIS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/COPYING -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/big.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/big.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/classic-cross.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/classic-cross.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/classic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/classic.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/colorful.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/colorful.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/grey-cross.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/grey-cross.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/grey.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/grey.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/modern.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/modern.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/red-round.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/red-round.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/red.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/red.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/simple-round.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/simple-round.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/simple-round2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/simple-round2.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Checks/simple.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Checks/simple.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/nsis-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/nsis-r.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/nsis.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/orange-nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/orange-nsis.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/orange-r-nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/orange-r-nsis.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/orange-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/orange-r.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/orange-uninstall-nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/orange-uninstall-nsis.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/orange-uninstall-r-nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/orange-uninstall-r-nsis.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/orange-uninstall-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/orange-uninstall-r.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/orange-uninstall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/orange-uninstall.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/orange.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/orange.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Header/win.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Header/win.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/arrow-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/arrow-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/arrow-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/arrow-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/arrow2-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/arrow2-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/arrow2-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/arrow2-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/box-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/box-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/box-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/box-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/classic-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/classic-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/classic-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/classic-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/llama-blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/llama-blue.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/llama-grey.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/llama-grey.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-install-blue-full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-install-blue-full.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-install-blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-install-blue.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-install-colorful.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-install-colorful.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-install-full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-install-full.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-uninstall-blue-full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-uninstall-blue-full.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-uninstall-blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-uninstall-blue.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-uninstall-colorful.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-uninstall-colorful.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-uninstall-full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-uninstall-full.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/modern-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/modern-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/nsis1-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/nsis1-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/nsis1-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/nsis1-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/orange-install-nsis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/orange-install-nsis.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/orange-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/orange-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/orange-uninstall-nsis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/orange-uninstall-nsis.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/orange-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/orange-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/pixel-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/pixel-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/pixel-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/pixel-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/win-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/win-install.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Icons/win-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Icons/win-uninstall.ico -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/arrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/arrow.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/llama.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/llama.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/nsis.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/nullsoft.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/nullsoft.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/orange-nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/orange-nsis.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/orange-uninstall-nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/orange-uninstall-nsis.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/orange-uninstall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/orange-uninstall.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/orange.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/orange.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Graphics/Wizard/win.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Graphics/Wizard/win.bmp -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Afrikaans.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Afrikaans.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Afrikaans.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Afrikaans.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Albanian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Albanian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Albanian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Albanian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Arabic.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Arabic.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Arabic.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Arabic.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Basque.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Basque.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Basque.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Basque.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Belarusian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Belarusian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Belarusian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Belarusian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Bosnian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Bosnian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Bosnian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Bosnian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Breton.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Breton.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Breton.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Breton.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Bulgarian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Bulgarian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Bulgarian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Bulgarian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Catalan.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Catalan.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Catalan.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Catalan.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Croatian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Croatian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Croatian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Croatian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Czech.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Czech.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Czech.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Czech.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Danish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Danish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Danish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Danish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Dutch.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Dutch.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Dutch.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Dutch.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/English.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/English.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/English.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/English.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Esperanto.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Esperanto.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Esperanto.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Esperanto.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Estonian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Estonian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Estonian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Estonian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Farsi.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Farsi.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Farsi.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Farsi.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Finnish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Finnish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Finnish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Finnish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/French.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/French.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/French.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/French.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Galician.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Galician.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Galician.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Galician.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/German.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/German.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/German.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/German.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Greek.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Greek.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Greek.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Greek.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Hebrew.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Hebrew.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Hebrew.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Hebrew.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Hungarian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Hungarian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Hungarian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Hungarian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Icelandic.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Icelandic.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Icelandic.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Icelandic.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Indonesian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Indonesian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Indonesian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Indonesian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Irish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Irish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Irish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Irish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Italian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Italian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Italian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Italian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Japanese.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Japanese.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Japanese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Japanese.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Korean.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Korean.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Korean.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Korean.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Kurdish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Kurdish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Kurdish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Kurdish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Latvian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Latvian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Latvian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Latvian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Lithuanian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Lithuanian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Lithuanian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Lithuanian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Luxembourgish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Luxembourgish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Luxembourgish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Luxembourgish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Macedonian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Macedonian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Macedonian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Macedonian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Malay.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Malay.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Malay.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Malay.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Mongolian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Mongolian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Mongolian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Mongolian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Norwegian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Norwegian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Norwegian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Norwegian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/NorwegianNynorsk.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/NorwegianNynorsk.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/NorwegianNynorsk.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/NorwegianNynorsk.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Polish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Polish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Polish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Polish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Portuguese.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Portuguese.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Portuguese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Portuguese.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/PortugueseBR.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/PortugueseBR.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/PortugueseBR.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/PortugueseBR.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Romanian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Romanian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Romanian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Romanian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Russian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Russian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Russian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Russian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Serbian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Serbian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Serbian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Serbian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/SerbianLatin.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/SerbianLatin.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/SerbianLatin.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/SerbianLatin.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/SimpChinese.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/SimpChinese.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/SimpChinese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/SimpChinese.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Slovak.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Slovak.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Slovak.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Slovak.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Slovenian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Slovenian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Slovenian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Slovenian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Spanish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Spanish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Spanish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Spanish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/SpanishInternational.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/SpanishInternational.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/SpanishInternational.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/SpanishInternational.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Swedish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Swedish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Swedish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Swedish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Thai.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Thai.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Thai.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Thai.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/TradChinese.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/TradChinese.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/TradChinese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/TradChinese.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Turkish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Turkish.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Turkish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Turkish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Ukrainian.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Ukrainian.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Ukrainian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Ukrainian.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Uzbek.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Uzbek.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Uzbek.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Uzbek.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Welsh.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Welsh.nlf -------------------------------------------------------------------------------- /NSIS/Contrib/Language files/Welsh.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Language files/Welsh.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Deprecated.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Deprecated.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Interface.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Interface.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Localization.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Localization.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/MUI2.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/MUI2.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages/Components.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages/Components.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages/Directory.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages/Directory.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages/Finish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages/Finish.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages/InstallFiles.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages/InstallFiles.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages/License.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages/License.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages/StartMenu.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages/StartMenu.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages/UninstallConfirm.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages/UninstallConfirm.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI 2/Pages/Welcome.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI 2/Pages/Welcome.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI/System.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI/System.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/Modern UI/ioSpecial.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/Modern UI/ioSpecial.ini -------------------------------------------------------------------------------- /NSIS/Contrib/UIs/default.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/UIs/default.exe -------------------------------------------------------------------------------- /NSIS/Contrib/UIs/modern.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/UIs/modern.exe -------------------------------------------------------------------------------- /NSIS/Contrib/UIs/modern_headerbmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/UIs/modern_headerbmp.exe -------------------------------------------------------------------------------- /NSIS/Contrib/UIs/modern_headerbmpr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/UIs/modern_headerbmpr.exe -------------------------------------------------------------------------------- /NSIS/Contrib/UIs/modern_nodesc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/UIs/modern_nodesc.exe -------------------------------------------------------------------------------- /NSIS/Contrib/UIs/modern_smalldesc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/UIs/modern_smalldesc.exe -------------------------------------------------------------------------------- /NSIS/Contrib/UIs/sdbarker_tiny.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/UIs/sdbarker_tiny.exe -------------------------------------------------------------------------------- /NSIS/Contrib/zip2exe/Base.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/zip2exe/Base.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/zip2exe/Classic.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/zip2exe/Classic.nsh -------------------------------------------------------------------------------- /NSIS/Contrib/zip2exe/Modern.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Contrib/zip2exe/Modern.nsh -------------------------------------------------------------------------------- /NSIS/Include/Colors.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/Colors.nsh -------------------------------------------------------------------------------- /NSIS/Include/FileFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/FileFunc.nsh -------------------------------------------------------------------------------- /NSIS/Include/InstallOptions.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/InstallOptions.nsh -------------------------------------------------------------------------------- /NSIS/Include/LangFile.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/LangFile.nsh -------------------------------------------------------------------------------- /NSIS/Include/Library.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/Library.nsh -------------------------------------------------------------------------------- /NSIS/Include/Locate.nsh: -------------------------------------------------------------------------------- 1 | !define locate::Open `!insertmacro locate::Open` 2 | 3 | !macro locate::Open _PATH _OPTIONS _HANDLE 4 | locate::_Open /NOUNLOAD `${_PATH}` `${_OPTIONS}` 5 | Pop ${_HANDLE} 6 | !macroend 7 | 8 | 9 | !define locate::Find `!insertmacro locate::Find` 10 | 11 | !macro locate::Find _HANDLE _PATHANDNAME _PATH _NAME _SIZE _TIME _ATTRIB 12 | locate::_Find /NOUNLOAD `${_HANDLE}` 13 | Pop ${_PATHANDNAME} 14 | Pop ${_PATH} 15 | Pop ${_NAME} 16 | Pop ${_SIZE} 17 | Pop ${_TIME} 18 | Pop ${_ATTRIB} 19 | !macroend 20 | 21 | 22 | !define locate::Close `!insertmacro locate::Close` 23 | 24 | !macro locate::Close _HANDLE 25 | locate::_Close /NOUNLOAD `${_HANDLE}` 26 | !macroend 27 | 28 | 29 | !define locate::GetSize `!insertmacro locate::GetSize` 30 | 31 | !macro locate::GetSize _PATH _OPTIONS _SIZE _FILES _DIRS 32 | locate::_GetSize /NOUNLOAD `${_PATH}` `${_OPTIONS}` 33 | Pop ${_SIZE} 34 | Pop ${_FILES} 35 | Pop ${_DIRS} 36 | !macroend 37 | 38 | 39 | !define locate::RMDirEmpty `!insertmacro locate::RMDirEmpty` 40 | 41 | !macro locate::RMDirEmpty _PATH _OPTIONS _REMOVED 42 | locate::_RMDirEmpty /NOUNLOAD `${_PATH}` `${_OPTIONS}` 43 | Pop ${_REMOVED} 44 | !macroend 45 | 46 | 47 | !define locate::Unload `!insertmacro locate::Unload` 48 | 49 | !macro locate::Unload 50 | locate::_Unload 51 | !macroend 52 | -------------------------------------------------------------------------------- /NSIS/Include/LogicLib.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/LogicLib.nsh -------------------------------------------------------------------------------- /NSIS/Include/MUI.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/MUI.nsh -------------------------------------------------------------------------------- /NSIS/Include/MUI2.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/MUI2.nsh -------------------------------------------------------------------------------- /NSIS/Include/Memento.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/Memento.nsh -------------------------------------------------------------------------------- /NSIS/Include/MultiUser.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/MultiUser.nsh -------------------------------------------------------------------------------- /NSIS/Include/Sections.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/Sections.nsh -------------------------------------------------------------------------------- /NSIS/Include/StrFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/StrFunc.nsh -------------------------------------------------------------------------------- /NSIS/Include/TextFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/TextFunc.nsh -------------------------------------------------------------------------------- /NSIS/Include/UpgradeDLL.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/UpgradeDLL.nsh -------------------------------------------------------------------------------- /NSIS/Include/Util.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/Util.nsh -------------------------------------------------------------------------------- /NSIS/Include/VB6RunTime.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/VB6RunTime.nsh -------------------------------------------------------------------------------- /NSIS/Include/VPatchLib.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/VPatchLib.nsh -------------------------------------------------------------------------------- /NSIS/Include/Win/WinDef.nsh: -------------------------------------------------------------------------------- 1 | !ifndef __WIN_WINDEF__INC 2 | !define __WIN_WINDEF__INC 3 | !verbose push 4 | !verbose 3 5 | !ifndef __WIN_NOINC_WINDEF 6 | 7 | 8 | !ifndef MAX_PATH 9 | !define MAX_PATH 260 10 | !endif 11 | #define NULL 0 12 | 13 | 14 | !macro _Win_MINMAX _intcmp _j1 _j2 _outvar _a _b 15 | ${_intcmp} "${_a}" "${_b}" ${_j1} ${_j1} ${_j2} 16 | StrCpy ${_outvar} "${_a}" 17 | goto +2 18 | StrCpy ${_outvar} "${_b}" 19 | !macroend 20 | !ifndef __WIN_MS_NOMINMAX & min & max & min_u & max_u 21 | !define min "!insertmacro _Win_MINMAX IntCmp +1 +3 " 22 | !define max "!insertmacro _Win_MINMAX IntCmp +3 +1 " 23 | !define min_u "!insertmacro _Win_MINMAX IntCmpU +1 +3 " 24 | !define max_u "!insertmacro _Win_MINMAX IntCmpU +3 +1 " 25 | !endif 26 | 27 | !macro _Win_LOBYTE _outvar _in 28 | IntOp ${_outvar} "${_in}" & 0xFF 29 | !macroend 30 | !define LOBYTE "!insertmacro _Win_LOBYTE " 31 | 32 | !macro _Win_HIBYTE _outvar _in 33 | IntOp ${_outvar} "${_in}" >> 8 34 | ${LOBYTE} ${_outvar} ${_outvar} 35 | !macroend 36 | !define HIBYTE "!insertmacro _Win_HIBYTE " 37 | 38 | !macro _Win_LOWORD _outvar _in 39 | IntOp ${_outvar} "${_in}" & 0xFFFF 40 | !macroend 41 | !define LOWORD "!insertmacro _Win_LOWORD " 42 | 43 | !macro _Win_HIWORD _outvar _in 44 | IntOp ${outvar} "${_in}" >> 16 ;sign extended :( 45 | ${LOWORD} ${_outvar} ${outvar} ;make sure we strip off the upper word 46 | !macroend 47 | !define HIWORD "!insertmacro _Win_HIWORD " 48 | 49 | !macro _Win_MAKEWORD _outvar _tmpvar _lo _hi 50 | ${LOBYTE} ${_outvar} "${_hi}" 51 | ${LOBYTE} ${_tmpvar} "${_lo}" 52 | IntOp ${_outvar} ${_outvar} << 8 53 | IntOp ${_outvar} ${_outvar} | ${_tmpvar} 54 | !macroend 55 | !define MAKEWORD "!insertmacro _Win_MAKEWORD " 56 | 57 | !macro _Win_MAKELONG32 _outvar _tmpvar _wlo _whi 58 | ${LOWORD} ${_outvar} "${_wlo}" 59 | IntOp ${_tmpvar} "${_whi}" << 16 60 | IntOp ${_outvar} ${_outvar} | ${_tmpvar} 61 | !macroend 62 | !define MAKELONG "!insertmacro _Win_MAKELONG32 " 63 | !if "${__WIN_PTRSIZE}" <= 4 64 | !define MAKEWPARAM "${MAKELONG}" 65 | !define MAKELPARAM "${MAKELONG}" 66 | !define MAKELRESULT "${MAKELONG}" 67 | !else 68 | !error "Missing 64bit imp!" 69 | !endif 70 | 71 | 72 | !endif /* __WIN_NOINC_WINDEF */ 73 | !verbose pop 74 | !endif /* __WIN_WINDEF__INC */ -------------------------------------------------------------------------------- /NSIS/Include/Win/WinError.nsh: -------------------------------------------------------------------------------- 1 | !ifndef __WIN_WINERROR__INC 2 | !define __WIN_WINERROR__INC 3 | !verbose push 4 | !verbose 3 5 | !ifndef __WIN_NOINC_WINERROR 6 | 7 | #define NO_ERROR 0 8 | !define ERROR_SUCCESS 0 9 | !define ERROR_INVALID_FUNCTION 1 10 | !define ERROR_FILE_NOT_FOUND 2 11 | !define ERROR_PATH_NOT_FOUND 3 12 | !define ERROR_TOO_MANY_OPEN_FILES 4 13 | !define ERROR_ACCESS_DENIED 5 14 | !define ERROR_INVALID_HANDLE 6 15 | !define ERROR_ARENA_TRASHED 7 16 | !define ERROR_NOT_ENOUGH_MEMORY 8 17 | !define ERROR_INVALID_BLOCK 9 18 | !define ERROR_BAD_ENVIRONMENT 10 19 | !define ERROR_BAD_FORMAT 11 20 | !define ERROR_INVALID_ACCESS 12 21 | !define ERROR_INVALID_DATA 13 22 | !define ERROR_OUTOFMEMORY 14 23 | !define ERROR_INVALID_DRIVE 15 24 | !define ERROR_CURRENT_DIRECTORY 16 25 | !define ERROR_NOT_SAME_DEVICE 17 26 | !define ERROR_NO_MORE_FILES 18 27 | !define ERROR_WRITE_PROTECT 19 28 | !define ERROR_BAD_UNIT 20 29 | !define ERROR_NOT_READY 21 30 | !define ERROR_BAD_COMMAND 22 31 | !define ERROR_CRC 23 32 | !define ERROR_BAD_LENGTH 24 33 | !define ERROR_SEEK 25 34 | !define ERROR_NOT_DOS_DISK 26 35 | !define ERROR_SECTOR_NOT_FOUND 27 36 | !define ERROR_OUT_OF_PAPER 28 37 | !define ERROR_WRITE_FAULT 29 38 | !define ERROR_READ_FAULT 30 39 | !define ERROR_GEN_FAILURE 31 40 | !define ERROR_SHARING_VIOLATION 32 41 | !define ERROR_LOCK_VIOLATION 33 42 | !define ERROR_WRONG_DISK 34 43 | !define ERROR_SHARING_BUFFER_EXCEEDED 36 44 | !define ERROR_HANDLE_EOF 38 45 | !define ERROR_HANDLE_DISK_FULL 39 46 | !define ERROR_NOT_SUPPORTED 50 47 | 48 | !define SEVERITY_SUCCESS 0 49 | !define SEVERITY_ERROR 1 50 | !define E_UNEXPECTED 0x8000FFFF 51 | !define E_NOTIMPL 0x80004001 52 | !define E_OUTOFMEMORY 0x8007000E 53 | !define E_INVALIDARG 0x80070057 54 | !define E_NOINTERFACE 0x80004002 55 | !define E_POINTER 0x80004003 56 | !define E_HANDLE 0x80070006 57 | !define E_ABORT 0x80004004 58 | !define E_FAIL 0x80004005 59 | !define E_ACCESSDENIED 0x80070005 60 | !define E_PENDING 0x8000000A 61 | 62 | !endif /* __WIN_NOINC_WINERROR */ 63 | !verbose pop 64 | !endif /* __WIN_WINERROR__INC */ -------------------------------------------------------------------------------- /NSIS/Include/Win/WinUser.nsh: -------------------------------------------------------------------------------- 1 | !ifndef __WIN_WINUSER__INC 2 | !define __WIN_WINUSER__INC 3 | !verbose push 4 | !verbose 3 5 | !ifndef __WIN_MS_NOUSER & __WIN_NOINC_WINUSER 6 | 7 | !ifndef __WIN_MS_NOVIRTUALKEYCODES 8 | !define VK_LBUTTON 0x01 9 | !define VK_RBUTTON 0x02 10 | !define VK_CANCEL 0x03 11 | !define VK_MBUTTON 0x04 /* NOT contiguous with L & RBUTTON */ 12 | !define VK_XBUTTON1 0x05 /* NOT contiguous with L & RBUTTON */ 13 | !define VK_XBUTTON2 0x06 /* NOT contiguous with L & RBUTTON */ 14 | !define VK_BACK 0x08 15 | !define VK_TAB 0x09 16 | !define VK_CLEAR 0x0C 17 | !define VK_RETURN 0x0D 18 | !define VK_SHIFT 0x10 19 | !define VK_CONTROL 0x11 20 | !define VK_MENU 0x12 21 | !define VK_PAUSE 0x13 22 | !define VK_CAPITAL 0x14 23 | !define VK_ESCAPE 0x1B 24 | !define VK_CONVERT 0x1C 25 | !define VK_NONCONVERT 0x1D 26 | !define VK_ACCEPT 0x1E 27 | !define VK_MODECHANGE 0x1F 28 | !define VK_SPACE 0x20 29 | !define VK_PRIOR 0x21 30 | !define VK_NEXT 0x22 31 | !define VK_END 0x23 32 | !define VK_HOME 0x24 33 | !define VK_LEFT 0x25 34 | !define VK_UP 0x26 35 | !define VK_RIGHT 0x27 36 | !define VK_DOWN 0x28 37 | !define VK_SELECT 0x29 38 | !define VK_PRINT 0x2A 39 | !define VK_EXECUTE 0x2B 40 | !define VK_SNAPSHOT 0x2C 41 | !define VK_INSERT 0x2D 42 | !define VK_DELETE 0x2E 43 | !define VK_HELP 0x2F 44 | ; VK_0 - VK_9 are the same as ASCII '0' - '9' (0x30 - 0x39) 45 | ; VK_A - VK_Z are the same as ASCII 'A' - 'Z' (0x41 - 0x5A) 46 | !define VK_LWIN 0x5B 47 | !define VK_RWIN 0x5C 48 | !define VK_APPS 0x5D 49 | !define VK_SLEEP 0x5F 50 | !define VK_NUMPAD0 0x60 51 | !define VK_NUMPAD1 0x61 52 | !define VK_NUMPAD2 0x62 53 | !define VK_NUMPAD3 0x63 54 | !define VK_NUMPAD4 0x64 55 | !define VK_NUMPAD5 0x65 56 | !define VK_NUMPAD6 0x66 57 | !define VK_NUMPAD7 0x67 58 | !define VK_NUMPAD8 0x68 59 | !define VK_NUMPAD9 0x69 60 | !define VK_MULTIPLY 0x6A 61 | !define VK_ADD 0x6B 62 | !define VK_SEPARATOR 0x6C 63 | !define VK_SUBTRACT 0x6D 64 | !define VK_DECIMAL 0x6E 65 | !define VK_DIVIDE 0x6F 66 | !define VK_F1 0x70 67 | !define VK_F2 0x71 68 | !define VK_F3 0x72 69 | !define VK_F4 0x73 70 | !define VK_F5 0x74 71 | !define VK_F6 0x75 72 | !define VK_F7 0x76 73 | !define VK_F8 0x77 74 | !define VK_F9 0x78 75 | !define VK_F10 0x79 76 | !define VK_F11 0x7A 77 | !define VK_F12 0x7B 78 | !define VK_NUMLOCK 0x90 79 | !define VK_SCROLL 0x91 80 | !define VK_OEM_NEC_EQUAL 0x92 ; '=' key on numpad 81 | !define VK_LSHIFT 0xA0 82 | !define VK_RSHIFT 0xA1 83 | !define VK_LCONTROL 0xA2 84 | !define VK_RCONTROL 0xA3 85 | !define VK_LMENU 0xA4 86 | !define VK_RMENU 0xA5 87 | !endif 88 | 89 | !ifndef __WIN_MS_NOWINOFFSETS 90 | /* in nsDialogs.nsh... 91 | !define GWL_STYLE -16 92 | !define GWL_EXSTYLE -20 */ 93 | !define GWLP_WNDPROC -4 94 | !define GWLP_HINSTANCE -6 95 | !define GWLP_HWNDPARENT -8 96 | !define GWLP_USERDATA -21 97 | !define GWLP_ID -12 98 | !define DWLP_MSGRESULT 0 99 | !define /math DWLP_DLGPROC ${DWLP_MSGRESULT} + ${__WIN_PTRSIZE} ;DWLP_MSGRESULT + sizeof(LRESULT) 100 | !define /math DWLP_USER ${DWLP_DLGPROC} + ${__WIN_PTRSIZE} ;DWLP_DLGPROC + sizeof(DLGPROC) 101 | !endif 102 | 103 | !ifndef __WIN_MS_NONCMESSAGES 104 | !define HTERROR -2 105 | !define HTTRANSPARENT -1 106 | !define HTNOWHERE 0 107 | !define HTCLIENT 1 108 | !define HTCAPTION 2 109 | !define HTSYSMENU 3 110 | !define HTGROWBOX 4 111 | !define HTSIZE ${HTGROWBOX} 112 | !define HTMENU 5 113 | !define HTHSCROLL 6 114 | !define HTVSCROLL 7 115 | !define HTMINBUTTON 8 116 | !define HTMAXBUTTON 9 117 | !define HTLEFT 10 118 | !define HTRIGHT 11 119 | !define HTTOP 12 120 | !define HTTOPLEFT 13 121 | !define HTTOPRIGHT 14 122 | !define HTBOTTOM 15 123 | !define HTBOTTOMLEFT 16 124 | !define HTBOTTOMRIGHT 17 125 | !define HTBORDER 18 126 | !define HTREDUCE ${HTMINBUTTON} 127 | !define HTZOOM ${HTMAXBUTTON} 128 | !define HTSIZEFIRST ${HTLEFT} 129 | !define HTSIZELAST ${HTBOTTOMRIGHT} 130 | !define HTOBJECT 19 131 | !define HTCLOSE 20 132 | !define HTHELP 21 133 | !endif 134 | 135 | !ifndef __WIN_MS_NOSYSCOMMANDS 136 | !define SC_SIZE 0xF000 137 | !define SC_MOVE 0xF010 138 | !define SC_MINIMIZE 0xF020 139 | !define SC_MAXIMIZE 0xF030 140 | !define SC_NEXTWINDOW 0xF040 141 | !define SC_PREVWINDOW 0xF050 142 | !define SC_CLOSE 0xF060 143 | !define SC_VSCROLL 0xF070 144 | !define SC_HSCROLL 0xF080 145 | !define SC_MOUSEMENU 0xF090 146 | !define SC_KEYMENU 0xF100 147 | !define SC_ARRANGE 0xF110 148 | !define SC_RESTORE 0xF120 149 | !define SC_TASKLIST 0xF130 150 | !define SC_SCREENSAVE 0xF140 151 | !define SC_HOTKEY 0xF150 152 | !define SC_DEFAULT 0xF160 153 | !define SC_MONITORPOWER 0xF170 154 | !define SC_CONTEXTHELP 0xF180 155 | !define SC_SEPARATOR 0xF00F 156 | !endif 157 | 158 | !define IDC_ARROW 32512 159 | !define IDC_IBEAM 32513 160 | !define IDC_WAIT 32514 161 | !define IDC_CROSS 32515 162 | !define IDC_UPARROW 32516 163 | !define IDC_SIZENWSE 32642 164 | !define IDC_SIZENESW 32643 165 | !define IDC_SIZEWE 32644 166 | !define IDC_SIZENS 32645 167 | !define IDC_SIZEALL 32646 168 | !define IDC_NO 32648 169 | !define IDC_HAND 32649 170 | !define IDC_APPSTARTING 32650 171 | !define IDC_HELP 32651 172 | 173 | /* in nsDialogs.nsh... 174 | !define IMAGE_BITMAP 0 175 | !define IMAGE_ICON 1 176 | !define IMAGE_CURSOR 2*/ 177 | 178 | /* in nsDialogs.nsh... 179 | !define LR_DEFAULTCOLOR 0x0000 180 | !define LR_MONOCHROME 0x0001 181 | !define LR_COLOR 0x0002 182 | !define LR_COPYRETURNORG 0x0004 183 | !define LR_COPYDELETEORG 0x0008 184 | !define LR_LOADFROMFILE 0x0010 185 | !define LR_LOADTRANSPARENT 0x0020 186 | !define LR_DEFAULTSIZE 0x0040 187 | !define LR_VGACOLOR 0x0080 188 | !define LR_LOADMAP3DCOLORS 0x1000 189 | !define LR_CREATEDIBSECTION 0x2000 190 | !define LR_COPYFROMRESOURCE 0x4000 191 | !define LR_SHARED 0x8000*/ 192 | 193 | !define GA_PARENT 1 194 | !define GA_ROOT 2 195 | !define GA_ROOTOWNER 3 196 | 197 | !endif /* __WIN_MS_NOUSER & __WIN_NOINC_WINUSER */ 198 | !verbose pop 199 | !endif /* __WIN_WINUSER__INC */ -------------------------------------------------------------------------------- /NSIS/Include/WinCore.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/WinCore.nsh -------------------------------------------------------------------------------- /NSIS/Include/WinMessages.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/WinMessages.nsh -------------------------------------------------------------------------------- /NSIS/Include/WinVer.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/WinVer.nsh -------------------------------------------------------------------------------- /NSIS/Include/WordFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/WordFunc.nsh -------------------------------------------------------------------------------- /NSIS/Include/common.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/common.nsh -------------------------------------------------------------------------------- /NSIS/Include/nsDialogs.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/nsDialogs.nsh -------------------------------------------------------------------------------- /NSIS/Include/nsProcess.nsh: -------------------------------------------------------------------------------- 1 | !define nsProcess::FindProcess `!insertmacro nsProcess::FindProcess` 2 | 3 | !macro nsProcess::FindProcess _FILE _ERR 4 | nsProcess::_FindProcess /NOUNLOAD `${_FILE}` 5 | Pop ${_ERR} 6 | !macroend 7 | 8 | 9 | !define nsProcess::KillProcess `!insertmacro nsProcess::KillProcess` 10 | 11 | !macro nsProcess::KillProcess _FILE _ERR 12 | nsProcess::_KillProcess /NOUNLOAD `${_FILE}` 13 | Pop ${_ERR} 14 | !macroend 15 | 16 | !define nsProcess::CloseProcess `!insertmacro nsProcess::CloseProcess` 17 | 18 | !macro nsProcess::CloseProcess _FILE _ERR 19 | nsProcess::_CloseProcess /NOUNLOAD `${_FILE}` 20 | Pop ${_ERR} 21 | !macroend 22 | 23 | 24 | !define nsProcess::Unload `!insertmacro nsProcess::Unload` 25 | 26 | !macro nsProcess::Unload 27 | nsProcess::_Unload 28 | !macroend 29 | -------------------------------------------------------------------------------- /NSIS/Include/x64.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Include/x64.nsh -------------------------------------------------------------------------------- /NSIS/NSIS.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/NSIS.chm -------------------------------------------------------------------------------- /NSIS/NSIS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/NSIS.exe -------------------------------------------------------------------------------- /NSIS/Plugins/AdvSplash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/AdvSplash.dll -------------------------------------------------------------------------------- /NSIS/Plugins/Banner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/Banner.dll -------------------------------------------------------------------------------- /NSIS/Plugins/BgImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/BgImage.dll -------------------------------------------------------------------------------- /NSIS/Plugins/BgWorker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/BgWorker.dll -------------------------------------------------------------------------------- /NSIS/Plugins/Dialer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/Dialer.dll -------------------------------------------------------------------------------- /NSIS/Plugins/InstallOptions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/InstallOptions.dll -------------------------------------------------------------------------------- /NSIS/Plugins/LangDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/LangDLL.dll -------------------------------------------------------------------------------- /NSIS/Plugins/Math.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/Math.dll -------------------------------------------------------------------------------- /NSIS/Plugins/NSISdl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/NSISdl.dll -------------------------------------------------------------------------------- /NSIS/Plugins/Splash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/Splash.dll -------------------------------------------------------------------------------- /NSIS/Plugins/StartMenu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/StartMenu.dll -------------------------------------------------------------------------------- /NSIS/Plugins/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/System.dll -------------------------------------------------------------------------------- /NSIS/Plugins/TypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/TypeLib.dll -------------------------------------------------------------------------------- /NSIS/Plugins/UserInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/UserInfo.dll -------------------------------------------------------------------------------- /NSIS/Plugins/VPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/VPatch.dll -------------------------------------------------------------------------------- /NSIS/Plugins/locate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/locate.dll -------------------------------------------------------------------------------- /NSIS/Plugins/nsCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/nsCommon.dll -------------------------------------------------------------------------------- /NSIS/Plugins/nsDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/nsDialogs.dll -------------------------------------------------------------------------------- /NSIS/Plugins/nsExec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/nsExec.dll -------------------------------------------------------------------------------- /NSIS/Plugins/nsNiuniuSkin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/nsNiuniuSkin.dll -------------------------------------------------------------------------------- /NSIS/Plugins/nsProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/nsProcess.dll -------------------------------------------------------------------------------- /NSIS/Plugins/nsis7zU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Plugins/nsis7zU.dll -------------------------------------------------------------------------------- /NSIS/Stubs/bzip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Stubs/bzip2 -------------------------------------------------------------------------------- /NSIS/Stubs/bzip2_solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Stubs/bzip2_solid -------------------------------------------------------------------------------- /NSIS/Stubs/lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Stubs/lzma -------------------------------------------------------------------------------- /NSIS/Stubs/lzma_solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Stubs/lzma_solid -------------------------------------------------------------------------------- /NSIS/Stubs/uninst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Stubs/uninst -------------------------------------------------------------------------------- /NSIS/Stubs/zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Stubs/zlib -------------------------------------------------------------------------------- /NSIS/Stubs/zlib_solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/Stubs/zlib_solid -------------------------------------------------------------------------------- /NSIS/makensis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/makensis.exe -------------------------------------------------------------------------------- /NSIS/makensisw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/makensisw.exe -------------------------------------------------------------------------------- /NSIS/nsisconf.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/NSIS/nsisconf.nsh -------------------------------------------------------------------------------- /OriginPlugin/include/Locate.nsh: -------------------------------------------------------------------------------- 1 | !define locate::Open `!insertmacro locate::Open` 2 | 3 | !macro locate::Open _PATH _OPTIONS _HANDLE 4 | locate::_Open /NOUNLOAD `${_PATH}` `${_OPTIONS}` 5 | Pop ${_HANDLE} 6 | !macroend 7 | 8 | 9 | !define locate::Find `!insertmacro locate::Find` 10 | 11 | !macro locate::Find _HANDLE _PATHANDNAME _PATH _NAME _SIZE _TIME _ATTRIB 12 | locate::_Find /NOUNLOAD `${_HANDLE}` 13 | Pop ${_PATHANDNAME} 14 | Pop ${_PATH} 15 | Pop ${_NAME} 16 | Pop ${_SIZE} 17 | Pop ${_TIME} 18 | Pop ${_ATTRIB} 19 | !macroend 20 | 21 | 22 | !define locate::Close `!insertmacro locate::Close` 23 | 24 | !macro locate::Close _HANDLE 25 | locate::_Close /NOUNLOAD `${_HANDLE}` 26 | !macroend 27 | 28 | 29 | !define locate::GetSize `!insertmacro locate::GetSize` 30 | 31 | !macro locate::GetSize _PATH _OPTIONS _SIZE _FILES _DIRS 32 | locate::_GetSize /NOUNLOAD `${_PATH}` `${_OPTIONS}` 33 | Pop ${_SIZE} 34 | Pop ${_FILES} 35 | Pop ${_DIRS} 36 | !macroend 37 | 38 | 39 | !define locate::RMDirEmpty `!insertmacro locate::RMDirEmpty` 40 | 41 | !macro locate::RMDirEmpty _PATH _OPTIONS _REMOVED 42 | locate::_RMDirEmpty /NOUNLOAD `${_PATH}` `${_OPTIONS}` 43 | Pop ${_REMOVED} 44 | !macroend 45 | 46 | 47 | !define locate::Unload `!insertmacro locate::Unload` 48 | 49 | !macro locate::Unload 50 | locate::_Unload 51 | !macroend 52 | -------------------------------------------------------------------------------- /OriginPlugin/include/common.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/OriginPlugin/include/common.nsh -------------------------------------------------------------------------------- /OriginPlugin/include/nsProcess.nsh: -------------------------------------------------------------------------------- 1 | !define nsProcess::FindProcess `!insertmacro nsProcess::FindProcess` 2 | 3 | !macro nsProcess::FindProcess _FILE _ERR 4 | nsProcess::_FindProcess /NOUNLOAD `${_FILE}` 5 | Pop ${_ERR} 6 | !macroend 7 | 8 | 9 | !define nsProcess::KillProcess `!insertmacro nsProcess::KillProcess` 10 | 11 | !macro nsProcess::KillProcess _FILE _ERR 12 | nsProcess::_KillProcess /NOUNLOAD `${_FILE}` 13 | Pop ${_ERR} 14 | !macroend 15 | 16 | !define nsProcess::CloseProcess `!insertmacro nsProcess::CloseProcess` 17 | 18 | !macro nsProcess::CloseProcess _FILE _ERR 19 | nsProcess::_CloseProcess /NOUNLOAD `${_FILE}` 20 | Pop ${_ERR} 21 | !macroend 22 | 23 | 24 | !define nsProcess::Unload `!insertmacro nsProcess::Unload` 25 | 26 | !macro nsProcess::Unload 27 | nsProcess::_Unload 28 | !macroend 29 | -------------------------------------------------------------------------------- /OriginPlugin/plugin/BgWorker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/OriginPlugin/plugin/BgWorker.dll -------------------------------------------------------------------------------- /OriginPlugin/plugin/locate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/OriginPlugin/plugin/locate.dll -------------------------------------------------------------------------------- /OriginPlugin/plugin/nsCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/OriginPlugin/plugin/nsCommon.dll -------------------------------------------------------------------------------- /OriginPlugin/plugin/nsNiuniuSkin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/OriginPlugin/plugin/nsNiuniuSkin.dll -------------------------------------------------------------------------------- /OriginPlugin/plugin/nsProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/OriginPlugin/plugin/nsProcess.dll -------------------------------------------------------------------------------- /OriginPlugin/plugin/nsis7zU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/OriginPlugin/plugin/nsis7zU.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NSIS_SetupSkin 2 | 3 | NSIS打包工具,基于XML可自定义UI,通过项目[NSIS-UI](https://github.com/hilanmiao/NSIS-UI)找到[nsNiuniuSkin](http://www.ggniu.cn/download.htm)修改而来 4 | 5 | > 该安装包界面控件是一个可集成于NSIS的插件,采用Duilib开发,在使用时,安装包制作者只需要做如下两件事情: 6 | >> 1. 通过配置Duilib的资源,设计好界面显示的元素 7 | 8 | >> 2. 在NSIS的脚本中,通过NSIS脚本调用nsNiuniuSkin.dll的相关接口,集成UI及安装包的业务功能 9 | 10 | > 在控件的资源中,采用的是通过TAB控件来实现不同阶段的安装界面,比如:选择路径、许可协议、安装进度、完成、卸载等,在实际使用中,通过NSIS脚本来设置当前需要显示的TAB页,即可完美的呈现出需要的界面UI了。 11 | 12 | 13 | 14 | * [使用方法](/使用方法.md) 15 | * [api](/api.md) 16 | 17 | 18 | **[更多打包工具](https://www.bajins.com/Other/Windows%E8%BD%AF%E4%BB%B6.html#%E7%A8%8B%E5%BA%8F%E6%89%93%E5%8C%85)** 19 | 20 | 21 | **关于nsNiuniuSkin License** 22 | 23 | * [http://www.ggniu.cn/articles/nsniuniuskin.html](http://www.ggniu.cn/articles/nsniuniuskin.html) 24 | * [http://www.leeqia.com/nsniuniuskin/download](http://www.leeqia.com/nsniuniuskin/download) 25 | 26 | > nsNiuniuSkin是目前国内最专业的安装包UI控件,与NSIS完美融合。同时它也是一个完全免费的安装包UI控件,无任何的使用限制。我们的目标是让稍微有一点NSIS基础的人在一天内完成一个安装包制作。 27 | 28 | 29 | 30 | **下载软件目录包:** 31 | 32 | * [https://gd.bajins.com/PacketTool/software-pkg/](https://gd.bajins.com/PacketTool/software-pkg/) 33 | * [https://od.bajins.com](https://od.bajins.com) 34 | 35 | 36 | 37 | ## NSIS 38 | 39 | * [https://sourceforge.net/projects/nsis](https://sourceforge.net/projects/nsis) 40 | * [https://nsis.sourceforge.io/Category:Plugins](https://nsis.sourceforge.io/Category:Plugins) 41 | * [https://sourceforge.net/projects/hmne](https://sourceforge.net/projects/hmne) 42 | * [http://hmne.sourceforge.net](http://hmne.sourceforge.net) 43 | 44 | 45 | 46 | 47 | ## 修改如下 48 | 49 | - 1、修改目录结构,使项目更加规范: 50 | - 对图片文件统一归纳 51 | - 对编译bat文件针对每个程序目录放在该目录下 52 | 53 | - 2、修改函数调用,使项目更加规范,例如: 54 | 55 | > ui.nsh 73-76行 56 | 57 | - 3、修改函数中代码块语句错误的bug: 58 | 59 | > ui.nsh 第70行 60 | 61 | - 4、UI中白色背景时白色按钮不显示修改为黑色按钮可显示: 62 | 63 | > install.xml 24-32行 64 | 65 | - 5、bat中删除文件时先判断是否存在 66 | 67 | - 6、bat中遍历源程序文件夹时先判断是否为空: 68 | 69 | > makensiscode.bat 第45行 70 | 71 | - 7、产品信息使用变量,避免输入多次可能输错: 72 | 73 | > songliwu.nsi 6-10行 74 | 75 | - 8、[修改卸载时的提示语中产品名称自动使用变量值](https://github.com/woytu/NSIS_SetupSkin/commit/eeb250b12f9af7851d79d69d8f68608d2e858d6a) 76 | 77 | - 9、[所需空间大小使用函数计算FilesToInstall文件夹大小,不再需要手动输入配置](https://github.com/woytu/NSIS_SetupSkin/commit/607abd9502800aac91ba15bb22b0f591a88c5ca0) 78 | 79 | 80 | ## 目录结构 81 | 82 | ``` 83 | . 84 | │ 7z.dll 7z压缩dll 85 | │ 7z.exe 7z压缩主程序 86 | │ makeapp.bat 压缩FilesToInstall文件夹脚本 87 | │ makensiscode.bat 不压缩时遍历FilesToInstall文件夹生成编译需要的app.nsh文件 88 | │ makeskinzip.bat 压缩SetupScripts/*/skin文件夹 89 | │ 90 | ├─FilesToInstall 源程序文件夹 91 | ├─NSIS NSIS主程序文件夹 92 | ├─OriginPlugin 插件 93 | └─SetupScripts 项目UI配置目录 94 | │ commonfunc.nsh 公共函数 95 | ├─nim 无复选框UI示例 96 | │ │ build-nim-nozip.bat 不带压缩构建脚本 97 | │ │ build-nim.bat 带压缩构建脚本 98 | │ │ licence.rtf 产品许可文件 99 | │ │ license.txt 100 | │ │ logo.ico 产品logo图标 101 | │ │ nim.nsi 安装包产品信息定义,引用了ui.nsh 102 | │ │ ui.nsh UI函数 103 | │ │ uninst.ico 卸载图标 104 | │ │ 105 | │ └─skin UI配置 106 | │ │ configpage.xml 配置页XML 107 | │ │ default.xml 全局XML 108 | │ │ finishpage.xml 安装完成页XML 109 | │ │ install.xml 安装首页XML 110 | │ │ installingpage.xml 安装进行页XML 111 | │ │ licensepage.xml 产品许可页XML 112 | │ │ msgBox.xml 提示消息页XML 113 | │ │ uninstallfinishpage.xml 卸载完成页XML 114 | │ │ uninstallingpage.xml 卸载进行页XML 115 | │ │ uninstallpage.xml 卸载首页XML 116 | │ │ 117 | │ ├─form 公共文件,比如公用图片 118 | │ └─public 独立部件文件 119 | │ ├─bk 120 | │ ├─button 121 | │ ├─caption 122 | │ ├─checkbox 123 | │ ├─edit 124 | │ └─vsrcollbar 125 | │ 126 | └─songliwu 有复选框UI示例 127 | │ build-songliwu-nozip.bat 不带压缩构建脚本 128 | │ build-songliwu.bat 带压缩构建脚本 129 | │ license.txt 产品许可文件 130 | │ logo.ico 产品logo图标 131 | │ songliwu.nsi 安装包产品信息定义,引用了ui.nsh 132 | │ ui.nsh UI函数 133 | │ uninst.ico 卸载图标 134 | │ 135 | └─skin UI配置 136 | │ configpage.xml 配置页XML 137 | │ default.xml 全局XML 138 | │ finishpage.xml 安装完成页XML 139 | │ install.xml 安装首页XML 140 | │ installingpage.xml 安装进行页XML 141 | │ licensepage.xml 产品许可页XML 142 | │ msgBox.xml 提示消息页XML 143 | │ msgBox2.xml 144 | │ uninstallfinishpage.xml 卸载完成页XML 145 | │ uninstallingpage.xml 卸载进行页XML 146 | │ uninstallpage.xml 卸载首页XML 147 | │ 148 | └─form 公共文件,比如公用图片 149 | ``` 150 | 151 | ## 图片示例 152 | 153 | ![](/images/打包好的程序信息.png) 154 | ![](/images/网易云音乐示例.png) 155 | ![](/images/网易云音乐许可协议页面.png) 156 | ![](/images/有复选框UI.png) 157 | ![](/images/有复选框UI许可协议页面.png) 158 | -------------------------------------------------------------------------------- /SetupScripts/FastStoneCapture/build-nozip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/SetupScripts/FastStoneCapture/build-nozip.bat -------------------------------------------------------------------------------- /SetupScripts/FastStoneCapture/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/SetupScripts/FastStoneCapture/build.bat -------------------------------------------------------------------------------- /SetupScripts/FastStoneCapture/info.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/SetupScripts/FastStoneCapture/info.nsi -------------------------------------------------------------------------------- /SetupScripts/FastStoneCapture/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/SetupScripts/FastStoneCapture/license.txt -------------------------------------------------------------------------------- /SetupScripts/FastStoneCapture/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bajins/NSIS_SetupSkin/f11dbac0d5870bdfd514fff65323356692d6cf33/SetupScripts/FastStoneCapture/logo.ico -------------------------------------------------------------------------------- /SetupScripts/FastStoneCapture/skin/configpage.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |