Skip to content

Commit 9b427b5

Browse files
authored
Merge pull request #179 from chrisknepper/mid_may_2019_rollup
Mid may 2019 rollup
2 parents 7b5daf9 + c0e4ea5 commit 9b427b5

23 files changed

+1084
-650
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [2.0.0] - 2019-05-26
4+
### Added
5+
- 32-bit (x86) builds for Windows
6+
- Portable builds for Windows
7+
- KNOWN ISSUE: Portable builds for Windows cannot display system notifications
8+
- Setting to hide sender name and message preview in notifications
9+
- Under the hood: Method for detecting when user logs in or out (auth vs. de-auth)
10+
- Under the hood: System to execute commands as root user (see item under Fixed below)
11+
12+
### Changed
13+
- Update icon to match current style of official icon
14+
- Update icon to have a bit more space around the outside (padding)
15+
- Under the hood: Refactor spellchecking dictionary manager logic and error handling
16+
17+
### Fixed
18+
- Javascript error on launch for Linux users (resulting from dist dictionaries folder being owned by root--Linux users are now prompted to allow changing ownership of the dictionaries folder to the current user)
19+
320
## [1.0.1] - 2019-04-16
421
### Fixed
522
- Clicking links in text messages now opens them in your browser again instead of doing nothing (big oof)
-29.5 KB
Loading

package-lock.json

Lines changed: 853 additions & 609 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,27 @@
3535
"dmg"
3636
]
3737
},
38+
"win": {
39+
"target": [
40+
{
41+
"target": "nsis",
42+
"arch": [
43+
"x64",
44+
"ia32"
45+
]
46+
},
47+
{
48+
"target": "portable",
49+
"arch": [
50+
"x64",
51+
"ia32"
52+
]
53+
}
54+
]
55+
},
56+
"portable": {
57+
"artifactName": "${productName} Portable ${version}.${ext}"
58+
},
3859
"linux": {
3960
"category": "Chat",
4061
"target": [
@@ -66,7 +87,8 @@
6687
"electron-settings": "^3.2.0",
6788
"electron-updater": "4.0.6",
6889
"fs-jetpack": "^1.0.0",
69-
"hunspell-asm": "^1.1.2"
90+
"hunspell-asm": "^1.1.2",
91+
"sudo-prompt": "^8.2.5"
7092
},
7193
"devDependencies": {
7294
"@babel/core": "^7.0.0-beta.5",
@@ -76,7 +98,7 @@
7698
"chai": "^4.1.0",
7799
"css-loader": "^0.28.7",
78100
"electron": "4.0.4",
79-
"electron-builder": "^20.15.1",
101+
"electron-builder": "20.39.0",
80102
"electron-mocha": "^6.0.4",
81103
"file-loader": "^1.1.11",
82104
"friendly-errors-webpack-plugin": "^1.6.1",

resources/icon.icns

-71.4 KB
Binary file not shown.

resources/icon.ico

-5.75 KB
Binary file not shown.

resources/icons/1024x1024.png

-29.5 KB
Loading

resources/icons/128x128.png

-2.96 KB
Loading

resources/icons/16x16.png

-160 Bytes
Loading

resources/icons/24x24.png

-275 Bytes
Loading

0 commit comments

Comments
 (0)