├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .lintstagedrc ├── .nvmrc ├── .stylelintrc ├── .tern-project ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app ├── .eslintrc ├── analytics │ └── middleware.js ├── app.global.scss ├── app.html ├── app.icns ├── assets │ ├── images │ │ ├── blackLogo.png │ │ ├── builtwithluv.png │ │ ├── focus.png │ │ ├── icon-focus@2x.png │ │ ├── icon-long@2x.png │ │ ├── icon-mac@2x.png │ │ ├── icon-short@2x.png │ │ ├── icon-windows@2x.png │ │ ├── logo.png │ │ ├── longbreak.png │ │ ├── settings.png │ │ ├── shortbreak.png │ │ └── whiteLogo.png │ └── sounds │ │ ├── corsica-ding.mp3 │ │ ├── tick.mp3 │ │ └── water-drop.mp3 ├── channels │ └── index.js ├── components │ ├── App │ │ ├── actions.js │ │ ├── app.js │ │ ├── index.js │ │ ├── reducer.js │ │ └── types.js │ ├── Charts │ │ ├── actions.js │ │ ├── charts.js │ │ ├── charts.scss │ │ ├── components │ │ │ └── summary.js │ │ ├── index.js │ │ ├── reducer.js │ │ └── types.js │ ├── Home │ │ ├── home.js │ │ └── index.js │ ├── Library │ │ ├── components │ │ │ ├── add-sound.js │ │ │ └── token.js │ │ ├── index.js │ │ ├── library.js │ │ └── library.scss │ ├── MiniView │ │ ├── index.js │ │ ├── mini-view.js │ │ └── mini-view.scss │ ├── Settings │ │ ├── components │ │ │ ├── colors-panel.js │ │ │ ├── index.js │ │ │ ├── notifications-panel.js │ │ │ ├── sounds-panel.js │ │ │ ├── system-panel.js │ │ │ └── timer-panel.js │ │ ├── index.js │ │ ├── settings.js │ │ └── settings.scss │ └── common │ │ ├── CountdownTimer │ │ ├── components │ │ │ └── media-controls.js │ │ ├── countdown-timer.js │ │ ├── countdown-timer.scss │ │ └── index.js │ │ ├── GeneralAlerts │ │ ├── actions.js │ │ ├── general-alerts.js │ │ ├── index.js │ │ ├── reducer.js │ │ └── types.js │ │ ├── Header │ │ ├── header.js │ │ └── index.js │ │ ├── IssueReporter │ │ ├── index.js │ │ └── issue-reporter.js │ │ ├── LineGraph │ │ ├── index.js │ │ └── line-graph.js │ │ ├── MediaControls │ │ ├── actions.js │ │ ├── index.js │ │ ├── media-controls.js │ │ ├── reducer.js │ │ └── types.js │ │ ├── Menu │ │ ├── index.js │ │ ├── menu.js │ │ └── menu.scss │ │ ├── MenuBar │ │ ├── index.js │ │ ├── menu-bar.js │ │ └── menu-bar.scss │ │ ├── OverlaySpinner │ │ ├── index.js │ │ └── overlay-spinner.js │ │ ├── PrivateRoute │ │ ├── index.js │ │ └── private-route.js │ │ ├── Rounds │ │ ├── actions.js │ │ ├── index.js │ │ ├── reducer.js │ │ ├── rounds.js │ │ ├── rounds.scss │ │ └── types.js │ │ ├── Sounds │ │ ├── actions.js │ │ ├── library.js │ │ ├── reducer.js │ │ └── types.js │ │ └── TitleBar │ │ ├── components │ │ └── add-sound.js │ │ ├── index.js │ │ ├── title-bar.js │ │ └── title-bar.scss ├── enums │ └── index.js ├── index.js ├── main.dev.js ├── main │ ├── index.js │ ├── menu │ │ ├── darwin.js │ │ ├── index.js │ │ └── windows.js │ ├── tray │ │ └── index.js │ └── updater │ │ └── index.js ├── package.json ├── pages │ └── welcome │ │ ├── components │ │ ├── index.js │ │ ├── navigation.js │ │ ├── slideFive.js │ │ ├── slideFour.js │ │ ├── slideOne.js │ │ ├── slideThree.js │ │ └── slideTwo.js │ │ ├── index.js │ │ ├── welcome-slides.js │ │ └── welcome-slides.scss ├── reducers │ └── index.js ├── root.js ├── routes.js ├── selectors │ ├── app.selectors.js │ ├── common.selectors.js │ ├── mediaControls.selectors.js │ ├── rounds.selectors.js │ └── sounds.selectors.js ├── store │ ├── configureStore.dev.js │ ├── configureStore.js │ └── configureStore.prod.js ├── styles │ ├── colors.scss │ ├── display.scss │ ├── fonts.scss │ ├── global.scss │ ├── overrides.scss │ ├── positioning.scss │ ├── sizes.scss │ ├── typography.scss │ ├── utils.scss │ └── variables.scss ├── utils │ ├── countdown-timer.util.js │ ├── date.util.js │ ├── electron-settings.util.js │ ├── env.util.js │ ├── flush.util.js │ ├── install-extensions.util.js │ ├── logo.util.js │ ├── notifications.util.js │ ├── path.util.js │ ├── phases.util.js │ ├── platform.util.js │ ├── release-notes.util.js │ ├── routes.util.js │ ├── sounds.util.js │ └── windows.util.js ├── welcome.html └── yarn.lock ├── appveyor.yml ├── electron-builder.json ├── flow-typed ├── custom.js └── module_vx.x.x.js ├── internals ├── flow │ └── CSSModule.js.flow ├── img │ ├── eslint-padded-90.png │ ├── eslint-padded.png │ ├── eslint.png │ ├── flow-padded-90.png │ ├── flow-padded.png │ ├── flow.png │ ├── jest-padded-90.png │ ├── jest-padded.png │ ├── jest.png │ ├── js-padded.png │ ├── js.png │ ├── npm.png │ ├── react-padded-90.png │ ├── react-padded.png │ ├── react-router-padded-90.png │ ├── react-router-padded.png │ ├── react-router.png │ ├── react.png │ ├── redux-padded-90.png │ ├── redux-padded.png │ ├── redux.png │ ├── webpack-padded-90.png │ ├── webpack-padded.png │ ├── webpack.png │ ├── yarn-padded-90.png │ ├── yarn-padded.png │ └── yarn.png └── mocks │ └── fileMock.js ├── jsconfig.json ├── package.json ├── resources ├── icon.icns ├── icon.ico ├── icon.png ├── icons │ ├── mac │ │ ├── 1024x1024.png │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ └── 96x96.png │ └── windows │ │ ├── 1024x1024.png │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 64x64.png │ │ └── 96x96.png └── pdf │ ├── logo-icon-mac.psd │ └── logo-icon-windows.psd ├── test ├── .eslintrc ├── __mocks__ │ └── electron.js ├── actions │ └── .gitkeep ├── components │ ├── .gitkeep │ └── media-controls.component.spec.js ├── e2e │ └── e2e.spec.js ├── reducers │ └── .gitkeep ├── runTests.js ├── selectors │ └── home │ │ └── home.selectors.js └── setup.js ├── 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/builtwithluv/ZenFocus/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v6.9.5 2 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard" 3 | } 4 | -------------------------------------------------------------------------------- /.tern-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.tern-project -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/README.md -------------------------------------------------------------------------------- /app/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/.eslintrc -------------------------------------------------------------------------------- /app/analytics/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/analytics/middleware.js -------------------------------------------------------------------------------- /app/app.global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/app.global.scss -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/app.html -------------------------------------------------------------------------------- /app/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/app.icns -------------------------------------------------------------------------------- /app/assets/images/blackLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/blackLogo.png -------------------------------------------------------------------------------- /app/assets/images/builtwithluv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/builtwithluv.png -------------------------------------------------------------------------------- /app/assets/images/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/focus.png -------------------------------------------------------------------------------- /app/assets/images/icon-focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/icon-focus@2x.png -------------------------------------------------------------------------------- /app/assets/images/icon-long@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/icon-long@2x.png -------------------------------------------------------------------------------- /app/assets/images/icon-mac@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/icon-mac@2x.png -------------------------------------------------------------------------------- /app/assets/images/icon-short@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/icon-short@2x.png -------------------------------------------------------------------------------- /app/assets/images/icon-windows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/icon-windows@2x.png -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/longbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/longbreak.png -------------------------------------------------------------------------------- /app/assets/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/settings.png -------------------------------------------------------------------------------- /app/assets/images/shortbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/shortbreak.png -------------------------------------------------------------------------------- /app/assets/images/whiteLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/images/whiteLogo.png -------------------------------------------------------------------------------- /app/assets/sounds/corsica-ding.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/sounds/corsica-ding.mp3 -------------------------------------------------------------------------------- /app/assets/sounds/tick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/sounds/tick.mp3 -------------------------------------------------------------------------------- /app/assets/sounds/water-drop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/assets/sounds/water-drop.mp3 -------------------------------------------------------------------------------- /app/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/channels/index.js -------------------------------------------------------------------------------- /app/components/App/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/App/actions.js -------------------------------------------------------------------------------- /app/components/App/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/App/app.js -------------------------------------------------------------------------------- /app/components/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/App/index.js -------------------------------------------------------------------------------- /app/components/App/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/App/reducer.js -------------------------------------------------------------------------------- /app/components/App/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/App/types.js -------------------------------------------------------------------------------- /app/components/Charts/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Charts/actions.js -------------------------------------------------------------------------------- /app/components/Charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Charts/charts.js -------------------------------------------------------------------------------- /app/components/Charts/charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Charts/charts.scss -------------------------------------------------------------------------------- /app/components/Charts/components/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Charts/components/summary.js -------------------------------------------------------------------------------- /app/components/Charts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Charts/index.js -------------------------------------------------------------------------------- /app/components/Charts/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Charts/reducer.js -------------------------------------------------------------------------------- /app/components/Charts/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Charts/types.js -------------------------------------------------------------------------------- /app/components/Home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Home/home.js -------------------------------------------------------------------------------- /app/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Home/index.js -------------------------------------------------------------------------------- /app/components/Library/components/add-sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Library/components/add-sound.js -------------------------------------------------------------------------------- /app/components/Library/components/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Library/components/token.js -------------------------------------------------------------------------------- /app/components/Library/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Library/index.js -------------------------------------------------------------------------------- /app/components/Library/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Library/library.js -------------------------------------------------------------------------------- /app/components/Library/library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Library/library.scss -------------------------------------------------------------------------------- /app/components/MiniView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/MiniView/index.js -------------------------------------------------------------------------------- /app/components/MiniView/mini-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/MiniView/mini-view.js -------------------------------------------------------------------------------- /app/components/MiniView/mini-view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/MiniView/mini-view.scss -------------------------------------------------------------------------------- /app/components/Settings/components/colors-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/components/colors-panel.js -------------------------------------------------------------------------------- /app/components/Settings/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/components/index.js -------------------------------------------------------------------------------- /app/components/Settings/components/notifications-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/components/notifications-panel.js -------------------------------------------------------------------------------- /app/components/Settings/components/sounds-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/components/sounds-panel.js -------------------------------------------------------------------------------- /app/components/Settings/components/system-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/components/system-panel.js -------------------------------------------------------------------------------- /app/components/Settings/components/timer-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/components/timer-panel.js -------------------------------------------------------------------------------- /app/components/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/index.js -------------------------------------------------------------------------------- /app/components/Settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/settings.js -------------------------------------------------------------------------------- /app/components/Settings/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/Settings/settings.scss -------------------------------------------------------------------------------- /app/components/common/CountdownTimer/components/media-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/CountdownTimer/components/media-controls.js -------------------------------------------------------------------------------- /app/components/common/CountdownTimer/countdown-timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/CountdownTimer/countdown-timer.js -------------------------------------------------------------------------------- /app/components/common/CountdownTimer/countdown-timer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/CountdownTimer/countdown-timer.scss -------------------------------------------------------------------------------- /app/components/common/CountdownTimer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/CountdownTimer/index.js -------------------------------------------------------------------------------- /app/components/common/GeneralAlerts/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/GeneralAlerts/actions.js -------------------------------------------------------------------------------- /app/components/common/GeneralAlerts/general-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/GeneralAlerts/general-alerts.js -------------------------------------------------------------------------------- /app/components/common/GeneralAlerts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/GeneralAlerts/index.js -------------------------------------------------------------------------------- /app/components/common/GeneralAlerts/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/GeneralAlerts/reducer.js -------------------------------------------------------------------------------- /app/components/common/GeneralAlerts/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/GeneralAlerts/types.js -------------------------------------------------------------------------------- /app/components/common/Header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Header/header.js -------------------------------------------------------------------------------- /app/components/common/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Header/index.js -------------------------------------------------------------------------------- /app/components/common/IssueReporter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/IssueReporter/index.js -------------------------------------------------------------------------------- /app/components/common/IssueReporter/issue-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/IssueReporter/issue-reporter.js -------------------------------------------------------------------------------- /app/components/common/LineGraph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/LineGraph/index.js -------------------------------------------------------------------------------- /app/components/common/LineGraph/line-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/LineGraph/line-graph.js -------------------------------------------------------------------------------- /app/components/common/MediaControls/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/MediaControls/actions.js -------------------------------------------------------------------------------- /app/components/common/MediaControls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/MediaControls/index.js -------------------------------------------------------------------------------- /app/components/common/MediaControls/media-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/MediaControls/media-controls.js -------------------------------------------------------------------------------- /app/components/common/MediaControls/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/MediaControls/reducer.js -------------------------------------------------------------------------------- /app/components/common/MediaControls/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/MediaControls/types.js -------------------------------------------------------------------------------- /app/components/common/Menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Menu/index.js -------------------------------------------------------------------------------- /app/components/common/Menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Menu/menu.js -------------------------------------------------------------------------------- /app/components/common/Menu/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Menu/menu.scss -------------------------------------------------------------------------------- /app/components/common/MenuBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/MenuBar/index.js -------------------------------------------------------------------------------- /app/components/common/MenuBar/menu-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/MenuBar/menu-bar.js -------------------------------------------------------------------------------- /app/components/common/MenuBar/menu-bar.scss: -------------------------------------------------------------------------------- 1 | .menu-bar { 2 | height: 30px; 3 | } 4 | -------------------------------------------------------------------------------- /app/components/common/OverlaySpinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/OverlaySpinner/index.js -------------------------------------------------------------------------------- /app/components/common/OverlaySpinner/overlay-spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/OverlaySpinner/overlay-spinner.js -------------------------------------------------------------------------------- /app/components/common/PrivateRoute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/PrivateRoute/index.js -------------------------------------------------------------------------------- /app/components/common/PrivateRoute/private-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/PrivateRoute/private-route.js -------------------------------------------------------------------------------- /app/components/common/Rounds/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Rounds/actions.js -------------------------------------------------------------------------------- /app/components/common/Rounds/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Rounds/index.js -------------------------------------------------------------------------------- /app/components/common/Rounds/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Rounds/reducer.js -------------------------------------------------------------------------------- /app/components/common/Rounds/rounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Rounds/rounds.js -------------------------------------------------------------------------------- /app/components/common/Rounds/rounds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Rounds/rounds.scss -------------------------------------------------------------------------------- /app/components/common/Rounds/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Rounds/types.js -------------------------------------------------------------------------------- /app/components/common/Sounds/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Sounds/actions.js -------------------------------------------------------------------------------- /app/components/common/Sounds/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Sounds/library.js -------------------------------------------------------------------------------- /app/components/common/Sounds/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Sounds/reducer.js -------------------------------------------------------------------------------- /app/components/common/Sounds/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/Sounds/types.js -------------------------------------------------------------------------------- /app/components/common/TitleBar/components/add-sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/TitleBar/components/add-sound.js -------------------------------------------------------------------------------- /app/components/common/TitleBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/TitleBar/index.js -------------------------------------------------------------------------------- /app/components/common/TitleBar/title-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/TitleBar/title-bar.js -------------------------------------------------------------------------------- /app/components/common/TitleBar/title-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/components/common/TitleBar/title-bar.scss -------------------------------------------------------------------------------- /app/enums/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/enums/index.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/index.js -------------------------------------------------------------------------------- /app/main.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/main.dev.js -------------------------------------------------------------------------------- /app/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/main/index.js -------------------------------------------------------------------------------- /app/main/menu/darwin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/main/menu/darwin.js -------------------------------------------------------------------------------- /app/main/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/main/menu/index.js -------------------------------------------------------------------------------- /app/main/menu/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/main/menu/windows.js -------------------------------------------------------------------------------- /app/main/tray/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/main/tray/index.js -------------------------------------------------------------------------------- /app/main/updater/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/main/updater/index.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/package.json -------------------------------------------------------------------------------- /app/pages/welcome/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/components/index.js -------------------------------------------------------------------------------- /app/pages/welcome/components/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/components/navigation.js -------------------------------------------------------------------------------- /app/pages/welcome/components/slideFive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/components/slideFive.js -------------------------------------------------------------------------------- /app/pages/welcome/components/slideFour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/components/slideFour.js -------------------------------------------------------------------------------- /app/pages/welcome/components/slideOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/components/slideOne.js -------------------------------------------------------------------------------- /app/pages/welcome/components/slideThree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/components/slideThree.js -------------------------------------------------------------------------------- /app/pages/welcome/components/slideTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/components/slideTwo.js -------------------------------------------------------------------------------- /app/pages/welcome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/index.js -------------------------------------------------------------------------------- /app/pages/welcome/welcome-slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/welcome-slides.js -------------------------------------------------------------------------------- /app/pages/welcome/welcome-slides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/pages/welcome/welcome-slides.scss -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/root.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/routes.js -------------------------------------------------------------------------------- /app/selectors/app.selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/selectors/app.selectors.js -------------------------------------------------------------------------------- /app/selectors/common.selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/selectors/common.selectors.js -------------------------------------------------------------------------------- /app/selectors/mediaControls.selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/selectors/mediaControls.selectors.js -------------------------------------------------------------------------------- /app/selectors/rounds.selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/selectors/rounds.selectors.js -------------------------------------------------------------------------------- /app/selectors/sounds.selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/selectors/sounds.selectors.js -------------------------------------------------------------------------------- /app/store/configureStore.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/store/configureStore.dev.js -------------------------------------------------------------------------------- /app/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/store/configureStore.js -------------------------------------------------------------------------------- /app/store/configureStore.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/store/configureStore.prod.js -------------------------------------------------------------------------------- /app/styles/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/colors.scss -------------------------------------------------------------------------------- /app/styles/display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/display.scss -------------------------------------------------------------------------------- /app/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/fonts.scss -------------------------------------------------------------------------------- /app/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/global.scss -------------------------------------------------------------------------------- /app/styles/overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/overrides.scss -------------------------------------------------------------------------------- /app/styles/positioning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/positioning.scss -------------------------------------------------------------------------------- /app/styles/sizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/sizes.scss -------------------------------------------------------------------------------- /app/styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/typography.scss -------------------------------------------------------------------------------- /app/styles/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/utils.scss -------------------------------------------------------------------------------- /app/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/styles/variables.scss -------------------------------------------------------------------------------- /app/utils/countdown-timer.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/countdown-timer.util.js -------------------------------------------------------------------------------- /app/utils/date.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/date.util.js -------------------------------------------------------------------------------- /app/utils/electron-settings.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/electron-settings.util.js -------------------------------------------------------------------------------- /app/utils/env.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/env.util.js -------------------------------------------------------------------------------- /app/utils/flush.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/flush.util.js -------------------------------------------------------------------------------- /app/utils/install-extensions.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/install-extensions.util.js -------------------------------------------------------------------------------- /app/utils/logo.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/logo.util.js -------------------------------------------------------------------------------- /app/utils/notifications.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/notifications.util.js -------------------------------------------------------------------------------- /app/utils/path.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/path.util.js -------------------------------------------------------------------------------- /app/utils/phases.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/phases.util.js -------------------------------------------------------------------------------- /app/utils/platform.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/platform.util.js -------------------------------------------------------------------------------- /app/utils/release-notes.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/release-notes.util.js -------------------------------------------------------------------------------- /app/utils/routes.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/routes.util.js -------------------------------------------------------------------------------- /app/utils/sounds.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/sounds.util.js -------------------------------------------------------------------------------- /app/utils/windows.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/utils/windows.util.js -------------------------------------------------------------------------------- /app/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/welcome.html -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/appveyor.yml -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/electron-builder.json -------------------------------------------------------------------------------- /flow-typed/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/flow-typed/custom.js -------------------------------------------------------------------------------- /flow-typed/module_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/flow-typed/module_vx.x.x.js -------------------------------------------------------------------------------- /internals/flow/CSSModule.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/flow/CSSModule.js.flow -------------------------------------------------------------------------------- /internals/img/eslint-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/eslint-padded-90.png -------------------------------------------------------------------------------- /internals/img/eslint-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/eslint-padded.png -------------------------------------------------------------------------------- /internals/img/eslint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/eslint.png -------------------------------------------------------------------------------- /internals/img/flow-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/flow-padded-90.png -------------------------------------------------------------------------------- /internals/img/flow-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/flow-padded.png -------------------------------------------------------------------------------- /internals/img/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/flow.png -------------------------------------------------------------------------------- /internals/img/jest-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/jest-padded-90.png -------------------------------------------------------------------------------- /internals/img/jest-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/jest-padded.png -------------------------------------------------------------------------------- /internals/img/jest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/jest.png -------------------------------------------------------------------------------- /internals/img/js-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/js-padded.png -------------------------------------------------------------------------------- /internals/img/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/js.png -------------------------------------------------------------------------------- /internals/img/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/npm.png -------------------------------------------------------------------------------- /internals/img/react-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/react-padded-90.png -------------------------------------------------------------------------------- /internals/img/react-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/react-padded.png -------------------------------------------------------------------------------- /internals/img/react-router-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/react-router-padded-90.png -------------------------------------------------------------------------------- /internals/img/react-router-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/react-router-padded.png -------------------------------------------------------------------------------- /internals/img/react-router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/react-router.png -------------------------------------------------------------------------------- /internals/img/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/react.png -------------------------------------------------------------------------------- /internals/img/redux-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/redux-padded-90.png -------------------------------------------------------------------------------- /internals/img/redux-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/redux-padded.png -------------------------------------------------------------------------------- /internals/img/redux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/redux.png -------------------------------------------------------------------------------- /internals/img/webpack-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/webpack-padded-90.png -------------------------------------------------------------------------------- /internals/img/webpack-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/webpack-padded.png -------------------------------------------------------------------------------- /internals/img/webpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/webpack.png -------------------------------------------------------------------------------- /internals/img/yarn-padded-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/yarn-padded-90.png -------------------------------------------------------------------------------- /internals/img/yarn-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/yarn-padded.png -------------------------------------------------------------------------------- /internals/img/yarn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/internals/img/yarn.png -------------------------------------------------------------------------------- /internals/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/icons/mac/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/1024x1024.png -------------------------------------------------------------------------------- /resources/icons/mac/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/128x128.png -------------------------------------------------------------------------------- /resources/icons/mac/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/16x16.png -------------------------------------------------------------------------------- /resources/icons/mac/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/24x24.png -------------------------------------------------------------------------------- /resources/icons/mac/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/256x256.png -------------------------------------------------------------------------------- /resources/icons/mac/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/32x32.png -------------------------------------------------------------------------------- /resources/icons/mac/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/48x48.png -------------------------------------------------------------------------------- /resources/icons/mac/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/512x512.png -------------------------------------------------------------------------------- /resources/icons/mac/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/64x64.png -------------------------------------------------------------------------------- /resources/icons/mac/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/mac/96x96.png -------------------------------------------------------------------------------- /resources/icons/windows/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/1024x1024.png -------------------------------------------------------------------------------- /resources/icons/windows/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/128x128.png -------------------------------------------------------------------------------- /resources/icons/windows/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/16x16.png -------------------------------------------------------------------------------- /resources/icons/windows/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/24x24.png -------------------------------------------------------------------------------- /resources/icons/windows/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/256x256.png -------------------------------------------------------------------------------- /resources/icons/windows/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/32x32.png -------------------------------------------------------------------------------- /resources/icons/windows/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/48x48.png -------------------------------------------------------------------------------- /resources/icons/windows/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/512x512.png -------------------------------------------------------------------------------- /resources/icons/windows/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/64x64.png -------------------------------------------------------------------------------- /resources/icons/windows/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/icons/windows/96x96.png -------------------------------------------------------------------------------- /resources/pdf/logo-icon-mac.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/pdf/logo-icon-mac.psd -------------------------------------------------------------------------------- /resources/pdf/logo-icon-windows.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/resources/pdf/logo-icon-windows.psd -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/__mocks__/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/test/__mocks__/electron.js -------------------------------------------------------------------------------- /test/actions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/components/media-controls.component.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/test/components/media-controls.component.spec.js -------------------------------------------------------------------------------- /test/e2e/e2e.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/test/e2e/e2e.spec.js -------------------------------------------------------------------------------- /test/reducers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/runTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/test/runTests.js -------------------------------------------------------------------------------- /test/selectors/home/home.selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/test/selectors/home/home.selectors.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/test/setup.js -------------------------------------------------------------------------------- /webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/webpack.config.base.js -------------------------------------------------------------------------------- /webpack.config.eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/webpack.config.eslint.js -------------------------------------------------------------------------------- /webpack.config.main.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/webpack.config.main.prod.js -------------------------------------------------------------------------------- /webpack.config.renderer.dev.dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/webpack.config.renderer.dev.dll.js -------------------------------------------------------------------------------- /webpack.config.renderer.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/webpack.config.renderer.dev.js -------------------------------------------------------------------------------- /webpack.config.renderer.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/webpack.config.renderer.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/builtwithluv/ZenFocus/HEAD/yarn.lock --------------------------------------------------------------------------------