Skip to content

Commit cafc41c

Browse files
committed
fix: add uploadId
1 parent f808f40 commit cafc41c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/anki_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# We only want to include major and minor here, not patch version
1616
# We do not really care about the patch version
1717
# We trust that Anki will not break anything in a patch version *fingers crossed*
18-
new_recommended_version_tuple = (25, 6)
18+
new_recommended_version_tuple = (25, 7)
1919
new_recommended_version = ".".join(str(x).zfill(2) for x in new_recommended_version_tuple)
2020

2121

src/card_types.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class AudioAsset:
1212
title: str
1313
input: str
1414
r2Url: Optional[str] = None
15+
uploadId: Optional[str] = None
1516

1617

1718
@dataclass
@@ -21,6 +22,7 @@ class ImageAsset:
2122
src: str
2223
alt: str
2324
r2Url: Optional[str] = None
25+
uploadId: Optional[str] = None
2426

2527

2628
@dataclass

0 commit comments

Comments
 (0)