Merge pull request #4 from kissyjpf/feature/v1.3.3-auth-status

v1.3.3: Show authorized status in settings
This commit is contained in:
creamhead 2026-06-13 17:52:59 +09:00 committed by GitHub
commit 2a17d13ecd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 8 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "rtm-sync",
"name": "RTM Sync",
"version": "1.3.2",
"version": "1.3.3",
"minAppVersion": "0.15.0",
"description": "Sync Remember The Milk Tasks.",
"author": "Osamu Kishiyama",

View file

@ -1,6 +1,6 @@
{
"name": "rtm-sync",
"version": "1.3.2",
"version": "1.3.3",
"description": "Sync Remember The Milk Tasks with Obsidian",
"main": "main.js",
"type": "module",

View file

@ -570,7 +570,11 @@ class RtmSettingTab extends PluginSettingTab {
new Setting(containerEl).setName('API Key').addText(text => text.setValue(this.plugin.settings.apiKey).onChange(async (v) => { this.plugin.settings.apiKey = v; await this.plugin.saveSettings(); }));
new Setting(containerEl).setName('Shared Secret').addText(text => text.setValue(this.plugin.settings.sharedSecret).onChange(async (v) => { this.plugin.settings.sharedSecret = v; await this.plugin.saveSettings(); }));
new Setting(containerEl).setName('Auth').addButton(b => b.setButtonText('Start Auth').onClick(async () => await this.startAuthProcess()));
const authSetting = new Setting(containerEl).setName('Auth');
if (this.plugin.settings.authToken) {
authSetting.setDesc('✅ Authorized');
}
authSetting.addButton(b => b.setButtonText('Start Auth').onClick(async () => await this.startAuthProcess()));
new Setting(containerEl)
.setName('Default Due Date')

View file

@ -3,5 +3,6 @@
"1.2.0": "0.15.0",
"1.3.0": "0.15.0",
"1.3.1": "0.15.0",
"1.3.2": "0.15.0"
"1.3.2": "0.15.0",
"1.3.3": "0.15.0"
}