Skip to content

Commit 7c24e28

Browse files
committed
added the + back for path fix
1 parent 549c6a9 commit 7c24e28

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -155,22 +155,22 @@ You can bundle a `servers.json` with the install package, the file should be loc
155155

156156
## Post-Install Configuration
157157

158-
If you can't (or don't want to) bundle the file inside the app, you can create a `servers.json` in the user preferences folder which will overwrite the packaged one. The file should be located in the `%APPDATA%/Rocket.Chat/` folder or the installation folder in case of a installation for all users (Windows only).
158+
If you can't (or don't want to) bundle the file inside the app, you can create a `servers.json` in the user preferences folder which will overwrite the packaged one. The file should be located in the `%APPDATA%/Rocket.Chat+/` folder or the installation folder in case of a installation for all users (Windows only).
159159

160160
For Windows the full paths are:
161161
```
162-
~\Users\<username>\AppData\Roaming\Rocket.Chat\
163-
~\Program Files\Rocket.Chat\Resources\
162+
~\Users\<username>\AppData\Roaming\Rocket.Chat+\
163+
~\Program Files\Rocket.Chat+\Resources\
164164
```
165165
On MacOS the full path is:
166166
```
167-
~/Users/<username>/Library/Application Support/Rocket.Chat/
168-
~/Applications/Rocket.Chat.app/Contents/Resources/
167+
~/Users/<username>/Library/Application Support/Rocket.Chat+/
168+
~/Applications/Rocket.Chat+.app/Contents/Resources/
169169
```
170170
On Linux the full path is:
171171
```
172-
/home/<username>/.config/Rocket.Chat/
173-
/opt/Rocket.Chat/resources/
172+
/home/<username>/.config/Rocket.Chat+/
173+
/opt/Rocket.Chat+/resources/
174174
```
175175

176176
# Useful links

build/win/installer.nsh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
!ifndef BUILD_UNINSTALLER
22
Function AddToStartup
3-
CreateShortCut "$SMSTARTUP\Rocket.Chat.lnk" "$INSTDIR\Rocket.Chat.exe" ""
3+
CreateShortCut "$SMSTARTUP\Rocket.Chat+.lnk" "$INSTDIR\Rocket.Chat+.exe" ""
44
FunctionEnd
55

66
; Using the read me setting as an easy way to add an add to startup option
@@ -11,7 +11,7 @@
1111

1212
!ifdef BUILD_UNINSTALLER
1313
Function un.AddAppData
14-
RMDir /r "$APPDATA\Rocket.Chat"
14+
RMDir /r "$APPDATA\Rocket.Chat+"
1515
FunctionEnd
1616

1717
; Using the read me setting to add option to remove app data

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "rocketchat",
3-
"productName": "Rocket.Chat",
3+
"productName": "Rocket.Chat+",
44
"description": "Rocket.Chat Native Cross-Platform Desktop Application via Electron.",
5-
"version": "2.13.0-develop",
5+
"version": "2.12.1",
66
"author": "Rocket.Chat Support <[email protected]>",
77
"copyright": "© 2018, Rocket.Chat",
88
"homepage": "https://rocket.chat",
@@ -54,7 +54,7 @@
5454
},
5555
"linux": {
5656
"desktop": {
57-
"StartupWMClass": "Rocket.Chat",
57+
"StartupWMClass": "Rocket.Chat+",
5858
"MimeType": "x-scheme-handler/rocketchat"
5959
},
6060
"category": "GNOME;GTK;Network;InstantMessaging",

snap/gui/rocketchat-desktop.desktop

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[Desktop Entry]
2-
Name=Rocket.Chat
2+
Name=Rocket.Chat+
33
Comment=Rocket.Chat Native Cross-Platform Desktop Application via Electron.
44
Exec=rocketchat-desktop
55
Terminal=false
66
Type=Application
77
Icon=${SNAP}/meta/gui/icon.png
88
Categories=GNOME;GTK;Network;InstantMessaging
9-
StartupWMClass=Rocket.Chat
9+
StartupWMClass=Rocket.Chat+

snap/snapcraft.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rocketchat-desktop
2-
version: 2.13.0-develop
3-
summary: Rocket.Chat
2+
version: 2.12.1
3+
summary: Rocket.Chat+
44
description: Rocket.Chat Native Cross-Platform Desktop Application via Electron.
55
confinement: strict
66
grade: stable

0 commit comments

Comments
 (0)