├── README.md ├── res ├── win │ ├── icon.ico │ ├── ia32 │ │ └── nw.exe │ └── x64 │ │ └── nw.exe └── osx │ ├── app.icns │ └── document.icns └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # kiss-gui 2 | Multiplatform standalone Kiss GUI 3 | 4 | -------------------------------------------------------------------------------- /res/win/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyduino/kiss-gui/HEAD/res/win/icon.ico -------------------------------------------------------------------------------- /res/win/ia32/nw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyduino/kiss-gui/HEAD/res/win/ia32/nw.exe -------------------------------------------------------------------------------- /res/win/x64/nw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyduino/kiss-gui/HEAD/res/win/x64/nw.exe -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kiss GUI", 3 | "description": "Kiss GUI", 4 | "version": "2.0.2", 5 | "devDependencies": { 6 | "grunt-appdmg": "^0.4.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /res/osx/app.icns: -------------------------------------------------------------------------------- 1 | How to use this icon: 2 | 3 | Step 1: Copy the icon to the clipboard 4 | a) Click on this file from the Finder 5 | b) Choose 'Get Info' from the 'File' menu. 6 | c) In the info window that pops up, click on the icon 7 | d) Choose 'Copy' from the 'Edit' menu. 8 | e) Close the info window 9 | 10 | Step 2: Paste the icon to the desired item 11 | a) Go to the item in the Finder that you want a custom icon 12 | b) Click the item (file, folder, disk, etc) 13 | b) Choose 'Get Info' from the 'File' menu. 14 | c) In the info window that pops up, click on the icon 15 | d) Choose 'Paste' from the 'Edit' menu. 16 | e) Close the info window 17 | 18 | Step 3: 19 | Enjoy your newly customized icon! 20 | 21 | For more thorough directions, see Apple's website at: 22 | http://www.apple.com/support/mac101/customize/6/ 23 | -------------------------------------------------------------------------------- /res/osx/document.icns: -------------------------------------------------------------------------------- 1 | How to use this icon: 2 | 3 | Step 1: Copy the icon to the clipboard 4 | a) Click on this file from the Finder 5 | b) Choose 'Get Info' from the 'File' menu. 6 | c) In the info window that pops up, click on the icon 7 | d) Choose 'Copy' from the 'Edit' menu. 8 | e) Close the info window 9 | 10 | Step 2: Paste the icon to the desired item 11 | a) Go to the item in the Finder that you want a custom icon 12 | b) Click the item (file, folder, disk, etc) 13 | b) Choose 'Get Info' from the 'File' menu. 14 | c) In the info window that pops up, click on the icon 15 | d) Choose 'Paste' from the 'Edit' menu. 16 | e) Close the info window 17 | 18 | Step 3: 19 | Enjoy your newly customized icon! 20 | 21 | For more thorough directions, see Apple's website at: 22 | http://www.apple.com/support/mac101/customize/6/ 23 | --------------------------------------------------------------------------------