mirror of
https://github.com/mossy1022/Smart-Memos.git
synced 2026-07-22 10:30:29 +00:00
Updated to Smart Memos
This commit is contained in:
parent
4e4f601736
commit
3fb334bafd
3 changed files with 10 additions and 10 deletions
10
main.ts
10
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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue