comparison sat/core/constants.py @ 4038:c484c2609275

core (constants): fix URL, forgotten `SàT` reference + set new codename to "La Ruche"
author Goffi <goffi@goffi.org>
date Thu, 13 Apr 2023 21:53:53 +0200
parents 524856bd7b19
children 1c4f4aa36d98
comparison
equal deleted inserted replaced
4037:524856bd7b19 4038:c484c2609275
29 class Const(object): 29 class Const(object):
30 30
31 ## Application ## 31 ## Application ##
32 APP_NAME = "Libervia" 32 APP_NAME = "Libervia"
33 APP_COMPONENT = "backend" 33 APP_COMPONENT = "backend"
34 APP_NAME_ALT = "SàT" 34 APP_NAME_ALT = "Libervia"
35 APP_NAME_FILE = "libervia" 35 APP_NAME_FILE = "libervia"
36 APP_NAME_FULL = f"{APP_NAME} ({APP_COMPONENT})" 36 APP_NAME_FULL = f"{APP_NAME} ({APP_COMPONENT})"
37 APP_VERSION = ( 37 APP_VERSION = (
38 sat.__version__ 38 sat.__version__
39 ) # Please add 'D' at the end of version in sat/VERSION for dev versions 39 ) # Please add 'D' at the end of version in sat/VERSION for dev versions
40 APP_RELEASE_NAME = "La Cecília" 40 APP_RELEASE_NAME = "La Ruche"
41 APP_URL = "https://salut-a-toi.org" 41 APP_URL = "https://libervia.org"
42 42
43 ## Runtime ## 43 ## Runtime ##
44 PLUGIN_EXT = "py" 44 PLUGIN_EXT = "py"
45 HISTORY_SKIP = "skip" 45 HISTORY_SKIP = "skip"
46 46