From 90b40f379699c916bffd1e46e1b8907f2edd5b61 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Tue, 23 Jun 2020 19:36:14 -0500 Subject: [PATCH] Don't direct users to original F-Chat feedback / changelog --- CHANGELOG.md | 5 +++++ readme.md => README.md | 6 +++--- chat/localize.ts | 2 +- docs/index.md | 2 +- electron/main.ts | 12 ++++++------ 5 files changed, 16 insertions(+), 11 deletions(-) create mode 100644 CHANGELOG.md rename readme.md => README.md (98%) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1cd11d2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## 1.0.0 + +Initial version diff --git a/readme.md b/README.md similarity index 98% rename from readme.md rename to README.md index 6a59dbb..506fe26 100644 --- a/readme.md +++ b/README.md @@ -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 diff --git a/chat/localize.ts b/chat/localize.ts index 54620d1..7f5a46c 100644 --- a/chat/localize.ts +++ b/chat/localize.ts @@ -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', diff --git a/docs/index.md b/docs/index.md index b5479d5..f359bca 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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). diff --git a/electron/main.ts b/electron/main.ts index af2c859..299be30 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -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')