Compare commits

...

3 commits

Author SHA1 Message Date
3cc37bea30 bump: version 0.22.9 → 0.22.10 2025-09-20 14:47:29 -05:00
207125bdb3 fix: avoid error if 'default' theme not included 2025-09-20 14:47:05 -05:00
5a78b0740d fix: fix config extension entry point
per upstream changes
2025-09-20 14:41:55 -05:00
3 changed files with 11 additions and 4 deletions

View file

@ -5,6 +5,13 @@ All notable changes to Tailbone will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## v0.22.10 (2025-09-20)
### Fix
- avoid error if 'default' theme not included
- fix config extension entry point
## v0.22.9 (2025-09-20)
### Fix

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project]
name = "Tailbone"
version = "0.22.9"
version = "0.22.10"
description = "Backoffice Web Application for Rattail"
readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
@ -78,7 +78,7 @@ webapi = "tailbone.webapi:main"
beaker = "tailbone.cleanup:BeakerCleaner"
[project.entry-points."rattail.config.extensions"]
[project.entry-points."wutta.config.extensions"]
tailbone = "tailbone.config:ConfigExtension"

View file

@ -300,8 +300,8 @@ def get_available_themes(rattail_config, include=None):
available.sort()
# make default theme the first option
i = available.index('default')
if i >= 0:
if 'default' in available:
i = available.index('default')
available.pop(i)
available.insert(0, 'default')