Skip to content

Commit

Permalink
Merge pull request #113 from ebshimizu/dev
Browse files Browse the repository at this point in the history
2.2.6
  • Loading branch information
ebshimizu authored Jul 10, 2023
2 parents b88d6f6 + 151d30f commit 838fafe
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "5e-monster-maker",
"version": "2.2.5",
"version": "2.2.6",
"description": "A monster builder and generator for 5th Edition Dungeons and Dragons. Effortlessly create a monster with tools for automatically computing CR, formatting a statblock, and managing your monster actions and traits.",
"productName": "Falindrith's D&D Monster Maker",
"author": "Evan Shimizu <ebshimizu@gmail.com>",
Expand Down
16 changes: 16 additions & 0 deletions src/components/ChangelogContent.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
<template>
<q-timeline color="secondary">
<q-timeline-entry
title="v2.2.6"
subtitle="Bugfix - 7/10/23"
icon="build"
color="primary"
>
<div class="text-body2">
<ul>
<li>
<github-issue-link :issue="112" /> Bugfix: loosened file type filter
when opening files from disk. There were some reports of being
unable to open the .5emm.json files.
</li>
</ul>
</div>
</q-timeline-entry>
<q-timeline-entry
title="v2.2.5"
subtitle="Bugfix - 5/23/23"
Expand Down
2 changes: 1 addition & 1 deletion src/components/file/popFileDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export function popFileDialog(): Promise<File | undefined> {
// Opening file dialog
const input = document.createElement('input')
input.type = 'file'
input.accept = '.5emm.json'
input.accept = '.json'
input.onchange = async (event: Event) => {
// Returning if no target
if (!event.target) {
Expand Down

0 comments on commit 838fafe

Please sign in to comment.