Skip to content

Commit

Permalink
No more need to manually check for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
meriadec committed Mar 5, 2018
1 parent 50b7873 commit 5e5d206
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 200 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0",
"semver": "^5.5.0",
"source-map-support": "^0.5.3",
"superagent-promise": "^1.1.0",
"trash": "^4.3.0"
Expand Down
57 changes: 0 additions & 57 deletions src/actions/queryLastVersion.js

This file was deleted.

2 changes: 0 additions & 2 deletions src/components/Application/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { connect } from 'react-redux'
import { dropFile } from 'actions/projects'

import Alerts from 'components/Alerts'
import NotifsPanel from 'components/Notifs/NotifsPanel'
import NewProjectModal from 'components/NewProjectModal'
import SettingsModal from 'components/SettingsModal'
import ErrorModal from 'components/ErrorModal'
Expand Down Expand Up @@ -89,7 +88,6 @@ class Application extends Component {
{settings && <SettingsModal />}
{settings && <NewProjectModal />}

<NotifsPanel />
<ErrorModal />
<AboutModal />
<Alerts />
Expand Down
32 changes: 0 additions & 32 deletions src/components/Notifs/NotifBtn.js

This file was deleted.

65 changes: 0 additions & 65 deletions src/components/Notifs/NotifsPanel.js

This file was deleted.

37 changes: 0 additions & 37 deletions src/components/Notifs/style.scss

This file was deleted.

2 changes: 0 additions & 2 deletions src/pages/Home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { openModal } from 'reducers/modals'
import Button from 'components/Button'
import MassActions from 'components/MassActions'
import ProjectsList from 'components/ProjectsList'
import NotifBtn from 'components/Notifs/NotifBtn'

import './style.scss'

Expand Down Expand Up @@ -67,7 +66,6 @@ class HomePage extends Component {
<Button ghost onClick={() => openModal('settings')}>
<FaCog />
</Button>
<NotifBtn />
</div>
</div>

Expand Down
2 changes: 0 additions & 2 deletions src/pages/Project/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import { fileDialog, saveDialog, fsWriteFile } from 'helpers/fs'
import Button from 'components/Button'
import ButtonDropdown from 'components/Button/ButtonDropdown'
import FilesList from 'components/FilesList'
import NotifBtn from 'components/Notifs/NotifBtn'

import BackButton from './BackButton'
import SendModal from './SendModal'
Expand Down Expand Up @@ -246,7 +245,6 @@ class ProjectPage extends Component {
>
<FaCog />
</Button>
<NotifBtn />
</div>

<div className="fg-1 d-f fd-c r" style={{ zIndex: 1 }}>
Expand Down
2 changes: 0 additions & 2 deletions src/renderer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { ipcRenderer } from 'electron'
import configureStore from 'store/configureStore'
import { loadSettings } from 'actions/settings'
import { loadProjects, addProject } from 'actions/projects'
import queryLastVersion from 'actions/queryLastVersion'

import Root from 'components/Root'

Expand Down Expand Up @@ -36,7 +35,6 @@ r(Root)
async function boot() {
await dispatch(loadSettings())
await dispatch(loadProjects())
dispatch(queryLastVersion())
}

boot()
Expand Down

0 comments on commit 5e5d206

Please sign in to comment.