Skip to content

Commit

Permalink
0.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Brenan committed Apr 22, 2021
1 parent 5f830da commit 7d84c5f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dataview",
"name": "Dataview",
"version": "0.2.13",
"version": "0.2.14",
"minAppVersion": "0.11.10",
"description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-dataview",
"version": "0.2.13",
"version": "0.2.14",
"description": "Advanced data views for Obsidian.md.",
"main": "main.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ class DataviewSettingsTab extends PluginSettingTab {
.setValue("" + this.plugin.settings.refreshInterval)
.onChange(async (value) => {
let parsed = parseInt(value);
if (isNaN(parsed)) continue;
if (isNaN(parsed)) return;
parsed = (parsed < 100) ? 100 : parsed;
await this.plugin.updateSettings({ refreshInterval: parsed });
}
}));
}
}

Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@
"0.2.10": "0.11.10",
"0.2.11": "0.11.10",
"0.2.12": "0.11.10",
"0.2.13": "0.11.10"
"0.2.13": "0.11.10",
"0.2.14": "0.11.10"
}

0 comments on commit 7d84c5f

Please sign in to comment.