Skip to content

Commit

Permalink
change some more stuff for release
Browse files Browse the repository at this point in the history
  • Loading branch information
koljapluemer committed Jan 21, 2025
1 parent d9f8755 commit 063ce43
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ If any of these steps cause you trouble, refer to *Method 2* in [this excellent

## Get Started

1. Select the little $ICON in your ribbon. (![queue icon](doc/img/queue.png))
2. You are in your queue, have fun!
1. Select the little icon in your ribbon. (![queue icon](queue.png))
2. You are in your queue, have fun! Go to the next note by selecting any of the buttons in the bar on the bottom.

## Usage, Features and Functionality

Expand Down
Binary file added queue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default class QueuePlugin extends Plugin {
new NoteShuffler(mediator)
new ActiveNoteManager(mediator)

this.addRibbonIcon('banana', 'Toggle Queue', (evt: MouseEvent) => {
this.addRibbonIcon('square-square', 'Toggle Queue', (evt: MouseEvent) => {
// the toggle is held here b/c it's basically the core way of
// interacting with the plugin itself,
// however the logic is first handled by the QueueBar visually
Expand Down
8 changes: 4 additions & 4 deletions tests/pickingNotes.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NoteShuffler } from "src/controllers/NoteShuffler"


// referencing a not yet existing function in NoteShuffler, which has to be extracted from side-effecty, large functions
test('checking function for note selection', () => {
NoteShuffler.getNotesConsideredDue()
})
// // referencing a not yet existing function in NoteShuffler, which has to be extracted from side-effecty, large functions
// test('checking function for note selection', () => {
// NoteShuffler.getNotesConsideredDue()
// })

0 comments on commit 063ce43

Please sign in to comment.