Skip to content

Releases: LiquidFun/aoc_tiles

[0.6.2] Majority Language in Header

14 Sep 18:04
Compare
Choose a tag to compare

Add majority language for each year in HTML header in README

[0.6.1] Restore Python 3.8 Compatibility

13 Aug 20:52
Compare
Choose a tag to compare
  • Make sure the project actually works with python 3.8 as claimed by the pyproject.toml

[0.6.0] Add total stars header

01 Jan 01:30
Compare
Choose a tag to compare
  • Add header for all years with total star count (if 3 or more years solved by default)
  • Fix on_leaderboard and either not working with --count-as-solved-when flag (thanks to karl-sparks)

[0.5.6] Fix overwrite-year flag

26 Dec 13:42
Compare
Choose a tag to compare
Fix --overwrite-year flag to now work correctly

[0.5.5] Fix path error in windows

26 Dec 01:25
Compare
Choose a tag to compare
Update readme version

[0.5.4] Fix missing self. for repository variable

25 Dec 12:14
Compare
Choose a tag to compare

[0.5.3] Fix .aoc_tiles not existing, and git repository not being available

25 Dec 05:57
Compare
Choose a tag to compare
  • Fix .aoc_tiles not existing when trying to run the script. Initially running.lock is checked in the .aoc_tiles dir, if it does not exist, then it failed
  • Git repository not being available. For projects where git is not available now it simply works as intended without git functionality.

[0.5.1] Git add README when using autoadd to git flag

25 Dec 00:37
Compare
Choose a tag to compare
  • Highlight part with yellow if placement is in top 100
  • Git add README when using autoadd to git flag

[0.5.0] Fix auto-add-tiles-to-git flag, change script to post-commit hook

16 Dec 23:59
Compare
Choose a tag to compare

Fix auto-add-tiles-to-git flag. Change script to post-commit hook.

[0.4.1] Considerably speed up the script 6s -> 1s

16 Dec 22:39
Compare
Choose a tag to compare

This was achieved by:

  • Using ProcessPoolExecutor instead of ThreadPoolExecutor when
    creating each day. The latter was mistakenly used.
  • Loading the github_languages.yaml with yaml.CLoader instead
    of yaml.FullLoader (speed-up: 0.5s -> 0.1s)
  • Removed checking of each file separately if it is git-ignored.
    Now just iterate over all git-tracked files.