Compare commits
No commits in common. "3cc37bea3005abe0053daed258548a4d44dbebc5" and "8e7169fb4a8a1d8fef17cad3f4c36f7683fc603b" have entirely different histories.
3cc37bea30
...
8e7169fb4a
3 changed files with 4 additions and 11 deletions
|
|
@ -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/)
|
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.10"
|
version = "0.22.9"
|
||||||
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."wutta.config.extensions"]
|
[project.entry-points."rattail.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
|
||||||
if 'default' in available:
|
i = available.index('default')
|
||||||
i = available.index('default')
|
if i >= 0:
|
||||||
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