├── .github ├── SETUP.md ├── dependabot.yml └── workflows │ └── e2e.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── command_line.py ├── config.py ├── files ├── base_url.txt ├── compressors │ ├── upx-linux-x32 │ ├── upx-linux-x64 │ ├── upx-mac │ └── upx-win.exe ├── env_vars.bash ├── env_vars.bat ├── env_vars.py ├── images │ ├── app_settings.png │ ├── app_settings.svg │ ├── compress_settings.png │ ├── compress_settings.svg │ ├── download_settings.png │ ├── download_settings.svg │ ├── export_settings.png │ ├── export_settings.svg │ ├── folder_open.png │ ├── icon.png │ ├── icon.svg │ ├── warning.png │ ├── warning.svg │ ├── window_settings.png │ └── window_settings.svg ├── nw-versions.txt ├── settings.cfg └── version.txt ├── image_utils ├── __init__.py ├── icns_info.py ├── image_utils.py ├── png.py └── pycns.py ├── images ├── icon.icns ├── icon.ico └── icon.png ├── main.py ├── pe.py ├── requirements.txt ├── scripts ├── Info.plist ├── Web2Exe.nsi ├── build_command_line_linux.bash ├── build_mac.bash ├── build_windows.bat └── upload_release.py ├── tests ├── __init__.py ├── conftest.py └── test_command_line.py ├── util_classes.py └── utils.py /.github/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/.github/SETUP.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/README.md -------------------------------------------------------------------------------- /command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/command_line.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/config.py -------------------------------------------------------------------------------- /files/base_url.txt: -------------------------------------------------------------------------------- 1 | http://dl.node-webkit.org/v{}/ 2 | -------------------------------------------------------------------------------- /files/compressors/upx-linux-x32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/compressors/upx-linux-x32 -------------------------------------------------------------------------------- /files/compressors/upx-linux-x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/compressors/upx-linux-x64 -------------------------------------------------------------------------------- /files/compressors/upx-mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/compressors/upx-mac -------------------------------------------------------------------------------- /files/compressors/upx-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/compressors/upx-win.exe -------------------------------------------------------------------------------- /files/env_vars.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/env_vars.bash -------------------------------------------------------------------------------- /files/env_vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/env_vars.bat -------------------------------------------------------------------------------- /files/env_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/env_vars.py -------------------------------------------------------------------------------- /files/images/app_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/app_settings.png -------------------------------------------------------------------------------- /files/images/app_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/app_settings.svg -------------------------------------------------------------------------------- /files/images/compress_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/compress_settings.png -------------------------------------------------------------------------------- /files/images/compress_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/compress_settings.svg -------------------------------------------------------------------------------- /files/images/download_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/download_settings.png -------------------------------------------------------------------------------- /files/images/download_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/download_settings.svg -------------------------------------------------------------------------------- /files/images/export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/export_settings.png -------------------------------------------------------------------------------- /files/images/export_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/export_settings.svg -------------------------------------------------------------------------------- /files/images/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/folder_open.png -------------------------------------------------------------------------------- /files/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/icon.png -------------------------------------------------------------------------------- /files/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/icon.svg -------------------------------------------------------------------------------- /files/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/warning.png -------------------------------------------------------------------------------- /files/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/warning.svg -------------------------------------------------------------------------------- /files/images/window_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/window_settings.png -------------------------------------------------------------------------------- /files/images/window_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/images/window_settings.svg -------------------------------------------------------------------------------- /files/nw-versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/nw-versions.txt -------------------------------------------------------------------------------- /files/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/files/settings.cfg -------------------------------------------------------------------------------- /files/version.txt: -------------------------------------------------------------------------------- 1 | v0.7.2b 2 | -------------------------------------------------------------------------------- /image_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_utils/icns_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/image_utils/icns_info.py -------------------------------------------------------------------------------- /image_utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/image_utils/image_utils.py -------------------------------------------------------------------------------- /image_utils/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/image_utils/png.py -------------------------------------------------------------------------------- /image_utils/pycns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/image_utils/pycns.py -------------------------------------------------------------------------------- /images/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/images/icon.icns -------------------------------------------------------------------------------- /images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/images/icon.ico -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/images/icon.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/main.py -------------------------------------------------------------------------------- /pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/pe.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/scripts/Info.plist -------------------------------------------------------------------------------- /scripts/Web2Exe.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/scripts/Web2Exe.nsi -------------------------------------------------------------------------------- /scripts/build_command_line_linux.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/scripts/build_command_line_linux.bash -------------------------------------------------------------------------------- /scripts/build_mac.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/scripts/build_mac.bash -------------------------------------------------------------------------------- /scripts/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/scripts/build_windows.bat -------------------------------------------------------------------------------- /scripts/upload_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/scripts/upload_release.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/tests/test_command_line.py -------------------------------------------------------------------------------- /util_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/util_classes.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwutils/Web2Executable/HEAD/utils.py --------------------------------------------------------------------------------