Skip to content

Commit 1b83651

Browse files
committed
Release 1.0.1
1 parent 9f232c3 commit 1b83651

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ 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+
## 1.0.2
10+
11+
### Fixed
12+
13+
- Image assets not being packaged correctly
14+
915
## 1.0.1
1016

1117
Adds banlist visuals. A feature planned for 1.0.0 but one I forgot to add.

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: "v1.0.1",
5+
version: "v1.0.2",
66
notification: (title, text, onclick) => {
77
const notification = new Notification(title, {
88
body: text

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deckmaster",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "A Yu-Gi-Oh! TCG deck editor",
55
"main": "index.js",
66
"scripts": {
@@ -22,7 +22,8 @@
2222
"index.html",
2323
"bg.png",
2424
"css/",
25-
"js/"
25+
"js/",
26+
"assets/"
2627
],
2728
"win": {
2829
"icon": "favicon.ico",

0 commit comments

Comments
 (0)