Releases: klieret/AnkiPandas
Releases · klieret/AnkiPandas
v0.3.15
v0.3.14
v0.3.13
0.3.12
0.3.11
Removed
- Python 3.6 has reached its end of life and is no longer supported. This is to
ensure that we can keep the code base modern and developers happy.
Fixed
- When updating cards or notes, certain SQL search indices that are usually
automatically created by Anki could be left missing. While these do not
change any of the information in the database and can be created trivially,
this caused Anki to refuse to load the database.
Documentation and developer happiness
- Various improvements to the documentation
- Work on modernizing the code base
Contributions
A big thank you to @frnsys for pointing out the trouble with the search indices and creating a PR to fix it!
v0.3.10
0.3.10 -- 2021-05-07
Fixed
- The SQLite connection to the database is now always closed right away by the Collection.
This solves issues where the connection was kept open even though all collection and
AnkiDataFrame objects were deleted (there is additional garbage collection trouble).
Read more in issue 75
v0.3.9
v0.3.8
0.3.8 -- 2020-12-05
Fixed
- Setup problems with editable install as described here
- Compability issues with building ankipandas on windows machines (windows is not
using utf8 by default which often results in errors, see
here) - Issues with max search depth for databse search
- AttributeError when calling
merge_notes
withinplace=True
. Issue #51 - Default search paths might not have been working because the user name was not inserted properly
- Properly tell anki that things were changed and that it should sync its tables
Changed
- Improved database search on windows machines
- If no changes are detected in the different tables, the database will not be overwritten
v0.3.7
Fixed
merge_cards
andmerge_notes
didn't update metadata of return value, resulting in errors like
Unknown value of _df_format
. Issue #42force
values weren't passed on, resulting in AnkiPandas refusing to do anything
when writing out- On Windows the int size is 32 bit even on 64 bit computers, resulting in issues with
large values of ids. Issue #41