Skip to content

Commit

Permalink
turn off directory +NEW+ labeling for now
Browse files Browse the repository at this point in the history
  • Loading branch information
azuline committed Oct 15, 2023
1 parent 8986cd6 commit c84757a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rose/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,9 @@ def update_cache_for_releases(c: Config, release_dirs: list[Path], force: bool =
release_virtual_dirname += " [" + ";".join(release.genres) + "]"
if release.labels:
release_virtual_dirname += " {" + ";".join(release.labels) + "}"
if release.new:
release_virtual_dirname += " +NEW!+"
# Reimplement this once we have new toggling.
# if release.new:
# release_virtual_dirname += " +NEW!+"
release_virtual_dirname = sanitize_filename(release_virtual_dirname)
# And in case of a name collision, add an extra number at the end. Iterate to
# find the first unused number.
Expand Down

0 comments on commit c84757a

Please sign in to comment.