Anki - Win, MAC, Linux, IOS, Android (darmowy)

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.25
Changes in 2.1.25
Release TBA.

Download from
Zaloguj lub Zarejestruj się aby zobaczyć!


  • Fix a change to deck configurations that was breaking AnkiDroid.
  • Fix deck configurations not deleting.
  • Fix angle brackets inside cloze+MathJax not working properly.
  • The DB check fixes an AnkiMobile bug where tags were not searchable.
  • Revert to an earlier macOS toolchain to work around recordings not working.
  • The media check no longer fails when files with very long filenames are in the folder.
  • More gracefully handle case where deck conf is missing.
  • Don’t throw an error when cards have an invalid due number.
  • {{type::Field}} now marks the card as non-empty if Field is non-empty.
  • Tweak tab width in card layout screen (thanks to BlueGreenMagick).
  • Build fixes (thanks to Evandro).
Changes in 2.1.24
Released 2020-04-28, build 359b9f5c.

Searching:

  • You can use w:something to search on word boundaries, eg:
    • w:dog
      search for “dog” on a word boundary - will match “dog”, but not “doggy” or “underdog”.
    • w:dog*
      will match “dog” and “doggy”, but not “underdog”.
    • w:*dog
      will match “dog” and “underdog”, but not “doggy”.
  • You can now use re:something to search via regular expression, eg:
    • "re:(some|another).*thing"
      find notes that have “some” or “another” on them, followed by 0 or more characters, and then “thing”
    • re:\d{3}
      find notes that have 3 digits in a row
    • When searching by regex, unicode case folding is used, so searching for re:über will show a card that has “Über” on it.
  • nc:something (short for “no combining (characters)”) can be used to search while ignoring accents, eg nc:uber will match both “über” and “Über”. This behaves the same way as the “Ignore Accents” add-on, but is about 16x faster.
  • You can now sort on the deck, card template, note type and tags columns.
  • You can now use wildcards when limiting the search to a field, eg field*:something.
  • You can now use wildcards when searching for a card template or note type by name.
  • rated:x searches are now capped to a year instead of a month.
  • You can now escaped double-quotes in a search - eg "foo\"bar"
  • Single-quote searches are no longer supported.
  • Because the searching code has been rewritten, add-ons that modify the search code will need to be updated to support 2.1.24. It is no longer possible to override the Finder class - add-ons will need to use the new hooks in the browser screen to either rewrite the search text, or perform their own lookups instead. The Advanced Browser add-on has already been updated, and can be used as an example of how to accomplish things in 2.1.24.
  • Non-wildcard searches now do full unicode case folding (eg ‘tag:masse’ matches ‘Maße’).
  • Wildcard searches do simple unicode case folding.
  • The tag list in the Browse screen now uses unicode case folding.
macOS dark mode handling:

  • Anki now solely relies on the night mode setting in the preferences to decide whether to show in light or dark mode. Some users wanted to run Anki in light mode while keeping the rest of their system dark, and there were various display problems when dark mode was changed after Anki started that couldn’t be easily worked around.
  • Users who only use dark mode, and preferred the native look of widgets in dark mode, can achieve the previous appearance by running the following command in the terminal:
    defaults write net.ankiweb.dtop NSRequiresAquaSystemAppearance -bool no
    And the following in the debug console:
    mw.pm.meta["dark_mode_widgets"] = True
Database changes (mainly of interest to add-on developers):

  • Anki now uses Rust’s sqlite libraries instead of Python’s.
  • The ‘db’ object on the collection retains most of the same API as before, minimizing the amount of immediate code changes that are required.
  • Custom sql functions are no longer supported, and named DB arguments (eg “where id = :id”) are deprecated.
  • The old database code remains in db.py, and add-ons can continue to use it for accessing their own databases.
  • The database is now behind a mutex, and can be safely accessed from a background thread.
  • Various screens like the database check have been updated to run on a background thread, so they no longer lock up the UI while they’re running.
  • The database progress handler has been removed. Anki previous had sqlite call back into Python periodically during long-running DB operations so it could drain the UI queue, but this would vary in choppyness depending on the type of DB operation being performed, and it was the cause of some crashes in the past. Add-ons that perform long-running operations should instead use mw.taskman.run_in_background() or their own threading solution moving forward.
Other changes:

  • A tweak which should fix some broken add-ons from preventing the collection from being loaded.
  • Add socks support to media sync.
  • Allow dragging fields to change their position (thanks to BlueGreenMagick).
  • Allow selecting add-on config help text (thanks to ijgnd).
  • Allow the type answer arrow to be styled (thanks to Evandro).
  • Anki will now wait for a media sync to complete or be aborted before closing the collection.
  • Build improvements (thanks to Evandro).
  • Changed the way cloze deletions in RTL fields are handled, which should address some corner cases.
  • Clean up the previewing code (thanks to Arthur). Add-ons that modify the preview screen will need updating.
  • Don’t force a full sync when DB check finds cards with a high due number.
  • Don’t show a popup when a network error occurs while syncing media.
  • Fixed a case where decks could be sorted incorrectly (thanks to Arthur).
  • Fixed a useless log file being created when exporting.
  • Fixed add-ons with multiple branches not updating properly.
  • Fixed an error that could occur when performing an operation in the browse screen then immediately closing it.
  • Fixed Anki closing after a full sync on collection load.
  • Fixed current card sometimes not being centered when searching.
  • Fixed deck_browser_did_render hook.
  • Fixed editor buttons not being highlighted (thanks to Simone).
  • Fixed interface getting stuck when a corrupt collection was encountered.
  • Fixed media sync waiting forever when connection dropped.
  • Fixed progress dialogs failing to appear in a timely manner.
  • Fixed tag searches in custom study (thanks to zjosua).
  • Fixed the collection_did_load add-on hook.
  • Fixed the wrong language shown in the preferences screen for some languages.
  • GitHub now checks Windows and Mac builds as well (thanks to Evandro).
  • Handle renamed cloze fields when previewing (thanks to BlueGreenMagick).
  • Ignore .DS_Store files in the media trash folder.
  • Improved invalid HTML/JS error messages (thanks to Evandro).
  • Improved the handling of deck deletions (thanks to Arthur).
  • Improvements to debug console (thanks to BlueGreenMagick).
  • Left-align tags in the browser.
  • Media syncs no longer take time to abort.
  • More hooks (thanks to Arthur).
  • Moved the scheduling options in the preferences to a separate tab, so options fit on the screen even on devices with small screens.
  • Prepare for uploading releases to PyPI (thanks to Evandro).
  • The media check will now fix file references in fields that broke because a filename was shortened as part of a sync.
  • Updated config handling. While there should be no immediate breakages, if you’re an add-on author and store lists or dicts in Anki’s config, please see 676f4e74a.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.29
Changes in 2.1.29
Released 2020-07-28, build bbff62bf.

  • Add cloze-only: template filter, which can be combined with TTS to speak only the elided part.
  • Fixed AltGr key handling in standard Windows build.
  • Fix some Windows performance problems by rolling back to an older Qt version.
  • Support the terminal command that enables dark mode on macOS again.
  • Start media sync after full sync finishes.
  • Fixed mpv taking time to start (thanks to Kelciour)
  • Code/build improvements (thanks to Evandro, Matt & Arthur).
  • Use right-to-left direction in some webviews when using RTL interface language.
  • Fixed card ID and note ID being flipped in card stats.
  • Don’t show an error when card contains an empty URL.
  • Various fixes for deck statistics.
  • Fixed preview not updating when editing text in the Browse screen.
  • Close gracefully on SIGTERM.
  • Other minor tweaks.
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Grandalf

Bardzo aktywny
Członek Załogi
Moderator
Dołączył
26 Maj 2015
Posty
19204
Reakcje/Polubienia
55889

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.32
Changes in 2.1.32
Released 2020-08-25, build dee7d45d.

  • Roll back a change in the previous update that could cause syncs to time out.
  • Fix sign up link in login screen.
Changes in 2.1.31
Released 2020-08-23, build 13476503.

  • Show card counts in pie graph, and other minor graph tweaks.
  • Fix sync error+lost review when undoing in v2 filtered deck with scheduling off.
  • Fix crash when dragging & dropping, thanks to ANH25.
  • Fix ‘stale notetype’ error after sync+add.
  • Close “edit current” when current card deleted.
  • Code improvements thanks to ANH, Arthur, Evandro, Henrik and Thomas.
  • Find&Replace completion is now case sensitive.
  • Fix crash when recovering notes with missing notetype.
  • Fix duplicate detection when input text is not normalized.
  • Fix Empty Cards not ignoring BR tags.
  • Fix Find&Replace window sizing.
  • Fix handling of nested legacy template directives.
  • Fix issues with bulk tag removal.
  • Fix mpv failing to play audio after it’s restarted, thanks to Kelciour.
  • Fix some (rare) crashes.
  • Full syncs and media syncs now terminate more quickly when the connection breaks.
  • Improve support for getting proxies from Windows registry.
  • Remove embedded direction markers in RTL cloze deletions.
  • Strip nul characters from tags.
Changes in 2.1.30
Released 2020-08-09, build 06a69c25.

  • Work around a failure to start on some Windows 10 May 2020 installations.
  • Fix “show windows in tabs” not working on standard macOS build.
  • Fix move into/out of filtered decks not syncing.
  • Add right axis to graphs.
  • Add night mode and mobile class toggles in card layout screen (thanks to ANH25).
  • Card counts graph now always shows table.
  • Catch negative review times in DB check.
  • Code improvements (thanks to Matt, phwoo, Evandro and aplaice).
  • Fix a crash in the DB check when a note type was missing.
  • Fix automatic logout not working when auth failure occurs.
  • Fix deck list and graphs not including v2 scheduler cards with rescheduling disabled.
  • Fix early reviews not appearing in review graph.
  • Fix hour graph problem in timezones west of UTC.
  • Fix negated conditonals being non-negated when renamed.
  • Fix some syncing errors that could happen until Check Database was run.
  • Fix some young cards being shown as mature in reviews graph.
  • Handle multiple same-numbered clozes in cloze-only filter.
  • Refresh tag list after clearing empty tags.
  • Other minor fixes.


Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.34
What's new in Anki 2.1.34
September 30, 2020

  • Fix a bug in Anki 2.1.28+ where a newly created deck config would default to an ease
  • Of 130%. When updating, Anki will automatically change any deck configs with an ease
  • Of 130% back to 250%, and change any cards using those deck configs with a low ease
  • Back to an ease of 250%. Users who updated from an older Anki version and did not add
  • New deck configurations should not be affected. If you have deliberately set an
  • Initial ease of 130%, please change it to 131% or greater prior to upgrading, so that
  • Anki leaves your settings alone. Thanks to Aleksa for discovering the issue.
  • Update the standard builds to the latest GUI toolkit version. Please report any
  • Improvements or regressions you notice.
  • Dropped audio plays automatically again (thanks to abdo).
  • Revert to older sound playing behaviour to work around issues (thanks to kelciour).
  • Is:due now stops at now+learn ahead limit, instead of end of day.
  • Various improvements/fixes, some thanks Aleksa & Henrik.
Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.35
December 8, 2020
  • Fix a bug in Anki 2.1.29+ that caused excessive memory and CPU usage on long-running operations that show a progress bar, such as importing.
  • Roll back Mac and Windows builds to Qt 5.14 again, as there are still issues with 5.15.
  • Fix display issue in graphs on alternate Mac build.
  • Fix preview not updating on multiple selection (thanks to abdo).
  • Fix old content appearing when flagging immediately after typing.
  • Fix some handling of * in searches.
  • Sidebar now correctly escapes some characters (thanks to abdo).


Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.36
December 10, 2020
  • Notable changes:
  • Alternate builds have been discontinued. If you are using a 32 bit system, or a macOS version older than 10.13, Anki 2.1.35 is the last release you will be able to update to.
  • MathJax has been updated to version 3, thanks to Henrik. It should render faster than before. If you were customizing the MathJax configuration using Javascript, you will need to use a new method.
  • A separate mpv process is now used to play videos on Windows, which should solve issues with playing getting stuck, thanks to Kelciour.
  • The handling of wildcards and escape characters in search has been reworked to be more consistent, thanks to Rumo.
  • Early startup messages are now translable, thanks to Abdo.
  • When cards are rescheduled in the browse screen, a review entry log is now created.
  • The main card area is now focused instead of the bottom area during review, which allows using the keyboard to scroll, thanks to Henrik.
  • Bugfixes:
  • Fixed corrupt indexes when checking database.
  • Fixed duplicate search when sort field is not first field (thanks to Abdo).
  • Fixed error when switching to note type with fewer fields.
  • Fixed invalid utf8 in notes when checking database.
  • Fixed invisible scrollbar in night mode + browser.
  • Fixed issues with “find duplicates” (thanks to Abdo)
  • Fixed some issues with adding/renaming decks (thanks to Cecini).
  • Other minor fixes.
  • For developers:
  • Anki is now built using Bazel. This leads to more reliable builds, and reduces the number of dependencies you need to manually install. Please see docs/ for updated build instructions, and report any issues you encounter on the user forums.
  • The minimum Python version has been updated to 3.8.
  • The wheels available on PyPI support both Python 3.8 and 3.9.
  • All translations have been migrated to Fluent.
  • Normal and night mode theming now uses CSS variables, making it easier to override in add-ons.
  • The congrats screen, burying/suspending, filtered deck building/emptying, browser sidebar, and card reposition/reset have been reworked. If you were modifying them in an add-on, your add-on may need updating. For the congratulations screen, see the new webview_did_inject_style_into_page hook


Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.37
Released 2020-12-12, build 6d596c8f.

  • Fixed filtered decks not honoring sort order.
  • Fixed review screen not automatically scrolling to answer (thanks to Henrik).
  • The deck options screen now limits minimum ease to 131%.
For developers:

  • Added a scripts/build command to build the redistributable wheels.
  • The Rust worker is disabled by default, as some users had trouble building with it.


Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.38
Changes in 2.1.38
Released 2020-12-26, build 355e4cd5.
  • Use a new approach for recording audio. If you encounter any issues, the old PyAudio driver can be selected in the Preferences screen. The old driver will likely be retired in the future, so please let us know if the default system does not work for you.
  • All built-in Windows TTS voices should now be supported on recent Windows 10 releases (thanks to Ryan).
  • Fix the Reposition tool in the Browse screen not following the sort order.
  • Reduce the default fade time in the review screen.
  • The ANGLE video driver can now be selected in the Preferences on Windows.
  • Fix some instances of the sync indicator remaining on after sync (thanks to Rumo).
  • Work around –text-fg appearing in fields.
  • Fix link in about screen (thanks to Abdo).
  • Fix ‘1’ being shown instead of the correct number in some Russian translations.
  • Fixed invisible characters when adding new card templates (thanks to Henrik).
  • Fixed duplicate check getting confused by non-breaking spaces (thanks to abdo).
  • Don’t throw error when computer hostname is invalid.
  • Other minor changes (thanks to Henrik & k12sh)
For developers:
  • Protobuf binaries are now used to speed up the initial build.
  • Fixed Python code completion, and added some info to docs/development.md
  • ./run now runs Anki with Python warnings enabled - PRs that fix any that come up would be welcome (thanks cecini for the first!)
Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.39
Changes in 2.1.39
Released 2021-02-02, build 576f0043.

  • Fix the Reposition command not preserving the browser sort order.
  • Fix some issues causing the sync indicator to show unnecessarily (thanks to Rumo).
  • Fix a spurious warning about a full sync when renaming card templates.
  • Fix Anki not working after installing on Linux over a previous install.
  • Don’t log card resets when exporting.
  • Fix congrats screen not showing when learning cards were due soon.
  • Updated bundled lame and mpv on Windows and Mac builds.
  • Other fixes and improvements, with thanks to Henrik, Rumo, Abdo, Arthur, Guillem, Meredith, Gustavo and Daniel.
Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.41
March 7, 2021
  • Browser improvements:
  • Tags now show in a tree (thanks to Abdo)
  • Added a search bar to the sidebar (thanks to Abdo)
  • New context menu actions to rename or remove tags and their children, rename decks, manage notetypes, and rename/remove saved searches (thanks to Abdo and BlueGreenMagick)
  • The preview button in the browse screen has moved into the editing area (thanks to Henrik)
  • With the improved sidebar, a number of options have been removed from the Filter button
  • The remaining items in the Filter button have been moved into the sidebar, and the Filter button removed
  • Tags and decks can now be dragged and dropped in the sidebar
  • Each section can now be expanded/collapsed
  • “Due” now shows only cards due that day
  • Added “Overdue” item
  • Click on Decks to show whole collection
  • Click on Flags to show any flag
  • Click on Tags to show all non-empty tags
  • Added “Untagged” under Tags
  • Editing improvements:
  • <br> tags will now be used by default instead of the previous <div> tags, which solves some issues with multiple lines in cloze deletions and MathJax (thanks to Henrik)
  • The tags field in the editor now autocompletes from anywhere in a tag name, not only the start
  • Invalid field content can no longer spill out into the editing area (thanks to Henrik)
  • Search improvements:
  • Searches are new rewritten into a canonical format (eg one two becomes "one" AND "two") (thanks to Rumo)
  • Search error messages are now much more specific (thanks to Rumo)
  • is:learn, is:due and prop:due now handle more cases, such as suspended cards (thanks to Henrik)
  • Added prop:pos search to search for new card position (thanks to Abdo)
  • Added a shortcut to replace part of a search with a different search (eg changing the selected deck) (thanks to Rumo)
  • Support resched:x for searching for cards that were manually rescheduled in x days (thanks to Henrik)
  • Support prop:rated/resched to search for rated/rescheduled cards over specific time periods (thanks to Henrik)
  • Filtered decks can now be created from a browser search, and vice versa (thanks to Rumo)
  • Filtered deck screen now has a link to show cards not matched by search (thanks to Rumo, Abdo)
  • Better ergonomics for developers (thanks to Rumo)
  • Graph improvements:
  • A number of the graphs can now be clicked on to search for the cards displayed by the graph (thanks to Henrik)
  • The starting day of week can now be altered in the Calendar graph (thanks to Henrik)
  • The Card Counts graph now supports toggling separate suspended/buried counts (thanks to Henrik)
  • The intervals and ease graphs now covers more cases, such as suspended cards (thanks to Henrik)
  • Place less emphasis on outliers in the Calendar graph (thanks to Henrik)
  • Ignore manually scheduled cards in hour graph
  • Scheduler improvements:
  • The V2 scheduler no longer applies parent review limits to child decks Previously the limits were inconsistently applied, which could lead to the deck list not reflecting the actual number of cards you’d receive when you clicked on a deck AnkiMobile and AnkiWeb have been updated to match this behaviour, and AnkiDroid will also be updated soon Using 2141 in conjunction with older clients will not cause any problems when syncing, but you may find the deck list/review counts do not match
  • The V1->V2 upgrade process no longer resets cards that are in learning, or removes cards from filtered decks
  • Users on the old scheduler will now see a message at the top of the deck list prompting them to update to the Anki 21 scheduler
  • There is no option to downgrade to the V1 scheduler anymore, though you can still do so by downgrading to an older Anki version first
  • Reworked the Reschedule tool:
  • Split into separate “Forget” and “Set Due Date” actions
  • “Set Due Date” defaults to not adjusting the card interval
  • Changed the “Delete Tags” shortcut; Ctrl+Shift+D now changes the due date
  • Added the action to the review screen as well
  • Input now remembered
  • Other changes:
  • A basic sync server is now built into Anki It does not yet support media Docs are in the docs/ folder of the source tree
  • The title bar on Macs will now turn dark when night mode is activated
  • Deck descriptions of the congratulations screen can be enabled by turning markdown on in the deck options, but only 2141+ will be able to render the markdown
  • Add opus to media list in editor
  • Edit/More buttons auto-hide when window is small (thanks to Henrik)
  • Support Alt+number to switch between clozes in the card layout screen (thanks to Abdo)
  • Use monospace font in HTML editor
  • Improve error message when trying to nest under a filtered deck (thanks to Rumo)
  • Reposition dialog’s “shift cards” option now defaults to off
  • Other fixes and improvements thanks to Henrik, Rumo, Abdo, Arthur, Maksim, Guillem, stayingpeachy, Daniel, khonkhortisan and Kerrick
  • Fixes:
  • Fix the Reposition command not preserving the browser sort order
  • Fix some issues causing the sync indicator to show unnecessarily (thanks to Rumo)
  • Fix slowdown after large “check media” report
  • Fix a spurious warning about a full sync when renaming card templates
  • Fix a freeze when answering a card with a missing parent deck
  • Fix Anki not working after installing on Linux over a previous install
  • Don’t log card resets when exporting
  • Fix congrats screen not showing when learning cards were due soon
  • Updated bundled lame and mpv on Windows and Mac builds
  • For developers:
  • Add-on authors, please see
    Zaloguj lub Zarejestruj się aby zobaczyć!
  • Almost all of the Python codebase now has type hints ??
  • JS libraries like jQuery have been updated (thanks to Henrik)
  • Add (untested) support for ARM64 Linux
  • orjson is turned back into an optional requirement (though is still recommended, as it’s faster)
  • The sidebar code has been moved from from browserpy into sidebarpy, which may break some add-ons


Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
37810
Reakcje/Polubienia
33943
Anki 2.1.42
Changes in 2.1.42
Released 2021-03-10.

  • Fix sync downloads failing when temp folder on separate partition.
  • Fix RTL fields (thanks to Abdo).
  • Fix issues with field focusing and caret positioning (thanks to Henrik).
  • Strip comments when pasting HTML (thanks to Abdo).
  • Don’t forget CSV delimeter when canceling dialog (thanks to Benjamin).
  • Fix stale caches after rolling back to a checkpoint (thanks to Rumo).
Pobieramy na stronie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Grandalf

Bardzo aktywny
Członek Załogi
Moderator
Dołączył
26 Maj 2015
Posty
19204
Reakcje/Polubienia
55889
Anki 2.1.43
Version 2.1.43 released 2021-04-03:
  • The reviewing screen will now wait for up to 100ms for images to load before showing, and waits until images have been loaded before scrolling to the answer.
  • The default fade-in on the review screen has been removed.
  • Fix DB check incorrectly identifying an issue after lapsing a card with a non-zero interval % in the V1 scheduler.
  • Fix editing toolbar being initially active (thanks to Henrik).
  • Fix some error messages (thanks to Rumo).
  • Fix expand/collapse triggering click in sidebar (thanks to BlueGreenMagick).
  • Update translations, thanks to the translators.
  • Fix “Forgot Card” message.
  • Fix deck list not updating after deleting.
Pobieranie:
Zaloguj lub Zarejestruj się aby zobaczyć!
 
Do góry