removing comments

This commit is contained in:
aths7 2024-11-19 12:30:07 +05:30
parent 6d8454a88d
commit 6d8eb85762
2 changed files with 4 additions and 5 deletions

View file

@ -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')

View file

@ -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
}