Skip to content

Commit ac5c6e5

Browse files
authored
Merge pull request #18 from TheOtterlord/v0.6.4
V0.6.4
2 parents 3433643 + a70ba21 commit ac5c6e5

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ 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.4
10+
11+
Deck saving bug fix
12+
13+
### Fixed
14+
15+
- Deck saving
16+
917
## 0.6.3 Alpha
1018

1119
Quick update to add full changelog link & fix Discord invites.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ <h6 class="ir-hint-text"></h6>
465465
</div>
466466
<div class="tab" id="About">
467467
<h2>About</h2>
468-
<p>Version: 0.6.3</p>
468+
<p>Version: 0.6.4</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>

js/api.js

Lines changed: 2 additions & 2 deletions
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.3",
5+
version: "v0.6.4",
66
notification: (title, text, onclick) => {
77
const notification = new Notification(title, {
88
body: text
@@ -116,7 +116,7 @@ const deckmaster = {
116116
if (err) {
117117
console.log(`Failed to write to ${path}`);
118118
} else {
119-
deckeditor.addRecentDocs(path);
119+
deckmaster.addRecentDocs(path);
120120
notify(`<div id='saved'>
121121
Your deck has been saved
122122
</div>`, 'saved', 3000);

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.3",
3+
"version": "0.6.4",
44
"description": "A Yu-Gi-Oh! TCG deck editor",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)