[release] Bump to version 68.1
All checks were successful
ci / test (push) Successful in 2m2s
ci / build-and-deploy (push) Successful in 56s

- Fix bug where link on homepage only jumps to media type if already uncollapsed
This commit is contained in:
2026-08-25 10:53:57 -04:00
parent cdcc84fc01
commit fd3607d790
3 changed files with 20 additions and 18 deletions

View File

@ -1,5 +1,23 @@
#+title: CHANGELOG #+title: CHANGELOG
* Version 68.1 [1/1]
** DONE [#B] Fix bug where link on homepage only jumps to media type if already uncollapsed :bug:ui:templates:
:PROPERTIES:
:ID: 2719639e-d9b4-8523-6974-30846882ecaa
:END:
*** Implementation
The summary strip links to =#home-<type>=, which lives inside a collapsed
Bootstrap accordion panel on the "Details" section. When the panel is
collapsed, the browser cannot scroll to the hidden target, so the jump only
worked if the section was already expanded.
- File: ~vrobbler/templates/scrobbles/scrobble_list.html~ (extra_js block)
- On load, if the URL hash starts with =#home-=, expand the matching
=#collapse-<type>= panel first (via =bootstrap.Collapse.getOrCreateInstance=),
then scroll to the target once the collapse finishes animating.
* Version 68.0 [3/3] * Version 68.0 [3/3]
** DONE [#B] Add Groq and Mistral free models :agents:scrobbles: ** DONE [#B] Add Groq and Mistral free models :agents:scrobbles:
:PROPERTIES: :PROPERTIES:

View File

@ -18,7 +18,7 @@ tasks, Todoist tasks, web pages I've read and trails I've hiked has turned out
to be sometimes cathartic and sometimes functional as I try to remember when I to be sometimes cathartic and sometimes functional as I try to remember when I
did a thing. did a thing.
* Backlog [0/31] :vrobbler:project:personal: * Backlog [0/30] :vrobbler:project:personal:
** TODO [#C] Configure IMAP folder/start in user profile :imap:settings: ** TODO [#C] Configure IMAP folder/start in user profile :imap:settings:
*** Description *** Description
@ -591,19 +591,3 @@ The Edit log form should have from top to bottom:
- Expansion ids (which should a multi-select widget of expansions for this game) - Expansion ids (which should a multi-select widget of expansions for this game)
- Location (which should be a drop down of BoardGameLocations for this user) - Location (which should be a drop down of BoardGameLocations for this user)
** TODO [#B] Fix bug where link on homepage only jumps to media type if already uncollapsed :bug:ui:templates:
:PROPERTIES:
:ID: 2719639e-d9b4-8523-6974-30846882ecaa
:END:
*** Implementation
The summary strip links to =#home-<type>=, which lives inside a collapsed
Bootstrap accordion panel on the "Details" section. When the panel is
collapsed, the browser cannot scroll to the hidden target, so the jump only
worked if the section was already expanded.
- File: ~vrobbler/templates/scrobbles/scrobble_list.html~ (extra_js block)
- On load, if the URL hash starts with =#home-=, expand the matching
=#collapse-<type>= panel first (via =bootstrap.Collapse.getOrCreateInstance=),
then scroll to the target once the collapse finishes animating.

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "vrobbler" name = "vrobbler"
version = "68.0" version = "68.1"
description = "" description = ""
authors = ["Colin Powell <colin@unbl.ink>"] authors = ["Colin Powell <colin@unbl.ink>"]