https://github.com/dgmid/appiconset-generator
A utility app for generating Apple .appiconsets for macOS, iOS and watchOS.
https://github.com/dgmid/appiconset-generator
Last synced: 12 months ago
JSON representation
A utility app for generating Apple .appiconsets for macOS, iOS and watchOS.
- Host: GitHub
- URL: https://github.com/dgmid/appiconset-generator
- Owner: dgmid
- License: mit
- Created: 2019-03-10T11:44:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T16:38:41.000Z (over 3 years ago)
- Last Synced: 2025-07-01T11:05:10.421Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.24 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#  Appiconset Generator
A utility app for generating Apple **appiconsets** for **macOS** **iOS** and **watchOS** from an original 1024 x 1024 design. All icon sizes and a Contents.json file are automatically generated and saved in a `.appiconset` folder.
You can choose the image interpolation algorithm used from:
- Nearest Neighbour
- Cubic (Catmull–Rom spline)
- Mitchell-Netravali spline
- Lanczos a=2
- Lanczos a=3
## Main Window

## Touch Bar
Appicionset Generator has support for the Touch Bar

## Requirements
[node.js / npm](https://www.npmjs.com/get-npm)
To modify a/o build this project you will need to install electron-packager
```shell
npm install electron-packager -g
```
## Usage
`cd` to the project directory and run:
```shell
npm install
```
then run
```shell
npm run rebuild
```
To modify the `html` / `css` / `js` run:
```shell
gulp watch
```
To test the app run:
```shell
npm start
```
To update all files prior to packaging run:
```shell
gulp build
```
To package the final app run:
```shell
npm run package
```
The packaged app will be written to `build/Appiconset Generator-darwin-x64/` in the project directory.
**Note**: packaging the app runs `npm prune -production` and so you will need to run `npm install` again before making any further modifications.
## License
**Appiconset Generator** is released under the MIT Licence