├── .gitignore ├── package.json ├── src ├── assets │ ├── css │ │ ├── main.css │ │ └── photon.min.css │ ├── fonts │ │ ├── photon-entypo.eot │ │ ├── photon-entypo.svg │ │ ├── photon-entypo.ttf │ │ └── photon-entypo.woff │ ├── icons │ │ ├── main-icon.icns │ │ ├── main-icon.ico │ │ ├── main-icon.png │ │ ├── tray-icon.ico │ │ └── tray-icon.png │ └── img │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg ├── devtools.js ├── handle-errors.js ├── index.js ├── ipcMainEvents.js └── renderer │ ├── index.html │ ├── lib │ └── filterous2-2.0.0.min.js │ ├── main-window │ ├── filters.js │ ├── frontend.js │ ├── images-ui.js │ ├── ipcRendererEvents.js │ └── menu.js │ ├── preferences.html │ └── prefs-window │ └── preferences-frontend.js └── tests └── test-demo.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/.gitignore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/css/main.css -------------------------------------------------------------------------------- /src/assets/css/photon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/css/photon.min.css -------------------------------------------------------------------------------- /src/assets/fonts/photon-entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/fonts/photon-entypo.eot -------------------------------------------------------------------------------- /src/assets/fonts/photon-entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/fonts/photon-entypo.svg -------------------------------------------------------------------------------- /src/assets/fonts/photon-entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/fonts/photon-entypo.ttf -------------------------------------------------------------------------------- /src/assets/fonts/photon-entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/fonts/photon-entypo.woff -------------------------------------------------------------------------------- /src/assets/icons/main-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/icons/main-icon.icns -------------------------------------------------------------------------------- /src/assets/icons/main-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/icons/main-icon.ico -------------------------------------------------------------------------------- /src/assets/icons/main-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/icons/main-icon.png -------------------------------------------------------------------------------- /src/assets/icons/tray-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/icons/tray-icon.ico -------------------------------------------------------------------------------- /src/assets/icons/tray-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/icons/tray-icon.png -------------------------------------------------------------------------------- /src/assets/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/img/1.jpg -------------------------------------------------------------------------------- /src/assets/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/img/2.jpg -------------------------------------------------------------------------------- /src/assets/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/img/3.jpg -------------------------------------------------------------------------------- /src/assets/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/img/4.jpg -------------------------------------------------------------------------------- /src/assets/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/assets/img/5.jpg -------------------------------------------------------------------------------- /src/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/devtools.js -------------------------------------------------------------------------------- /src/handle-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/handle-errors.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/index.js -------------------------------------------------------------------------------- /src/ipcMainEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/ipcMainEvents.js -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/lib/filterous2-2.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/lib/filterous2-2.0.0.min.js -------------------------------------------------------------------------------- /src/renderer/main-window/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/main-window/filters.js -------------------------------------------------------------------------------- /src/renderer/main-window/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/main-window/frontend.js -------------------------------------------------------------------------------- /src/renderer/main-window/images-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/main-window/images-ui.js -------------------------------------------------------------------------------- /src/renderer/main-window/ipcRendererEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/main-window/ipcRendererEvents.js -------------------------------------------------------------------------------- /src/renderer/main-window/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/main-window/menu.js -------------------------------------------------------------------------------- /src/renderer/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/preferences.html -------------------------------------------------------------------------------- /src/renderer/prefs-window/preferences-frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/src/renderer/prefs-window/preferences-frontend.js -------------------------------------------------------------------------------- /tests/test-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-electron/HEAD/tests/test-demo.js --------------------------------------------------------------------------------