Merge pull request #995 from DJ2LS/develop

pull/999/head v0.17.6-beta
DJ2LS 2025-07-03 06:01:31 +02:00 committed by GitHub
commit 6a0cd424a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 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": {
@ -26,7 +26,7 @@
"homepage": "https://freedata.app",
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.5",
"bootstrap": "^5.3.7",
"bootstrap-icons": "^1.11.3",
"bootstrap-vue-next": "^0.30.0",
"chart.js": "^4.4.3",
@ -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,
)