Merge branch 'develop' into ls-norm

pull/989/head
DJ2LS 2025-07-02 09:20:45 +02:00 committed by GitHub
commit f4dd20470c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 6 deletions

View File

@ -18,7 +18,7 @@ jobs:
ref: ${{ github.head_ref }}
- name: Prettify code
uses: creyD/prettier_action@v4.5
uses: creyD/prettier_action@v4.6
with:
# This part is also where you can pass other options, for example:
prettier_options: --write **/*.{js,md,css,html}

View File

@ -1,6 +1,6 @@
{
"name": "FreeDATA",
"version": "0.17.5-beta",
"version": "0.17.6-beta",
"description": "FreeDATA Client application for connecting to FreeDATA server",
"private": true,
"scripts": {
@ -39,7 +39,7 @@
"i18next": "^25.0.2",
"i18next-vue": "^5.2.0",
"js-image-compressor": "^2.0.0",
"marked": "^15.0.3",
"marked": "^16.0.0",
"pinia": "^3.0.1",
"qth-locator": "^2.1.0",
"topojson-client": "^3.1.0",

View File

@ -202,7 +202,7 @@
"attempt": "Versuch",
"utc": "UTC",
"adif": "ADIF",
"new": "neui",
"new": "neu",
"selectChat": "Bitte starte oder wähle einen Chat aus",
"noConversations": "bislang noch kein Chat hier",
"loadingMessages": "Lade Nachrichten..."

View File

@ -1,7 +1,7 @@
# Module for saving some constants
CONFIG_ENV_VAR = 'FREEDATA_CONFIG'
DEFAULT_CONFIG_FILE = 'config.ini'
MODEM_VERSION = "0.17.5-beta"
MODEM_VERSION = "0.17.6-beta"
API_VERSION = 3
ARQ_PROTOCOL_VERSION = 1
LICENSE = 'GPL3.0'

View File

@ -47,7 +47,7 @@ async def lifespan(app: FastAPI):
# Create FastAPI app with unified lifespan
app = FastAPI(
title="FreeDATA API",
version=API_VERSION,
version=str(API_VERSION),
lifespan=lifespan,
)