remove docker folder and fix minor stuff. (#66)
* move docker folder to attic * fix build deps * fix plugin initialization
This commit is contained in:
parent
b9bffb8a9f
commit
23377fcd8b
|
|
@ -0,0 +1,3 @@
|
|||
Keeping old stuff around.
|
||||
If no one send a request to bring these stuff back, they will be removed.
|
||||
|
||||
|
|
@ -88,7 +88,7 @@ fi
|
|||
if [ "${BUILD_DIGIHAM:-}" == "y" ]; then
|
||||
BUILD_CODECSERVER=y
|
||||
fi
|
||||
if [ "${BUILD_PYCSDR:-}" == "y" ] || [ "${BUILD_OWRXCONNECTOR:-}" == "y" ] || [ "${BUILD_CSDR_ETI:-}" == "y" ]; then
|
||||
if [ "${BUILD_PYCSDR:-}" == "y" ] || [ "${BUILD_OWRXCONNECTOR:-}" == "y" ] || [ "${BUILD_CSDR_ETI:-}" == "y" || [ "${BUILD_CWSKIMMER:-}" == "y" ] ]; then
|
||||
BUILD_CSDR=y
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,25 @@
|
|||
// Plugin loader.
|
||||
// Receiver plugins initialization.
|
||||
// everything after '//' is a comment.
|
||||
|
||||
// First load the utils, needed for some plugins
|
||||
Plugins.load('utils').then(function () {
|
||||
// load local plugins
|
||||
Plugins.load('example');
|
||||
Plugins.load('example_theme');
|
||||
Plugins.load('sort_profiles');
|
||||
// !!! IMPORTANT !!! More information about the plugins can be found here:
|
||||
// https://0xaf.github.io/openwebrxplus-plugins/
|
||||
|
||||
// load remote plugins
|
||||
Plugins.load('https://0xaf.github.io/openwebrxplus-plugins/receiver/keyboard_shortcuts/keyboard_shortcuts.js');
|
||||
// uncomment the next line to enable plugin debugging in browser console.
|
||||
// Plugins._enable_debug = true;
|
||||
|
||||
// base URL for remote plugins
|
||||
const rp_url = 'https://0xaf.github.io/openwebrxplus-plugins/receiver';
|
||||
|
||||
// First load the utils, needed for most plugins
|
||||
Plugins.load(rp_url + '/utils/utils.js').then(async function () {
|
||||
// to load local plugins use a plugin folder name directly
|
||||
//Plugins.load('example');
|
||||
|
||||
// otherwise, you can load the remote plugins like this:
|
||||
|
||||
// Load the notification plugin, used by some plugins. await to ensure it is loaded before the rest.
|
||||
await Plugins.load(rp_url + '/notify/notify.js');
|
||||
|
||||
Plugins.load(rp_url + '/colorful_spectrum/colorful_spectrum.js');
|
||||
Plugins.load(rp_url + '/connect_notify/connect_notify.js');
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue