Skip to content

Commit 7e0bf11

Browse files
committed
fix: update time format setting in plugin
1 parent 5c0b6a4 commit 7e0bf11

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "qiniu-image-uploader",
33
"name": "Qiniu Image Uploader",
4-
"version": "1.1.4",
4+
"version": "1.1.5",
55
"minAppVersion": "0.15.0",
66
"description": "Uploads images from your clipboard to qiniu.com and embeds uploaded image to your note.",
77
"author": "Jade Zheng",

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-qiniu-image-uploader",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

src/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class SettingTab extends PluginSettingTab {
148148
.setPlaceholder(t("Time Format Input"))
149149
.setValue(this.plugin.settings.timeFormat)
150150
.onChange(async (value) => {
151-
this.plugin.settings.namePrefix = value;
151+
this.plugin.settings.timeFormat = value;
152152
await this.plugin.saveSettings();
153153
}));
154154
}

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"1.1.1": "0.15.0",
55
"1.1.2": "0.15.0",
66
"1.1.3": "0.15.0",
7-
"1.1.4": "0.15.0"
7+
"1.1.4": "0.15.0",
8+
"1.1.5": "0.15.0"
89
}

0 commit comments

Comments
 (0)