Skip to content

Commit

Permalink
changed plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
Reocin committed Jan 28, 2021
1 parent 71e4470 commit 1b2ef91
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 52 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Obsidian Markdown WYSIWYG Editor
# Obsidian Markdown Editor

> Version 0.1.1
> If you find a Bug or have a feature request: https://github.com/Reocin/obsidian-markdown-wysiwyg-editor-plugin/issues
> If you find a Bug or have a feature request: https://github.com/Reocin/obsidian-markdown-editor-plugin/issues
![](assets/Obsidian_Overview_V2.png)
![](assets/Obsidian_Overview.png)

## Side Panel

Expand Down
32 changes: 0 additions & 32 deletions build/README.md

This file was deleted.

10 changes: 5 additions & 5 deletions build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"id": "obsidian-markdown-wysiwyg-editor",
"name": "Markdown WYSIWYG Editor",
"version": "0.1.0",
"id": "obsidian-markdown-editor",
"name": "Markdown Editor",
"version": "0.1.1",
"minAppVersion": "0.10.9",
"description": "This Plugin provides a simple WYSIWYG Editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.",
"description": "This Plugin provides a simple Editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.",
"author": "Reocin",
"authorUrl": "https://github.com/Reocin/obsidian-markdown-wysiwyg-editor-plugin",
"authorUrl": "https://github.com/Reocin/obsidian-markdown-editor-plugin",
"isDesktopOnly": false
}
3 changes: 2 additions & 1 deletion build/versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"0.1.0": "0.10.9"
"0.1.0": "0.10.9",
"0.1.1": "0.10.9"
}
8 changes: 4 additions & 4 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"id": "obsidian-markdown-wysiwyg-editor",
"name": "Markdown WYSIWYG Editor",
"id": "obsidian-markdown-editor",
"name": "Markdown Editor",
"version": "0.1.1",
"minAppVersion": "0.10.9",
"description": "This Plugin provides a simple WYSIWYG Editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.",
"description": "This Plugin provides a simple Editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.",
"author": "Reocin",
"authorUrl": "https://github.com/Reocin/obsidian-markdown-wysiwyg-editor-plugin",
"authorUrl": "https://github.com/Reocin/obsidian-markdown-editor-plugin",
"isDesktopOnly": false
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "obsidian-markdown-wysiwyg-editor",
"name": "obsidian-markdown-editor",
"version": "0.1.0",
"description": "This plugin improves the writing of MarkDown files",
"homepage": "https://github.com/Reocin/obsidian-markdown-wysiwyg-editor-plugin",
"homepage": "https://github.com/Reocin/obsidian-markdown-editor-plugin",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w && openObsidian",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import copy from 'rollup-plugin-copy';

const exportFolder = '.obsidian/plugins/obsidian-markdown-wysiwyg-editor';
const exportFolder = '.obsidian/plugins/obsidian-markdown-editor';
export default {
input: 'src/main.ts',
output: {
Expand Down
1 change: 0 additions & 1 deletion rollup.production.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export default {
{ src: 'styles.css', dest: exportFolder },
{ src: 'manifest.json', dest: exportFolder },
{ src: 'versions.json', dest: exportFolder },
{ src: 'README.md', dest: exportFolder },
],
}),
],
Expand Down
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default class MarkdownAutocompletePlugin extends Plugin {
private keyUpFunction: (cm: CodeMirror.Editor, event: KeyboardEvent) => {};

async onload() {
console.log('loading obsidian-markdown-wysiwyg-editor plugin');
console.log('loading obsidian-markdown-editor plugin');

await this.loadSettings();
addIcons();
Expand All @@ -42,7 +42,7 @@ export default class MarkdownAutocompletePlugin extends Plugin {
return this.sidePanelControlView;
});

this.addRibbonIcon('viewIcon', 'Open Markdown WYSIWYG Editor', () => {
this.addRibbonIcon('viewIcon', 'Open Markdown Editor', () => {
this.toggleSidePanelControlView();
});

Expand Down Expand Up @@ -119,7 +119,7 @@ class SettingsTab extends PluginSettingTab {

containerEl.empty();

containerEl.createEl('h2', { text: 'Markdown WYSIWYG Settings' });
containerEl.createEl('h2', { text: 'Markdown Settings' });

new Setting(containerEl)
.setName('Trigger Char')
Expand Down

0 comments on commit 1b2ef91

Please sign in to comment.