Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c0c2a3f2e | |||
| ac9b5ef652 | |||
| 099fb6deb6 | |||
| f3e1620057 | |||
| b52eea79c2 | |||
| 8972d2d72a | |||
| 49ed27e58f | |||
| 9a5d90a703 | |||
| bceca97c98 | |||
| 52c6914d41 |
@@ -1343,7 +1343,14 @@ function resetDb() {
|
||||
db.transaction('rankings', 'readwrite').objectStore('rankings').clear();
|
||||
db.transaction('follows', 'readwrite').objectStore('follows').clear();
|
||||
db.transaction('expenditures', 'readwrite').objectStore('expenditures').clear();
|
||||
var osUpdateTimes = db.transaction('update_times', 'readwrite').objectStore('update_times');
|
||||
var ta = db.transaction('update_times', 'readwrite');
|
||||
ta.oncomplete = (event) => {
|
||||
log('[db] resetDb: Transaction complete');
|
||||
};
|
||||
ta.onerror = (event) => {
|
||||
log('[db] resetDb: Transaction failed');
|
||||
};
|
||||
var osUpdateTimes = ta.objectStore('update_times');
|
||||
osUpdateTimes.put({ table: 'last_sync', time: 1 });
|
||||
osUpdateTimes.put({ table: 'clubs', time: 0 });
|
||||
osUpdateTimes.put({ table: 'boats', time: 0 });
|
||||
@@ -1357,6 +1364,8 @@ function resetDb() {
|
||||
osUpdateTimes.put({ table: 'news', time: 0 });
|
||||
osUpdateTimes.put({ table: 'users', time: 0 });
|
||||
osUpdateTimes.put({ table: 'expenditures', time: 0 });
|
||||
osUpdateTimes.put({ table: 'loggedin', status: isLoggedIn() });
|
||||
ta.commit();
|
||||
log('[db] DB update times reset');
|
||||
hideLoader();
|
||||
}
|
||||
|
||||
@@ -320,7 +320,7 @@ function pushesSubscribe() {
|
||||
applicationServerKey: applicationServerKey
|
||||
})
|
||||
.then(async function(subscription) {
|
||||
log('[app] Subscription:', subscription);
|
||||
log('[app] Subscription:', JSON.stringify(subscription));
|
||||
if (await pushesUpdateServerSubscription(subscription, true)) {
|
||||
log('[app] Subscription: Sent to server, updating UI');
|
||||
dbSettingsSet('notify_endpoint_' + BOATCLASS, subscription.endpoint);
|
||||
@@ -346,7 +346,7 @@ function pushesUnSubscribe(silent = false) {
|
||||
log('[app] Unsubscribing');
|
||||
swRegistration.pushManager.getSubscription()
|
||||
.then(async function(subscription) {
|
||||
log('[app] Subscription:', subscription);
|
||||
log('[app] Subscription:', JSON.stringify(subscription));
|
||||
if (subscription) {
|
||||
if (await pushesUpdateServerSubscription(subscription, false)) {
|
||||
log('[app] Subscription: Removed from server');
|
||||
@@ -374,7 +374,7 @@ function pushesUnSubscribe(silent = false) {
|
||||
|
||||
function pushesUpdateServerSubscription(subscription, enabled) {
|
||||
return new Promise(function(resolve){
|
||||
log('[app] updateServer', enabled, subscription);
|
||||
log('[app] updateServer', enabled, JSON.stringify(subscription));
|
||||
$.ajax({
|
||||
url: QUERY_URL + (enabled ? 'add' : 'remove') + '_subscription',
|
||||
type: 'POST',
|
||||
@@ -477,7 +477,7 @@ function updatePushBadge() {
|
||||
var dbSub = await dbSettingsGet('notify_endpoint_' + BOATCLASS);
|
||||
var isSub = (subscription !== null);
|
||||
log('[app] DB Subscription:', dbSub);
|
||||
log('[app] Real Subscription:', subscription);
|
||||
log('[app] Real Subscription:', JSON.stringify(subscription));
|
||||
if (isSub) {
|
||||
$('#badge-pushes').removeClass('bg-red2-dark').addClass('bg-green2-dark').text('AN');
|
||||
if (dbSub === null) dbSettingsSet('notify_endpoint_' + BOATCLASS, subscription.endpoint);
|
||||
|
||||
@@ -201,11 +201,14 @@
|
||||
justify-content: center;
|
||||
}
|
||||
.expenditures-list > div.sum > div:nth-child(1) > div:nth-child(1) {
|
||||
background: white;
|
||||
background: #fff;
|
||||
width: initial;
|
||||
margin-top: -1em;
|
||||
padding: 0 .5em;
|
||||
}
|
||||
.theme-dark .expenditures-list > div.sum > div:nth-child(1) > div:nth-child(1) {
|
||||
background-color: #0f1117;
|
||||
}
|
||||
|
||||
/*** NORMAL LIST ***/
|
||||
.normal-list > div {
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="menu-more" class="menu menu-box-bottom menu-box-detached rounded-m" data-menu-height="360" >
|
||||
<div id="menu-more" class="menu menu-box-bottom menu-box-detached rounded-m" data-menu-height="410" >
|
||||
<div class="menu-title"><h1>Mehr</h1><p class="color-highlight"> </p><a href="#" class="close-menu"><i class="fa fa-times"></i></a></div>
|
||||
<div class="divider divider-margins mb-n2"></div>
|
||||
<div class="content">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
|
||||
define('PWA_VERSION', '1.13');
|
||||
define('PWA_VERSION', '1.13h5');
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user