Compare commits
3 commits
8e7169fb4a
...
3cc37bea30
| Author | SHA1 | Date | |
|---|---|---|---|
| 3cc37bea30 | |||
| 207125bdb3 | |||
| 5a78b0740d |
3 changed files with 11 additions and 4 deletions
|
|
@ -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/)
|
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).
|
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)
|
## v0.22.9 (2025-09-20)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "Tailbone"
|
name = "Tailbone"
|
||||||
version = "0.22.9"
|
version = "0.22.10"
|
||||||
description = "Backoffice Web Application for Rattail"
|
description = "Backoffice Web Application for Rattail"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
||||||
|
|
@ -78,7 +78,7 @@ webapi = "tailbone.webapi:main"
|
||||||
beaker = "tailbone.cleanup:BeakerCleaner"
|
beaker = "tailbone.cleanup:BeakerCleaner"
|
||||||
|
|
||||||
|
|
||||||
[project.entry-points."rattail.config.extensions"]
|
[project.entry-points."wutta.config.extensions"]
|
||||||
tailbone = "tailbone.config:ConfigExtension"
|
tailbone = "tailbone.config:ConfigExtension"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -300,8 +300,8 @@ def get_available_themes(rattail_config, include=None):
|
||||||
available.sort()
|
available.sort()
|
||||||
|
|
||||||
# make default theme the first option
|
# make default theme the first option
|
||||||
i = available.index('default')
|
if 'default' in available:
|
||||||
if i >= 0:
|
i = available.index('default')
|
||||||
available.pop(i)
|
available.pop(i)
|
||||||
available.insert(0, 'default')
|
available.insert(0, 'default')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue