Skip to content

Commit

Permalink
Changed naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Ole Eskild Steensen committed Mar 13, 2022
1 parent 071a889 commit d0b3b48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ You can now start adding links as you usually would in Obisidan, with double squ

**Copy Garden URL**: This command will copy the URL of the currently active note to your clipboard

**View Publication Status**: This command behaves the same as the ribbon icon. It will list what files are published, changed, deleted and not yet published.
**Open Publication Center**: This command behaves the same as the ribbon icon. It will open the publication center where you can view a list what files are published, changed, deleted and not yet published.

## Modifying the template/site
The code for the website is available in the repo you created in step 3, and this is yours to modify however you want. If you know some css I encourage you to change the default styling to make the site your own. Please modify the custom-style.scss when doing so to avoid
Expand Down
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class DigitalGarden extends Plugin {


addIcon('digital-garden-icon', seedling);
this.addRibbonIcon("digital-garden-icon", "Digital Garden publication status", async ()=>{
this.addRibbonIcon("digital-garden-icon", "Digital Garden Publication Center", async ()=>{
this.openPublishModal();
});
}
Expand Down Expand Up @@ -141,7 +141,7 @@ export default class DigitalGarden extends Plugin {

this.addCommand({
id: 'dg-open-publish-modal',
name: 'View Publication Status',
name: 'Open Publication Center',
callback: async () => {
this.openPublishModal();
}
Expand Down

0 comments on commit d0b3b48

Please sign in to comment.