Add widescreen setting and universal time
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 59s

This commit is contained in:
Nicholas Orlowsky 2025-09-25 22:58:43 -04:00
parent 36b674182a
commit 5b51f1b036
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
2 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,57 @@
{
"db_name": "PostgreSQL",
"query": "SELECT \n id, \n name, \n short_name, \n color_hex, \n route_type as \"route_type: libseptastic::route::RouteType\"\n FROM \n septa_routes\n ORDER BY\n CASE\n WHEN id ~ '^[0-9]+$' THEN CAST(id AS INT)\n ELSE NULL\n END ASC,\n id ASC;\n ;",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Varchar"
},
{
"ordinal": 1,
"name": "name",
"type_info": "Varchar"
},
{
"ordinal": 2,
"name": "short_name",
"type_info": "Varchar"
},
{
"ordinal": 3,
"name": "color_hex",
"type_info": "Varchar"
},
{
"ordinal": 4,
"name": "route_type: libseptastic::route::RouteType",
"type_info": {
"Custom": {
"name": "septa_route_type",
"kind": {
"Enum": [
"trolley",
"subway_elevated",
"regional_rail",
"bus",
"trackless_trolley"
]
}
}
}
}
],
"parameters": {
"Left": []
},
"nullable": [
false,
false,
false,
false,
false
]
},
"hash": "8479e45bc7bc3f4170102ffc78d5f25d1ff7486fcb266e7306de8c624090bc89"
}