Don't direct users to original F-Chat feedback / changelog

This commit is contained in:
Mr. Stallion 2020-06-23 19:36:14 -05:00
parent 366fb31114
commit 90b40f3796
5 changed files with 16 additions and 11 deletions

5
CHANGELOG.md Normal file
View File

@ -0,0 +1,5 @@
# Changelog
## 1.0.0
Initial version

View File

@ -1,9 +1,9 @@
# Download
[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v3.0.13-rising-v1/F-Chat.Rising.Setup.exe) (68 MB)
[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.0.0/F-Chat-Rising-v1.0.0-win.exe) (68 MB)
[MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v3.0.13-rising-v1/F-Chat.Rising.dmg) (72 MB)
[MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.0.0/F-Chat-Rising-v1.0.0-macos.dmg) (72 MB)
[Linux](https://github.com/mrstallion/fchat-rising/releases/download/v3.0.13-rising-v1/fchat-rising.AppImage) (74 MB)
[Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.0.0/F-Chat-Rising-v1.0.0-linux.AppImage) (74 MB)
# F-Chat Rising

View File

@ -29,7 +29,7 @@ const strings: {[key: string]: string | undefined} = {
'consoleWarning.head': 'THIS IS THE DANGER ZONE.',
'consoleWarning.body': `ANYTHING YOU WRITE OR PASTE IN HERE COULD BE USED TO STEAL YOUR PASSWORDS OR TAKE OVER YOUR ENTIRE COMPUTER. This is where happiness goes to die. If you aren't a developer or a special kind of daredevil, please get out of here!`,
'help': 'Help',
'help.fchat': 'FChat 3.0 Help and Changelog',
'help.fchat': 'F-Chat Rising Help and Changelog',
'help.feedback': 'Report a Bug / Suggest Something',
'help.rules': 'F-List Rules',
'help.faq': 'F-List FAQ',

View File

@ -6,7 +6,7 @@ layout: rising
**F-Chat Rising** is an extended version of the [original F-Chat 3.0 client](https://wiki.f-list.net/F-Chat_3.0). It offers new features, bug fixes, and usability improvements.
Scroll down to see a [feature summary](#link-previews), or take a look at a more [detailed list of features](https://github.com/mrstallion/fchat-rising/blob/master/readme.md#key-differences).
Scroll down to see a [feature summary](#link-previews), or take a look at a more [detailed list of features](https://github.com/mrstallion/fchat-rising/blob/master/README.md#key-differences).
To install, download the application from the links above and then refer to the [original installation instructions](https://wiki.f-list.net/F-Chat_3.0/Installation).

View File

@ -287,7 +287,7 @@ function createWindow(): Electron.BrowserWindow | undefined {
}
function showPatchNotes(): void {
electron.shell.openExternal('https://wiki.f-list.net/F-Chat_3.0#Changelog'); //tslint:disable-line:no-floating-promises
electron.shell.openExternal('https://github.com/mrstallion/fchat-rising/blob/master/CHANGELOG.md'); //tslint:disable-line:no-floating-promises
}
function onReady(): void {
@ -481,12 +481,12 @@ function onReady(): void {
submenu: [
{
label: l('help.fchat'),
click: () => electron.shell.openExternal('https://wiki.f-list.net/F-Chat_3.0')
},
{
label: l('help.feedback'),
click: () => electron.shell.openExternal('https://goo.gl/forms/WnLt3Qm3TPt64jQt2')
click: () => electron.shell.openExternal('https://github.com/mrstallion/fchat-rising/blob/master/README.md')
},
// {
// label: l('help.feedback'),
// click: () => electron.shell.openExternal('https://goo.gl/forms/WnLt3Qm3TPt64jQt2')
// },
{
label: l('help.rules'),
click: () => electron.shell.openExternal('https://wiki.f-list.net/Rules')