Skip to content

Commit 1afe793

Browse files
committed
refactor: rename plugin to obsidian-wordpress-reloaded and update related files
1 parent a7ecb19 commit 1afe793

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
PLUGIN_NAME: obsidian-wordpress
12+
PLUGIN_NAME: obsidian-wordpress-reloaded
1313

1414
jobs:
1515
build:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88

99
env:
10-
PLUGIN_NAME: obsidian-wordpress
10+
PLUGIN_NAME: obsidian-wordpress-reloaded
1111

1212
jobs:
1313
build:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ Contributions are welcome! Please feel free to submit a Pull Request.
7575

7676
## License
7777

78-
Same as the original plugin (please specify the license type)
78+
Apache License 2.0, same as the original plugin.

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"id": "obsidian-wordpress",
2+
"id": "obsidian-wordpress-reloaded",
33
"name": "WordPress",
44
"version": "0.18.0",
55
"minAppVersion": "1.1.1",
66
"description": "A plugin for publishing Obsidian documents to WordPress.",
77
"author": "devbean",
88
"isDesktopOnly": false,
99
"fundingUrl": "https://www.buymeacoffee.com/devbean"
10-
}
10+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "obsidian-wordpress",
2+
"name": "obsidian-wordpress-reloaded",
33
"version": "0.18.0",
44
"description": "A plugin for publishing Obsidian documents to WordPress.",
55
"main": "main.js",

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default class WordpressPlugin extends Plugin {
3030
private ribbonWpIcon: HTMLElement | null = null;
3131

3232
async onload() {
33-
console.log('loading obsidian-wordpress plugin');
33+
console.log('loading obsidian-wordpress-reloaded plugin');
3434

3535
await this.loadSettings();
3636
// lang should be load early, but after settings

0 commit comments

Comments
 (0)