Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 2 KB

File metadata and controls

64 lines (42 loc) · 2 KB

Changelog

All major and minor version changes will be documented in this file. Details of patch-level version changes can be found in commit messages.

2024 - 2024/02/03

  • use ruff instead of pylint
  • code quality improvements

2023 - 2023/06/26

  • Improved the tutorial docs
  • Bugfixes to run function
  • Test run function

2022.2 - 2022/09/02

Improvements per #4, thanks https://github.com/ArielMAJ for the improvements and the changelog :)

  • Old main function is now called run and receives all the same arguments as expected from CLI with the same default values.
    • This means the user can now import waifu2x and just run waifu2x.run(input_img_path="./input.png", output_img_path="./output.png") to upscale images from a script.
    • This also means everything works the same (main function calls run() with default args).
  • Added extra argument to run and a few other functions in __init__.py as to stop prints from happening (as they might not be wanted when importing this module.

Fix Pillow deprecations https://pillow.readthedocs.io/en/stable/deprecations.html#constants

2022.1 - 2022/04/12

  • Improve tests
  • Code improvements (docs + typing)
  • Move docs
  • Update pre-commit

2022 - 2022/01/23

  • Added tests
    $ poetry run py -m pytest test/test.py
    ===================================== test session starts ======================================
    
    collected 4 items
    
    test\test.py ....                                                                         [100%]
    
    ====================================== 4 passed in 16.80s ======================================
  • Bump pillow version (CVE-2022-22815, CVE-2022-22816, CVE-2022-22817)
  • Fix crash when image has no transparency

2021.2 - 2021/11/10

  • pre-commit
  • type-hinting (partial)
  • code quality improvements

2021.1 - 2021/09/14

  • fix alpha detection #1

2021 - 2021/04/15

  • First release