Skip to content

Commit eef2a5d

Browse files
committed
Change env to platform
1 parent f121496 commit eef2a5d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

app/scripts/models/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import flyd from 'flyd'
44
import R from 'ramda'
55
import { collectionMixin } from '../components/util'
66
import { dropRepeatsWith } from 'flyd/module/droprepeats'
7-
import { env } from '../components/util'
7+
import { platform } from '../components/util'
88

99
const AppModel = collectionMixin({
1010
servers: flyd.stream([]),
@@ -15,7 +15,7 @@ const AppModel = collectionMixin({
1515
saveserverpass: false,
1616
// On linux platforms quitonclose setting
1717
// by defeault should be true
18-
quitonclose: env.linux(),
18+
quitonclose: platform.linux(),
1919
autoupdate: false
2020
}),
2121
default(credentials, state) {

electron/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jenia",
33
"title": "Jenia",
4-
"version": "0.2.0",
4+
"version": "0.3.5",
55
"description": "Jenia is a simple cross-platform GUI client for Jenkins CI. Built on Electron.",
66
"homepage": "https://jenia.pl/",
77
"repository": {
@@ -28,7 +28,7 @@
2828
"electron-installer-dmg": "^0.2.1",
2929
"electron-installer-redhat": "^0.4.0",
3030
"electron-packager": "^8.6.0",
31-
"electron-winstaller": "^2.5.2",
31+
"electron-winstaller": "^2.6.3",
3232
"gh-release": "^3.1.1",
3333
"glob": "^7.0.5",
3434
"gulp": "github:gulpjs/gulp#4.0",
@@ -53,7 +53,6 @@
5353
"nib": "^1.1.0",
5454
"poststylus": "^0.2.3",
5555
"q": "^1.4.1",
56-
"tar.gz": "^1.0.5",
5756
"vinyl-buffer": "^1.0.0",
5857
"vinyl-source-stream": "^1.1.0",
5958
"watchify": "^3.9.0"

0 commit comments

Comments
 (0)