├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── app └── main.js ├── index.js ├── package.json ├── src ├── CMakeLists.txt ├── Info.plist ├── launchui.icns ├── launchui.ico ├── launchui.rc └── main.cpp └── tools ├── build-launchui.js ├── build-libui-node.js ├── build-libui.js ├── build-node.js ├── download-deps.json ├── download.js ├── package.js ├── utils.js └── win32-utils.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | build 3 | deps 4 | node_modules 5 | packages 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/README.md -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/app/main.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/package.json -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/src/Info.plist -------------------------------------------------------------------------------- /src/launchui.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/src/launchui.icns -------------------------------------------------------------------------------- /src/launchui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/src/launchui.ico -------------------------------------------------------------------------------- /src/launchui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/src/launchui.rc -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tools/build-launchui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/build-launchui.js -------------------------------------------------------------------------------- /tools/build-libui-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/build-libui-node.js -------------------------------------------------------------------------------- /tools/build-libui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/build-libui.js -------------------------------------------------------------------------------- /tools/build-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/build-node.js -------------------------------------------------------------------------------- /tools/download-deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/download-deps.json -------------------------------------------------------------------------------- /tools/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/download.js -------------------------------------------------------------------------------- /tools/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/package.js -------------------------------------------------------------------------------- /tools/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/utils.js -------------------------------------------------------------------------------- /tools/win32-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mimecorg/launchui/HEAD/tools/win32-utils.js --------------------------------------------------------------------------------