Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a bug where the app refused to allow opening .yarn files
Browse files Browse the repository at this point in the history
desplesda committed Jan 8, 2020
1 parent 53919e6 commit 31fb799
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yarn-editor",
"main": "main.js",
"version": "0.2.3",
"version": "0.2.4",
"license": "MIT",
"author": " @infinite_ammo, @seiyria, @beeglebug ,Todor Imreorov",
"description": "Dialogue editor created for \"Night in the Woods\" (and other projects) by @NoelFB and @infinite_ammo with contributions from @seiyria and @beeglebug. It is heavily inspired by and based on the amazing Twine software: http://twinery.org/. This version has been ported over to Electron and extended with further functionality by Todor Imreorov",
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/YarnSpinnerTool/YarnEditor/issues"
},
"version": "0.2.3",
"version": "0.2.4",
"scripts": {
"build": "webpack -p --progress --mode production --config webpack.config.js",
"build-dev": "cross-env NODE_ENV=dev webpack -p --progress --config webpack.config.js",
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
@@ -275,7 +275,7 @@
<!-- Hidden fields, file dialogs, and elements -->
<div class="hidden">
<input type="file" id="open-image" accept=".jpg,.jpeg,.png,.gif,.bmp"/>
<input type="file" id="open-file" accept=".txt,.xml,.json,.twee,.tw2"/>
<input type="file" id="open-file" accept=".yarn,.txt,.xml,.json,.twee,.tw2"/>
<input type="file" id="open-folder" webkitdirectory directory/>
<input type="file" id="save-file" nwsaveas="filename.txt" />
</div>

0 comments on commit 31fb799

Please sign in to comment.