Daniel Scalzi 7 éve
szülő
commit
7851fdbefb
5 módosított fájl, 16 hozzáadás és 12 törlés
  1. 8 8
      README.md
  2. 4 0
      app/assets/js/loggerutil.js
  3. 2 2
      app/settings.ejs
  4. 1 1
      package-lock.json
  5. 1 1
      package.json

+ 8 - 8
README.md

@@ -30,24 +30,22 @@
 
 This is not an exhaustive list. Download and install the launcher to gauge all it can do!
 
-## Beta Tests
-
-The launcher is currently available for beta testing.
-For information on beta, and download instructions, please see the [Beta Thread](https://westeroscraft.com/threads/official-new-launcher-beta.1371/).
+#### Need Help? [Check the wiki.][wiki]
 
 ## Downloads
 
-Latest Release
+You can download from [GitHub Releases](https://github.com/WesterosCraftCode/ElectronLauncher/releases) or [WesterosCraft.com/launcher](https://westeroscraft.com/launcher)
 
-[![](https://img.shields.io/github/release/WesterosCraftCode/ElectronLauncher.svg?style=flat-square)](https://github.com/WesterosCraftCode/ElectronLauncher/releases/latest)
+#### Latest Release
 
-Latest Prerelease
+[![](https://img.shields.io/github/release/WesterosCraftCode/ElectronLauncher.svg?style=flat-square)](https://github.com/WesterosCraftCode/ElectronLauncher/releases/latest)
 
+#### Latest Pre-Release
 [![](https://img.shields.io/github/release/WesterosCraftCode/ElectronLauncher/all.svg?style=flat-square)](https://github.com/WesterosCraftCode/ElectronLauncher/releases)
 
 **Supported Platforms**
 
-Go to the [Releases](https://github.com/WesterosCraftCode/ElectronLauncher/releases) tab and download the installer for the latest release.
+If you download from the [Releases](https://github.com/WesterosCraftCode/ElectronLauncher/releases) tab, select the installer for your system.
 
 | Platform | File |
 | -------- | ---- |
@@ -179,6 +177,7 @@ Note that you **cannot** open the DevTools window while using this debug configu
 
 * [WesterosCraft][westeroscraft]
 * [Support Forum][supportforum]
+* [Wiki][wiki]
 
 The best way to contact the developers is on Discord.
 
@@ -197,3 +196,4 @@ The best way to contact the developers is on Discord.
 [westeroscraft]: https://westeroscraft.com/ 'WesterosCraft.com'
 [supportforum]: https://westeroscraft.com/forum/support.40/ 'Support Forum'
 [discord]: https://discord.gg/hqdjs3m 'Discord'
+[wiki]: https://github.com/WesterosCraftCode/ElectronLauncher/wiki 'wiki'

+ 4 - 0
app/assets/js/loggerutil.js

@@ -13,6 +13,10 @@ class LoggerUtil {
         console.info.apply(null, [this.prefix, this.style, ...arguments])
     }
 
+    warn(){
+        console.warn.apply(null, [this.prefix, this.style, ...arguments])
+    }
+
     debug(){
         console.debug.apply(null, [this.prefix, this.style, ...arguments])
     }

+ 2 - 2
app/settings.ejs

@@ -228,8 +228,8 @@
             </div>
             <div class="settingsFieldContainer">
                 <div class="settingsFieldLeft">
-                    <span class="settingsFieldTitle">Allow prerelease updates.</span>
-                    <span class="settingsFieldDesc">Prereleases contain the latest features and updates, however they may be buggy.<br>This will always be true if you are using a prerelease version.</span>
+                    <span class="settingsFieldTitle">Allow Pre-Release Updates.</span>
+                    <span class="settingsFieldDesc">Pre-Releases include new features which may have not been fully tested or integrated.<br>This will always be true if you are using a pre-release version.</span>
                 </div>
                 <div class="settingsFieldRight">
                     <label class="toggleSwitch">

+ 1 - 1
package-lock.json

@@ -1,6 +1,6 @@
 {
   "name": "westeroscraftlauncher",
-  "version": "1.0.0-beta.6",
+  "version": "1.0.0",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "westeroscraftlauncher",
-  "version": "1.0.0-beta.6",
+  "version": "1.0.0",
   "description": "Custom modded launcher for Westeroscraft",
   "productName": "WesterosCraft Launcher",
   "main": "index.js",