├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── .prettierignore ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── app ├── lib │ ├── Events.ts │ └── i18n │ │ ├── de-AT.json │ │ ├── de-CH.json │ │ ├── de-DE.json │ │ ├── de.json │ │ ├── en-US.json │ │ ├── en.json │ │ └── i18n.ts ├── main │ └── src │ │ ├── AppUpdater.ts │ │ ├── Checksum.ts │ │ ├── Database.ts │ │ ├── IPCHandler.ts │ │ ├── MenuBuilder.ts │ │ ├── TouchBarBuilder.ts │ │ └── main.ts ├── package-lock.json ├── package.json └── renderer │ ├── index.html │ └── src │ ├── Notifications.tsx │ ├── actions │ ├── checksum │ │ └── index.ts │ ├── database │ │ └── index.ts │ ├── ipc.ts │ ├── settings │ │ └── index.ts │ └── update │ │ └── index.ts │ ├── assets │ └── fonts │ │ ├── checksum_validator.eot │ │ ├── checksum_validator.svg │ │ ├── checksum_validator.ttf │ │ ├── checksum_validator.woff │ │ ├── checksum_validator.woff2 │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── components │ ├── App.tsx │ ├── ChecksOverview.component.tsx │ ├── Checksum.component.tsx │ ├── DownloadModal.component.tsx │ ├── NaviagtionSide.component.tsx │ ├── Settings.component.tsx │ └── base │ │ └── Icon.component.tsx │ ├── entry.tsx │ ├── reducers │ ├── checksum.ts │ ├── database.ts │ ├── index.ts │ ├── settings.ts │ └── update.ts │ ├── store.ts │ └── styles │ ├── ant-default-vars.less │ ├── antd-icons.css │ ├── app.less │ ├── modal.less │ ├── nc-icons.css │ ├── settings.less │ ├── style.less │ └── theme.less ├── assets └── screenshots │ ├── img1.png │ ├── img2.png │ ├── img3.png │ └── img4.png ├── dev-app-update.yml ├── package.json ├── test ├── mocha.opts ├── test.ts └── travis-build.sh ├── tsconfig.json ├── tslint.json └── webpack.config.js /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | webpack.config.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": false 3 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/README.md -------------------------------------------------------------------------------- /app/lib/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/lib/Events.ts -------------------------------------------------------------------------------- /app/lib/i18n/de-AT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/lib/i18n/de-AT.json -------------------------------------------------------------------------------- /app/lib/i18n/de-CH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/lib/i18n/de-CH.json -------------------------------------------------------------------------------- /app/lib/i18n/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/lib/i18n/de-DE.json -------------------------------------------------------------------------------- /app/lib/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/lib/i18n/de.json -------------------------------------------------------------------------------- /app/lib/i18n/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/lib/i18n/en-US.json -------------------------------------------------------------------------------- /app/lib/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/lib/i18n/en.json -------------------------------------------------------------------------------- /app/lib/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/lib/i18n/i18n.ts -------------------------------------------------------------------------------- /app/main/src/AppUpdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/main/src/AppUpdater.ts -------------------------------------------------------------------------------- /app/main/src/Checksum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/main/src/Checksum.ts -------------------------------------------------------------------------------- /app/main/src/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/main/src/Database.ts -------------------------------------------------------------------------------- /app/main/src/IPCHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/main/src/IPCHandler.ts -------------------------------------------------------------------------------- /app/main/src/MenuBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/main/src/MenuBuilder.ts -------------------------------------------------------------------------------- /app/main/src/TouchBarBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/main/src/TouchBarBuilder.ts -------------------------------------------------------------------------------- /app/main/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/main/src/main.ts -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/package.json -------------------------------------------------------------------------------- /app/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/index.html -------------------------------------------------------------------------------- /app/renderer/src/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/Notifications.tsx -------------------------------------------------------------------------------- /app/renderer/src/actions/checksum/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/actions/checksum/index.ts -------------------------------------------------------------------------------- /app/renderer/src/actions/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/actions/database/index.ts -------------------------------------------------------------------------------- /app/renderer/src/actions/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/actions/ipc.ts -------------------------------------------------------------------------------- /app/renderer/src/actions/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/actions/settings/index.ts -------------------------------------------------------------------------------- /app/renderer/src/actions/update/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/actions/update/index.ts -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/checksum_validator.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/checksum_validator.eot -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/checksum_validator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/checksum_validator.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/checksum_validator.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/checksum_validator.ttf -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/checksum_validator.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/checksum_validator.woff -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/checksum_validator.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/checksum_validator.woff2 -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/iconfont.eot -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/iconfont.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/assets/fonts/iconfont.woff -------------------------------------------------------------------------------- /app/renderer/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/components/App.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/ChecksOverview.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/components/ChecksOverview.component.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Checksum.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/components/Checksum.component.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/DownloadModal.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/components/DownloadModal.component.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/NaviagtionSide.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/components/NaviagtionSide.component.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Settings.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/components/Settings.component.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/base/Icon.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/components/base/Icon.component.tsx -------------------------------------------------------------------------------- /app/renderer/src/entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/entry.tsx -------------------------------------------------------------------------------- /app/renderer/src/reducers/checksum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/reducers/checksum.ts -------------------------------------------------------------------------------- /app/renderer/src/reducers/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/reducers/database.ts -------------------------------------------------------------------------------- /app/renderer/src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/reducers/index.ts -------------------------------------------------------------------------------- /app/renderer/src/reducers/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/reducers/settings.ts -------------------------------------------------------------------------------- /app/renderer/src/reducers/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/reducers/update.ts -------------------------------------------------------------------------------- /app/renderer/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/store.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/ant-default-vars.less: -------------------------------------------------------------------------------- 1 | @primary-color: #8b4d93; 2 | -------------------------------------------------------------------------------- /app/renderer/src/styles/antd-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/styles/antd-icons.css -------------------------------------------------------------------------------- /app/renderer/src/styles/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/styles/app.less -------------------------------------------------------------------------------- /app/renderer/src/styles/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/styles/modal.less -------------------------------------------------------------------------------- /app/renderer/src/styles/nc-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/styles/nc-icons.css -------------------------------------------------------------------------------- /app/renderer/src/styles/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/styles/settings.less -------------------------------------------------------------------------------- /app/renderer/src/styles/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/styles/style.less -------------------------------------------------------------------------------- /app/renderer/src/styles/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/app/renderer/src/styles/theme.less -------------------------------------------------------------------------------- /assets/screenshots/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/assets/screenshots/img1.png -------------------------------------------------------------------------------- /assets/screenshots/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/assets/screenshots/img2.png -------------------------------------------------------------------------------- /assets/screenshots/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/assets/screenshots/img3.png -------------------------------------------------------------------------------- /assets/screenshots/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/assets/screenshots/img4.png -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- 1 | owner: alexanderwe 2 | repo: checksum-validator 3 | provider: github -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/package.json -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/test/test.ts -------------------------------------------------------------------------------- /test/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/test/travis-build.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwe/checksum-validator/HEAD/webpack.config.js --------------------------------------------------------------------------------