Skip to content

Commit

Permalink
Fixed wording
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikmayer committed Feb 29, 2024
1 parent 26e5fb6 commit 7b1f0e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Yesterday",
"version": "1.0.4",
"minAppVersion": "0.12.0",
"description": "Transforms Obsidian into a visually stunning diary.",
"description": "Transform your notes into a visually stunning diary.",
"author": "Dominik Mayer",
"authorUrl": "https://www.yesterday.md",
"isDesktopOnly": false
Expand Down
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ export default class Yesterday extends Plugin {

// Creates icons in the left ribbon
addRibbonIcons() {
const newEntryRibbon = this.addRibbonIcon('create-new', 'Create Entry', (evt: MouseEvent) => {
const newEntryRibbon = this.addRibbonIcon('create-new', 'Create entry', (evt: MouseEvent) => {
this.createEntry();
});

const toggleTodoRibbon = this.addRibbonIcon('checkmark', 'Toggle To Do', (evt: MouseEvent) => {
const toggleTodoRibbon = this.addRibbonIcon('checkmark', 'Toggle draft/complete', (evt: MouseEvent) => {
this.toggleTodo();
});
}
Expand All @@ -54,7 +54,7 @@ export default class Yesterday extends Plugin {

this.addCommand({
id: 'toggle-to-do',
name: 'Toggle entry to do',
name: 'Toggle draft/complete',
callback: () => {
this.toggleTodo();
}
Expand Down

0 comments on commit 7b1f0e9

Please sign in to comment.