Skip to content

Commit 045ee0e

Browse files
author
Mario Reder
authored
Merge pull request #91 from Tarnadas/dev
2.2.0
2 parents 9040160 + 8426618 commit 045ee0e

106 files changed

Lines changed: 5593 additions & 2760 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"presets": [
33
["env", {
44
"targets": {
5-
"electron": "1.8.3"
5+
"electron": "2.0.17"
66
},
77
"useBuiltIns": true
88
}]

.eslintrc

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"parser": "typescript-eslint-parser",
33
"extends": [
4-
"standard-with-typescript",
54
"plugin:react/recommended"
65
],
76
"plugins": [
@@ -10,13 +9,17 @@
109
"jsdoc"
1110
],
1211
"parserOptions": {
12+
"ecmaVersion": 6,
13+
"sourceType": "module",
1314
"ecmaFeatures": {
14-
"jsx": true
15+
"jsx": true,
16+
"modules": true
1517
}
1618
},
1719
"rules": {
1820
"indent": "off",
1921
"indent-legacy": ["error", 2, { "SwitchCase": 1 }],
22+
"no-unused-vars": "off",
2023
"react/prop-types": "off",
2124
"react/jsx-no-target-blank": "off",
2225
"jsdoc/check-param-names": 1,
@@ -30,11 +33,17 @@
3033
"jsdoc/require-param-type": 1,
3134
"jsdoc/require-returns-description": 1,
3235
"jsdoc/require-returns-type": 1,
33-
"typescript/explicit-member-accessibility": "off"
36+
"typescript/explicit-member-accessibility": "off",
37+
"typescript/no-empty-interface": "off"
3438
},
3539
"env": {
3640
"browser": true,
3741
"worker": true,
3842
"jest": true
43+
},
44+
"settings": {
45+
"react": {
46+
"version": "detect"
47+
}
3948
}
4049
}

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
.credentials
12
/.idea/
23
/node_modules/
34
/build/*
4-
#!/build/patches/
5-
!/build/winprocess/
5+
!/build/patches/
66
!/build/img/
77
!/build/styles/
88
/build/styles/renderer.*

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Mario Reder
3+
Copyright (c) 2017-2019 Mario Reder
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build-app.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,4 @@ packager({
2929
fs.createReadStream(file).pipe(fs.createWriteStream(path.join(appPaths[0], `patches/${file.split('patches/')[1]}`)))
3030
})
3131
rimraf(path.join(appPaths[0], 'resources/app/patches'), () => {})
32-
rimraf(path.join(appPaths[0], 'resources/app/package-lock.json'), () => {})
3332
})

build/img/host.svg

Lines changed: 1 addition & 0 deletions

build/img/load.gif

-23.6 KB
Binary file not shown.

build/img/pc.svg

Lines changed: 1 addition & 0 deletions

build/img/server.svg

Lines changed: 1 addition & 0 deletions

build/patches/253710

12 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)