This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from ampersoftware/enhancement/serverlist
Enhancement/serverlist
- Loading branch information
Showing
20 changed files
with
405 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
## Version 0.0.5 (ALPHA) | ||
## Version 0.1.0 - (ALPHA) | ||
### 22/08/2020 - 19:33 (GMT) | ||
- [WINDOWS INSTALLER USERS ONLY] | ||
- Fixed a rare case where the launcher wouldn't return update status. (Launcher update, not mod-related). | ||
- Updated Electron to v9.2.1. | ||
- Added server list page. | ||
- Fixed a bug causing the TF2 directory to not be found (thanks brucelay!). | ||
- Fixed various bugs related to path finding on Linux. | ||
- Implemented better patch notes system for the launcher. | ||
- Added warning for non auto-update users so they can know when a new version is available. | ||
- Small layout changes. | ||
|
||
|
||
## Version 0.0.5 - (ALPHA) | ||
### 08/08/2020 - 00:28 (GMT) | ||
- Released launcher's alpha version |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
const marked = require("marked"); | ||
marked.setOptions({ | ||
breaks: true, | ||
gfm: true, | ||
headerIds: false | ||
}); | ||
|
||
window.addEventListener("DOMContentLoaded", () => { | ||
var request = new XMLHttpRequest(); | ||
request.open("GET", "https://raw.githubusercontent.com/ampersoftware/Creators.TF-Community-Launcher/master/changelog.md"); | ||
request.send(); | ||
request.onload = () => { | ||
if (request.status === 200) { | ||
document.getElementById("patchnotes").innerHTML = marked(request.responseText); | ||
} else { | ||
document.getElementById("patchnotes").innerHTML = marked("## If you are reading this, there are two options:\n- Github is down (You can check their status page at `githubstatus.com`)\n- Your internet is down"); | ||
} | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.