From 3fb334bafd4c97b01d301c55855bf9bbcca7bcc3 Mon Sep 17 00:00:00 2001 From: Mossy1022 Date: Sun, 23 Jun 2024 12:23:35 -0400 Subject: [PATCH] Updated to Smart Memos --- main.ts | 10 +++++----- manifest.json | 6 +++--- package.json | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/main.ts b/main.ts index 3c9d41f..cf9f72e 100644 --- a/main.ts +++ b/main.ts @@ -44,7 +44,7 @@ const MODELS: string[] = [ ]; -export default class SmartTranscriptionsPlugin extends Plugin { +export default class SmartMemosPlugin extends Plugin { settings: AudioPluginSettings; writing: boolean; transcript: string; @@ -65,7 +65,7 @@ export default class SmartTranscriptionsPlugin extends Plugin { } }); - this.addSettingTab(new SmartTranscriptionsSettingTab(this.app, this)); + this.addSettingTab(new SmartMemosSettingTab(this.app, this)); } @@ -348,10 +348,10 @@ export default class SmartTranscriptionsPlugin extends Plugin { } -class SmartTranscriptionsSettingTab extends PluginSettingTab { - plugin: SmartTranscriptionsPlugin; +class SmartMemosSettingTab extends PluginSettingTab { + plugin: SmartMemosPlugin; - constructor(app: App, plugin: SmartTranscriptionsPlugin) { + constructor(app: App, plugin: SmartMemosPlugin) { super(app, plugin); this.plugin = plugin; diff --git a/manifest.json b/manifest.json index 06689c7..49c763b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { - "id": "smart-transcriptions", - "name": "Smart Transcriptions", - "version": "1.0.3", + "id": "smart-memos", + "name": "Smart Memos", + "version": "1.0.4", "minAppVersion": "0.15.0", "description": "Create personalized and intelligent analysis, summaries, and more for audio recordings that can be imported or spoken directly into a note", "author": "Evan Moscoso", diff --git a/package.json b/package.json index c32545e..e4c2ef5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "smart-transcriptions", - "version": "1.0.3", + "name": "smart-memos", + "version": "1.0.4", "description": "Create personalized and intelligent analysis, summaries, and more for audio recordings that can be imported or spoken directly into a note", "main": "main.js", "scripts": {