diff --git a/config/pialert.conf b/config/pialert.conf index f3226790..e99340a2 100644 --- a/config/pialert.conf +++ b/config/pialert.conf @@ -25,7 +25,7 @@ REPORT_DEVICE_URL = 'http://pi.alert/deviceDetails.php?mac=' REPORT_NTFY = False REPORT_DASHBOARD_URL = 'http://pi.alert/' -NTFY_TOPIC = 'replace_my_secure_topicname_91h889f28' +NTFY_TOPIC = 'replace-my-secure-topicname-91h889f28' # QUERY_MYIP_SERVER = 'https://diagnostic.opendns.com/myip' QUERY_MYIP_SERVER = 'http://ipv4.icanhazip.com' diff --git a/front/deviceDetails.php b/front/deviceDetails.php index 92f31946..b5b11762 100644 --- a/front/deviceDetails.php +++ b/front/deviceDetails.php @@ -321,9 +321,9 @@ if ($_REQUEST['mac'] == 'Internet') { $DevDetail_Tap_temp = "Tools"; } else { $D
diff --git a/front/devices.php b/front/devices.php index dcdea723..5ee163bf 100644 --- a/front/devices.php +++ b/front/devices.php @@ -246,7 +246,13 @@ function initializeDatatable () { // 'order' : [[3,'desc'], [0,'asc']], 'columnDefs' : [ - {visible: false, targets: [10, 11, 12] }, + // Only display all collums on non mobile device width - still in testing phase + if ($(window).width() < 400) { + {visible: false, targets: [10,11,12,1,2,3,4,5,6,8] }, + } + else { + {visible: false, targets: [10, 11, 12] }, + } {className: 'text-center', targets: [3, 8, 9] }, {width: '80px', targets: [5, 6] }, {width: '0px', targets: 9 }, diff --git a/front/php/templates/language/de_de.php b/front/php/templates/language/de_de.php index a49e6f2c..e2e9f256 100644 --- a/front/php/templates/language/de_de.php +++ b/front/php/templates/language/de_de.php @@ -135,6 +135,8 @@ $pia_lang['DevDetail_EveandAl_Skip'] = 'pausiere wiederhol. Meldungen für'; $pia_lang['DevDetail_EveandAl_NewDevice'] = 'Neues Gerät'; $pia_lang['DevDetail_EveandAl_Archived'] = 'Archivierung'; $pia_lang['DevDetail_EveandAl_RandomMAC'] = 'Zufällige MAC'; +$pia_lang['DevDetail_EveandAl_ScanCycle_a'] = 'Gerät scannen (1 min)'; +$pia_lang['DevDetail_EveandAl_ScanCycle_z'] = 'Gerät nicht scannen (0 min)'; $pia_lang['DevDetail_button_Delete'] = 'Lösche Gerät'; $pia_lang['DevDetail_button_Reset'] = 'Verwerfen'; $pia_lang['DevDetail_button_Save'] = 'Speichern'; diff --git a/front/php/templates/language/en_us.php b/front/php/templates/language/en_us.php index 6980a6b1..d339fabf 100644 --- a/front/php/templates/language/en_us.php +++ b/front/php/templates/language/en_us.php @@ -135,6 +135,8 @@ $pia_lang['DevDetail_EveandAl_Skip'] = 'Skip repeated notifications during'; $pia_lang['DevDetail_EveandAl_NewDevice'] = 'New Device'; $pia_lang['DevDetail_EveandAl_Archived'] = 'Archived'; $pia_lang['DevDetail_EveandAl_RandomMAC'] = 'Random MAC'; +$pia_lang['DevDetail_EveandAl_ScanCycle_a'] = 'Scan Device (1 min)'; +$pia_lang['DevDetail_EveandAl_ScanCycle_z'] = 'Don't Scan Device (0 min)'; $pia_lang['DevDetail_button_Delete'] = 'Delete Device'; $pia_lang['DevDetail_button_Reset'] = 'Reset Changes'; $pia_lang['DevDetail_button_Save'] = 'Save';