Releases: trln/trln_argon
Releases · trln/trln_argon
v3.0.11: Fix the rendering of the cover image on the show page
v3.0.10: Start Over & Back to Search fix
v3.0.9: DocumentComponent Refactor
What's Changed
Upgrade Notes
- If you have customized or extended
TrlnArgon::DocumentComponent
, note that it no longer exists. We are now usingTrlnArgon::DocumentIndexComponent
for documents presented in search results andTrlnArgon::DocumentShowComponent
for the document's item show page. - If you have local config for
config.index.document_component
, you'll likely need to update it - If you have customizations in the item show page, you may now use
config.show.document_component
to reference a component (defaults toTrlnArgon::DocumentShowComponent
). - If your item show page customizations were made via a local copy of
app/views/catalog/_show_main_content.html.erb
, those will continue to work, but updating that file is recommended. Note deprecation warnings for methods likerender_document_partials
that will no longer work in BL9.
v3.0.8: TomSelect checkbox accessibility
Patches accessibility issues within TomSelect checkboxes rendered in Advanced Search
Use BL8 facet suggest feature for configured facets
This version adds a core feature, available in Blacklight 8.8.2, that makes it easier for users to navigate a facet with many values after clicking the 'more' link to open the facet modal (see demo).
Fix advanced search field alignment
Merge pull request #502 from trln/Fix-advanced-search-field-alignment Fix advanced search field alignment
Fix the advanced search page layout.
Fix local dev environment caching bug on homepage & advanced search.
Fixes TD-1417.
- Ensures that Rails.cache.fetch is not called when caching is false; this would sometimes lead to errors in a development environment;
- Note you can run rails dev:cache in development to temporarily turn on caching for troubleshooting.
Fix & refine TomSelect implementation on Advanced Search
- Ensure CSS compiles correctly in prod env (scss import syntax fix);
- Reset placeholder text to "Select some options";
- Restore default BL column offset so tomselect facets are aligned with the top input fields.
Implement TomSelect to the advanced search page
This release adds TomSelect to the advanced search page, following guidance from this wiki page.