Skip to content

Releases: klieret/AnkiPandas

v0.3.15

11 Oct 13:31
8a80466
Compare
Choose a tag to compare

Removed

  • Collection.write now raises a NotImplementedError because
    #137 has so far not been
    resolved and has caused numerous problems.

v0.3.14

14 May 16:41
dedd1fc
Compare
Choose a tag to compare

0.3.14 -- 2023-05-14

Fixed

  • Ensured compatibility with pandas 2.0

v0.3.13

05 Apr 16:50
Compare
Choose a tag to compare

Fixed

  • Require pandas < 2.0 for now because of API changes in pandas 2.0.

0.3.12

01 Jan 20:00
af98f45
Compare
Choose a tag to compare

0.3.12 -- 2022-12-29

Fixed

  • Fix future warning about Index.__and__

0.3.11

29 Dec 10:40
4df631e
Compare
Choose a tag to compare

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

07 May 08:49
Compare
Choose a tag to compare

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

07 May 08:49
Compare
Choose a tag to compare

0.3.9 -- 2020-12-17

Deprecated

  • Future releases will not support python 3.5 anymore. Added warning for users still on
    python 3.5.

v0.3.8

06 Dec 12:57
Compare
Choose a tag to compare

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 with inplace=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

28 Nov 15:48
Compare
Choose a tag to compare

Fixed

  • merge_cards and merge_notes didn't update metadata of return value, resulting in errors like
    Unknown value of _df_format. Issue #42
  • force 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

v0.3.6

26 Aug 13:00
Compare
Choose a tag to compare

0.3.6 - 2020-08-26

Fixed

  • Keep support for python 3.5