diff --git a/main.ts b/main.ts index 31c82e4..60df57c 100644 --- a/main.ts +++ b/main.ts @@ -21,10 +21,10 @@ export default class CypherPlugin extends Plugin { this.addRibbonIcon('dice', 'Cypher Text', () => { this.isCypherEnabled = !this.isCypherEnabled; if (this.isCypherEnabled) { - new Notice('Cypher Plugin Activated!'); + new Notice('Cypher Activated!'); this.applyCypher(); } else { - new Notice('Cypher Plugin Deactivated!'); + new Notice('Cypher Deactivated!'); this.revertCypher(); } }).addClass('cypher-plugin-ribbon-class'); @@ -51,7 +51,7 @@ export default class CypherPlugin extends Plugin { } onunload() { - console.log("Cypher Plugin unloaded."); + console.log("Cypher unloaded."); } async loadSettings() { @@ -176,7 +176,7 @@ class CypherSettingTab extends PluginSettingTab { display(): void { const { containerEl } = this; containerEl.empty(); - containerEl.createEl('h2', { text: 'Cypher Plugin Settings' }); + containerEl.createEl('h2', { text: 'Cypher Settings' }); new Setting(containerEl) .setName('Cypher Style') diff --git a/manifest.json b/manifest.json index a7e6c17..2489704 100644 --- a/manifest.json +++ b/manifest.json @@ -6,6 +6,5 @@ "description": "Hides text in a simple diagramatic cypher to make reading unrecognizable for viewers.", "author": "Atharva", "authorUrl": "https://github.com/aths7", - "fundingUrl": "https://github.com/aths7", "isDesktopOnly": false }