Skip to content

Commit

Permalink
Fix sentence generation and update version+README
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMoolenaar committed Jun 19, 2022
1 parent d9e32d2 commit 4a0d1d5
Show file tree
Hide file tree
Showing 3 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
@@ -1,4 +1,4 @@
### Fork of the Migaku Japanese Addon to support Anki 2.1.53 (Qt6). Work is still in progress and current version is still unstable.
### Fork of the Migaku Japanese Addon to support Anki 2.1.50+ (Qt6). Work is still in progress and current version is still unstable.

Broken functionality:
- (linux) Generation of Pitch Graphs.
Expand Down
2 changes: 1 addition & 1 deletion src/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
addon_path = dirname(__file__)
import platform

verNumber = "1.2.3"
verNumber = "1.2.3+1.0.0"

class JSGui(QScrollArea):
def __init__(self, mw, colArray, languageModeler, reboot, CSSJSHandler, UEManager):
Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def customFind(self, query, order=False, reverse=False):
Collection.find_cards = customFind

def getFieldName(fieldIndex, note):
fields = mw.col.models.field_names(note.note_type)
fields = mw.col.models.field_names(note.note_type())
field = fields[int(fieldIndex)]
return field;

Expand Down

0 comments on commit 4a0d1d5

Please sign in to comment.