Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2500805c54 | |||
| 8a3c147858 | |||
| 5ae236f228 | |||
| b62e41966c | |||
| c230536e49 | |||
| 3cc37bea30 | |||
| 207125bdb3 | |||
| 5a78b0740d |
4 changed files with 29 additions and 7 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
|
@ -5,6 +5,29 @@ 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.23.0 (2025-10-19)
|
||||
|
||||
### Feat
|
||||
|
||||
- require latest rattail; drop passlib dependency
|
||||
|
||||
### Fix
|
||||
|
||||
- depend on latest rattail
|
||||
|
||||
## v0.22.11 (2025-09-20)
|
||||
|
||||
### Fix
|
||||
|
||||
- avoid error when row object missing field
|
||||
|
||||
## 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
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "Tailbone"
|
||||
version = "0.22.9"
|
||||
version = "0.23.0"
|
||||
description = "Backoffice Web Application for Rattail"
|
||||
readme = "README.md"
|
||||
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
||||
|
|
@ -43,7 +43,6 @@ dependencies = [
|
|||
"openpyxl",
|
||||
"paginate",
|
||||
"paginate_sqlalchemy",
|
||||
"passlib",
|
||||
"Pillow",
|
||||
"pyramid>=2",
|
||||
"pyramid_beaker",
|
||||
|
|
@ -53,7 +52,7 @@ dependencies = [
|
|||
"pyramid_mako",
|
||||
"pyramid_retry",
|
||||
"pyramid_tm",
|
||||
"rattail[db,bouncer]>=0.20.1",
|
||||
"rattail[db,bouncer]>=0.21.0",
|
||||
"sa-filters",
|
||||
"simplejson",
|
||||
"transaction",
|
||||
|
|
@ -78,7 +77,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"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -578,7 +578,7 @@ class Grid(WuttaGrid):
|
|||
|
||||
try:
|
||||
return obj[column_name]
|
||||
except TypeError:
|
||||
except (TypeError, KeyError):
|
||||
pass
|
||||
|
||||
def render_currency(self, obj, column_name):
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue