changelog, small fix
This commit is contained in:
parent
072a06fc89
commit
c0e2ba37c8
1
changelog.d/double-notifications.fix
Normal file
1
changelog.d/double-notifications.fix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix native notifications appearing as many times as there are open tabs. Clicking on notification will focus last focused tab.
|
1
changelog.d/focus-clear.add
Normal file
1
changelog.d/focus-clear.add
Normal file
@ -0,0 +1 @@
|
|||||||
|
Focusing into a tab clears all current desktop notifications
|
1
changelog.d/mobile-chrome-notifs.fix
Normal file
1
changelog.d/mobile-chrome-notifs.fix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fixed error that appeared on mobile Chrome(ium) (and derivatives) when native notifications are allowed
|
1
changelog.d/mobile-drawer-notifications.change
Normal file
1
changelog.d/mobile-drawer-notifications.change
Normal file
@ -0,0 +1 @@
|
|||||||
|
Added option to not mark all notifications when closing notifications drawer on mobile, this creates a new button to mark all as seen.
|
1
changelog.d/more-notification-types-setting.fix
Normal file
1
changelog.d/more-notification-types-setting.fix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fixed being unable to set notification visibility for reports and follow requests
|
1
changelog.d/native-filtering.add
Normal file
1
changelog.d/native-filtering.add
Normal file
@ -0,0 +1 @@
|
|||||||
|
Added option to toggle what notification types appear in native notifications, by default less important ones (likes, repeats, etc) will no longer show up in native notifications.
|
1
changelog.d/native-notifications.add
Normal file
1
changelog.d/native-notifications.add
Normal file
@ -0,0 +1 @@
|
|||||||
|
Native notifications now also have "badge" property that matches instance's favicon (visible in Android Chromium at least)
|
1
changelog.d/noninteractive-ignore-read.add
Normal file
1
changelog.d/noninteractive-ignore-read.add
Normal file
@ -0,0 +1 @@
|
|||||||
|
Added option to treat non-interactive notifications (likes, repeats et all) as seen for visual purposes (no read mark, ignored in counters, still can show in native notifications)
|
1
changelog.d/notification-read.add
Normal file
1
changelog.d/notification-read.add
Normal file
@ -0,0 +1 @@
|
|||||||
|
Interacting (opening reply box etc) or simply clicking on non-interactive notifications now marks them as read. Clicking on native notifications for non-interactive ones also marks them as seen.
|
1
changelog.d/notifications-sorting.change
Normal file
1
changelog.d/notifications-sorting.change
Normal file
@ -0,0 +1 @@
|
|||||||
|
Notifications are no longer sorted by "seen" status since interacting with them can change their read status and makes UI jumpy. Old behavior can be restored in settings.
|
1
changelog.d/serviceworkers.change
Normal file
1
changelog.d/serviceworkers.change
Normal file
@ -0,0 +1 @@
|
|||||||
|
Notifications are now shown through a serviceworker (since mobile chrome does not allow them otherwise), it's always enabled, even if previously we only enabled it for WebPush notifications only. If you don't like websites "running" while closed, check how to disable them in your browser. Old way to show notifications will be used as a fallback but might not have all the new features.
|
@ -86,7 +86,7 @@ const MobileNav = {
|
|||||||
// make sure to mark notifs seen only when the notifs were open and not
|
// make sure to mark notifs seen only when the notifs were open and not
|
||||||
// from close-calls.
|
// from close-calls.
|
||||||
this.notificationsOpen = false
|
this.notificationsOpen = false
|
||||||
if (markRead) {
|
if (markRead && this.closingDrawerMarksAsSeen) {
|
||||||
this.markNotificationsAsSeen()
|
this.markNotificationsAsSeen()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -122,7 +122,6 @@ const MobileNav = {
|
|||||||
this.hideConfirmLogout()
|
this.hideConfirmLogout()
|
||||||
},
|
},
|
||||||
markNotificationsAsSeen () {
|
markNotificationsAsSeen () {
|
||||||
// this.$refs.notifications.markAsSeen()
|
|
||||||
this.$store.dispatch('markNotificationsAsSeen')
|
this.$store.dispatch('markNotificationsAsSeen')
|
||||||
},
|
},
|
||||||
onScroll ({ target: { scrollTop, clientHeight, scrollHeight } }) {
|
onScroll ({ target: { scrollTop, clientHeight, scrollHeight } }) {
|
||||||
|
Loading…
Reference in New Issue
Block a user