Compare commits

..

No commits in common. "3cc37bea3005abe0053daed258548a4d44dbebc5" and "8e7169fb4a8a1d8fef17cad3f4c36f7683fc603b" have entirely different histories.

3 changed files with 4 additions and 11 deletions

View file

@ -5,13 +5,6 @@ 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.10"
version = "0.22.9"
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."wutta.config.extensions"]
[project.entry-points."rattail.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
if 'default' in available:
i = available.index('default')
i = available.index('default')
if i >= 0:
available.pop(i)
available.insert(0, 'default')