├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .stylelintrc ├── .tern-project ├── .travis.yml ├── README.md ├── app ├── actions │ ├── navigator.js │ └── view.js ├── app.css ├── app.html ├── app.icns ├── components │ ├── Code.css │ ├── Code.js │ ├── Display.css │ ├── Display.js │ ├── Home.css │ ├── Home.js │ ├── Navigator.css │ └── Navigator.js ├── constants │ └── constants.js ├── containers │ ├── App.js │ ├── HomePage.js │ └── Root.js ├── index.js ├── main.dev.js ├── menu.js ├── package.json ├── reducers │ ├── files.js │ ├── index.js │ └── view.js ├── routes.js ├── sagas │ ├── watchers.js │ └── workers.js ├── static │ ├── Lato-Black.ttf │ ├── Lato-BlackItalic.ttf │ ├── Lato-Bold.ttf │ ├── Lato-BoldItalic.ttf │ ├── Lato-Hairline.ttf │ ├── Lato-HairlineItalic.ttf │ ├── Lato-Italic.ttf │ ├── Lato-Light.ttf │ ├── Lato-LightItalic.ttf │ ├── Lato-Regular.ttf │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── SourceCodePro-Black.ttf │ ├── SourceCodePro-Bold.ttf │ ├── SourceCodePro-ExtraLight.ttf │ ├── SourceCodePro-Light.ttf │ ├── SourceCodePro-Medium.ttf │ ├── SourceCodePro-Regular.ttf │ ├── SourceCodePro-Semibold.ttf │ ├── closed_folder.svg │ ├── file.svg │ └── open_folder.svg ├── store │ ├── configureStore.dev.js │ ├── configureStore.js │ └── configureStore.prod.js ├── utils │ ├── .gitkeep │ └── utils.js └── yarn.lock ├── appveyor.yml ├── package.json ├── resources ├── dmgSettings.json ├── example1.png ├── example2.png ├── fonts │ ├── Lato-Black.ttf │ ├── Lato-BlackItalic.ttf │ ├── Lato-Bold.ttf │ ├── Lato-BoldItalic.ttf │ ├── Lato-Hairline.ttf │ ├── Lato-HairlineItalic.ttf │ ├── Lato-Italic.ttf │ ├── Lato-Light.ttf │ ├── Lato-LightItalic.ttf │ ├── Lato-Regular.ttf │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── SourceCodePro-Black.ttf │ ├── SourceCodePro-Bold.ttf │ ├── SourceCodePro-ExtraLight.ttf │ ├── SourceCodePro-Light.ttf │ ├── SourceCodePro-Medium.ttf │ ├── SourceCodePro-Regular.ttf │ └── SourceCodePro-Semibold.ttf ├── icon.icns ├── icon.ico ├── icon.png └── icons │ ├── 1024x1024.png │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ ├── 64x64.png │ └── 96x96.png ├── webpack.config.base.js ├── webpack.config.eslint.js ├── webpack.config.main.prod.js ├── webpack.config.renderer.dev.dll.js ├── webpack.config.renderer.dev.js ├── webpack.config.renderer.prod.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v6.9.5 2 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard" 3 | } 4 | -------------------------------------------------------------------------------- /.tern-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/.tern-project -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/actions/navigator.js -------------------------------------------------------------------------------- /app/actions/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/actions/view.js -------------------------------------------------------------------------------- /app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/app.css -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/app.html -------------------------------------------------------------------------------- /app/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/app.icns -------------------------------------------------------------------------------- /app/components/Code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/components/Code.css -------------------------------------------------------------------------------- /app/components/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/components/Code.js -------------------------------------------------------------------------------- /app/components/Display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/components/Display.css -------------------------------------------------------------------------------- /app/components/Display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/components/Display.js -------------------------------------------------------------------------------- /app/components/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/components/Home.css -------------------------------------------------------------------------------- /app/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/components/Home.js -------------------------------------------------------------------------------- /app/components/Navigator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/components/Navigator.css -------------------------------------------------------------------------------- /app/components/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/components/Navigator.js -------------------------------------------------------------------------------- /app/constants/constants.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/containers/App.js -------------------------------------------------------------------------------- /app/containers/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/containers/HomePage.js -------------------------------------------------------------------------------- /app/containers/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/containers/Root.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/index.js -------------------------------------------------------------------------------- /app/main.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/main.dev.js -------------------------------------------------------------------------------- /app/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/menu.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/package.json -------------------------------------------------------------------------------- /app/reducers/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/reducers/files.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/reducers/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/reducers/view.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/routes.js -------------------------------------------------------------------------------- /app/sagas/watchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/sagas/watchers.js -------------------------------------------------------------------------------- /app/sagas/workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/sagas/workers.js -------------------------------------------------------------------------------- /app/static/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-Black.ttf -------------------------------------------------------------------------------- /app/static/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /app/static/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-Bold.ttf -------------------------------------------------------------------------------- /app/static/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /app/static/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-Hairline.ttf -------------------------------------------------------------------------------- /app/static/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /app/static/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-Italic.ttf -------------------------------------------------------------------------------- /app/static/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-Light.ttf -------------------------------------------------------------------------------- /app/static/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /app/static/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Lato-Regular.ttf -------------------------------------------------------------------------------- /app/static/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-Black.ttf -------------------------------------------------------------------------------- /app/static/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /app/static/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-Bold.ttf -------------------------------------------------------------------------------- /app/static/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /app/static/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-Italic.ttf -------------------------------------------------------------------------------- /app/static/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-Light.ttf -------------------------------------------------------------------------------- /app/static/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /app/static/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-Medium.ttf -------------------------------------------------------------------------------- /app/static/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /app/static/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-Regular.ttf -------------------------------------------------------------------------------- /app/static/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-Thin.ttf -------------------------------------------------------------------------------- /app/static/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /app/static/SourceCodePro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/SourceCodePro-Black.ttf -------------------------------------------------------------------------------- /app/static/SourceCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/SourceCodePro-Bold.ttf -------------------------------------------------------------------------------- /app/static/SourceCodePro-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/SourceCodePro-ExtraLight.ttf -------------------------------------------------------------------------------- /app/static/SourceCodePro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/SourceCodePro-Light.ttf -------------------------------------------------------------------------------- /app/static/SourceCodePro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/SourceCodePro-Medium.ttf -------------------------------------------------------------------------------- /app/static/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /app/static/SourceCodePro-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/SourceCodePro-Semibold.ttf -------------------------------------------------------------------------------- /app/static/closed_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/closed_folder.svg -------------------------------------------------------------------------------- /app/static/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/file.svg -------------------------------------------------------------------------------- /app/static/open_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/static/open_folder.svg -------------------------------------------------------------------------------- /app/store/configureStore.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/store/configureStore.dev.js -------------------------------------------------------------------------------- /app/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/store/configureStore.js -------------------------------------------------------------------------------- /app/store/configureStore.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/store/configureStore.prod.js -------------------------------------------------------------------------------- /app/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/utils/utils.js -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/package.json -------------------------------------------------------------------------------- /resources/dmgSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/dmgSettings.json -------------------------------------------------------------------------------- /resources/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/example1.png -------------------------------------------------------------------------------- /resources/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/example2.png -------------------------------------------------------------------------------- /resources/fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-Hairline.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/SourceCodePro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/SourceCodePro-Black.ttf -------------------------------------------------------------------------------- /resources/fonts/SourceCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/SourceCodePro-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/SourceCodePro-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/SourceCodePro-ExtraLight.ttf -------------------------------------------------------------------------------- /resources/fonts/SourceCodePro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/SourceCodePro-Light.ttf -------------------------------------------------------------------------------- /resources/fonts/SourceCodePro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/SourceCodePro-Medium.ttf -------------------------------------------------------------------------------- /resources/fonts/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/SourceCodePro-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/fonts/SourceCodePro-Semibold.ttf -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/1024x1024.png -------------------------------------------------------------------------------- /resources/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/128x128.png -------------------------------------------------------------------------------- /resources/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/16x16.png -------------------------------------------------------------------------------- /resources/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/24x24.png -------------------------------------------------------------------------------- /resources/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/256x256.png -------------------------------------------------------------------------------- /resources/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/32x32.png -------------------------------------------------------------------------------- /resources/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/48x48.png -------------------------------------------------------------------------------- /resources/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/512x512.png -------------------------------------------------------------------------------- /resources/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/64x64.png -------------------------------------------------------------------------------- /resources/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/resources/icons/96x96.png -------------------------------------------------------------------------------- /webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/webpack.config.base.js -------------------------------------------------------------------------------- /webpack.config.eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/webpack.config.eslint.js -------------------------------------------------------------------------------- /webpack.config.main.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/webpack.config.main.prod.js -------------------------------------------------------------------------------- /webpack.config.renderer.dev.dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/webpack.config.renderer.dev.dll.js -------------------------------------------------------------------------------- /webpack.config.renderer.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/webpack.config.renderer.dev.js -------------------------------------------------------------------------------- /webpack.config.renderer.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/webpack.config.renderer.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixander/Ceruleum/HEAD/yarn.lock --------------------------------------------------------------------------------