Add banner for admins and config switch. Update by cron

This commit is contained in:
phl0
2024-09-12 15:24:18 +02:00
parent 7750198bb0
commit 6a36465574
6 changed files with 67 additions and 18 deletions

View File

@@ -25,11 +25,11 @@ $config['datadir'] = null; // default to install directory
|
| 'table_name' SQL table where log can be found
| 'locator' Default locator used to calculate bearings/distance
| 'display_freq' Show or Hide frequnecy info
| 'display_freq' Show or Hide frequnecy info
*/
$config['table_name'] = 'TABLE_HRD_CONTACTS_V01';
$config['locator'] = '%baselocator%';
$config['table_name'] = 'TABLE_HRD_CONTACTS_V01';
$config['locator'] = '%baselocator%';
$config['display_freq'] = true;
/*
@@ -64,7 +64,7 @@ $config['hamqth_password'] = '%hamqth_password%';
|
| 'use_auth' False turns all authentication off, best used when setting up
| 'auth_table' MySQL Database Table defaults "users"
| 'auth_mode' Minimum user level required 0 = anonymous, 1 = viewer,
| 'auth_mode' Minimum user level required 0 = anonymous, 1 = viewer,
| 2 = editor, 3 = api user, 99 = owner
| 'auth_level[]' Defines level titles
*/
@@ -631,7 +631,7 @@ $config['disable_manual_qrz'] = false;
| Disables QSL-Image-Feature
|--------------------------------------------------------------------------
|
| This disabled the whole QSL image feature if you don't need it and want to hide it.
| This disabled the whole QSL image feature if you don't need it and want to hide it.
| Set to true will hide all QSL image related stuff in Wavelog
|
*/
@@ -643,7 +643,7 @@ $config['disable_qsl'] = false;
| Disables OQRS-Feature
|--------------------------------------------------------------------------
|
| This disabled the whole OQRS feature if you don't need it and want to hide it.
| This disabled the whole OQRS feature if you don't need it and want to hide it.
| Set to true will hide all OQRS related stuff in Wavelog
|
*/
@@ -658,18 +658,18 @@ $config['disable_oqrs'] = false;
| This config switch is meant to use for Special Callsign operations in a dedicated Wavelog Installation
| If this switch is set to true it will enable a dialog which pops up for each operator after login
| to ask for his personal callsign. This causes the QSOs to get saved with the correct operator data.
| Example: Special Callsign: DL250CDF
| Example: Special Callsign: DL250CDF
| Operator: DF2TG
|
| It is recommend to enable also "Disable Syncing to 3rd party-Services at UI"
| More Information about this feature and how to use it, you can find here:
|
| It is recommend to enable also "Disable Syncing to 3rd party-Services at UI"
| More Information about this feature and how to use it, you can find here:
| https://github.com/wavelog/wavelog/wiki/Recommended-Setup-for-Special-Callsigns-and-Clubs
*/
$config['special_callsign'] = false;
// hides the usermenu; takes action only if "special_callsign" is true
$config['sc_hide_usermenu'] = true;
$config['sc_hide_usermenu'] = true;
/*
@@ -679,10 +679,10 @@ $config['sc_hide_usermenu'] = true;
|
| This config switch disables the impersonate feature. This feauture is used to impersonate another user.
| Impersonate is enabled by default. To disable it, set the value to false.
|
|
*/
$config['disable_impersonate'] = false;
$config['disable_impersonate'] = false;
/*
@@ -692,7 +692,19 @@ $config['disable_impersonate'] = false;
|
| The cronmanager needs http or https with a valid certificate to work.
| If you want to use it with https and a self-signed certificate, you need to set this to true.
|
|
*/
$config['cron_allow_insecure'] = false;
$config['cron_allow_insecure'] = false;
/*
|--------------------------------------------------------------------------
| Update / version check
|--------------------------------------------------------------------------
| This config switch enabled the check for newer releases on github and
| displays a banner to admin users if a newer release as published.
| Default on.
*/
$config['version_check'] = false;