mirror of https://github.com/DJ2LS/FreeDATA.git
Merge branch 'develop' into ls-norm
commit
f4dd20470c
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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..."
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue