Skip to content

Commit 3433643

Browse files
committed
🚀 Release v0.6.3
1 parent c6d0e5a commit 3433643

File tree

6 files changed

+23
-18
lines changed

6 files changed

+23
-18
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## 0.6.3 Alpha
10+
11+
Quick update to add full changelog link & fix Discord invites.
12+
13+
### Added
14+
15+
- GitHub Changelog link
16+
17+
### Fixed
18+
19+
- Discord invite (make permanent)
20+
921
## 0.6.2 Alpha
1022

1123
This update adds a viewable changelog & half a dozen bug fixes.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Yu-Gi-Oh! DeckMaster
22

33
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/TheOtterlord/deckmaster?label=Latest)](https://github.com/TheOtterlord/deckmaster/releases/latest)
4-
[![Discord](https://img.shields.io/discord/805766973605937173?label=Discord)](https://discord.gg/dmE2rNwu)
4+
[![Discord](https://img.shields.io/discord/805766973605937173?label=Discord)](https://discord.gg/5R7Zt9yqBr)
55

66
![DeckMaster's editor in action](docs/assets/deckbuilding.png)
77

@@ -19,7 +19,7 @@ Visit the [documentation](https://theotterlord.github.io/deckmaster/install) for
1919

2020
If you encounter any issues when using DeckMaster, or simply have a suggestion on how to improve it, please open an issue in our [issue tracker](https://github.com/TheOtterlord/deckmaster/issues) and I'll get back to you.
2121

22-
Alternatively, if you do not have a GitHub account, please use the [Discord](https://discord.gg/dmE2rNwu) server.
22+
Alternatively, if you do not have a GitHub account, please use the [Discord](https://discord.gg/5R7Zt9yqBr) server.
2323

2424

2525
## Contributing

docs/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# About DeckMaster
22

3-
[![Discord](https://img.shields.io/discord/805766973605937173?label=Discord)](https://discord.gg/dmE2rNwu)
3+
[![Discord](https://img.shields.io/discord/805766973605937173?label=Discord)](https://discord.gg/5R7Zt9yqBr)
44

55
DeckMaster is a *prototype* deck editor application for the Yu-Gi-Oh! Trading Card Game.
66
Still in the development phase, a lot of features have not yet been implemented and those that have are experimental.

index.html

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<div class="dropdown-content">
6363
<a href="#" onclick="deckmaster.restart()">Restart</a>
6464
<a href="#" onclick="deckmaster.wiki()">User documentation</a>
65-
<a href="#" onclick="deckmaster.link('https://discord.gg/dmE2rNwu')">Discord</a>
65+
<a href="#" onclick="deckmaster.link('https://discord.gg/5R7Zt9yqBr')">Discord</a>
6666
<a href="#" onclick="deckmaster.link('https://github.com/TheOtterlord/deckmaster')">GitHub</a>
6767
<a href="#" onclick="openChangelog()">Changelog</a>
6868
<a href="#" onclick="checkForUpdates()">Check for updates</a>
@@ -465,12 +465,12 @@ <h6 class="ir-hint-text"></h6>
465465
</div>
466466
<div class="tab" id="About">
467467
<h2>About</h2>
468-
<p>Version: 0.6.2</p>
468+
<p>Version: 0.6.3</p>
469469
<p>Author: Reuben Tier (AKA TheOtterlord)</p>
470470
<p>Website: <a href="https://theotterlord.github.io/deckmaster"
471471
target="_blank">https://theotterlord.github.io/deckmaster</a></p>
472472
<p>Bug Tracker: <a href="https://github.com/TheOtterlord/deckmaster/issues" target="_blank">GitHub</a></p>
473-
<p>Discord: <a href="https://discord.gg/dmE2rNwu" target="_blank">Invite</a></p>
473+
<p>Discord: <a href="https://discord.gg/5R7Zt9yqBr" target="_blank">Invite</a></p>
474474
</div>
475475
<div class="ir-flex-row">
476476
<button class="ir-flex ir-button" onclick="deckmaster.reset_all()">Reset All Settings</button>
@@ -499,21 +499,14 @@ <h2>Welcome</h2>
499499
<div class="changelog" style="padding: 16px;">
500500
<h2>What's new in <span class="version"></span></h2>
501501
<div>
502+
<p>Quick update to add full changelog link &amp; fix Discord invites.</p>
502503
<h3 id="added">Added</h3>
503504
<ul>
504-
<li>Changelog that launches after updating</li>
505-
</ul>
506-
<h3 id="changed">Changed</h3>
507-
<ul>
508-
<li>Update about info</li>
505+
<li>GitHub Changelog link</li>
509506
</ul>
510507
<h3 id="fixed">Fixed</h3>
511508
<ul>
512-
<li>Fix a bug causing new decks to not be added to recent docs when saved</li>
513-
<li>Fix transition between deck editor &amp; combo editor</li>
514-
<li>Fix level filter in deck editor</li>
515-
<li>Fix a bug with select/remove combo</li>
516-
<li>Fix issue with ygopro link when no path was selected</li>
509+
<li>Discord invite (make permanent)</li>
517510
</ul>
518511
</div>
519512
<div class="ir-flex-row">

js/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const { dialog } = require('electron').remote;
22
const paths = require('path');
33

44
const deckmaster = {
5-
version: "v0.6.2",
5+
version: "v0.6.3",
66
notification: (title, text, onclick) => {
77
const notification = new Notification(title, {
88
body: text

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deckmaster",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "A Yu-Gi-Oh! TCG deck editor",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)