Compare commits
34 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c3fcbbd918 | ||
![]() |
0ac34b3014 | ||
![]() |
06cde8ad06 | ||
![]() |
434f9cdd7e | ||
![]() |
35cde98d2c | ||
![]() |
44e687653c | ||
![]() |
320418d524 | ||
![]() |
8f55cb151c | ||
![]() |
4f0c43bd84 | ||
![]() |
a39866308c | ||
![]() |
00cb8d9dce | ||
![]() |
19bde84f6d | ||
![]() |
a7567ce6d0 | ||
![]() |
8e87e3d88b | ||
![]() |
6aa276374f | ||
![]() |
23232e1c8f | ||
![]() |
b225c3578f | ||
![]() |
30efbaab34 | ||
![]() |
8ca0586c0f | ||
![]() |
938887ef91 | ||
![]() |
f31bc5310e | ||
![]() |
925bf5b5a4 | ||
![]() |
e768ec1fca | ||
![]() |
d09f43ba7a | ||
![]() |
748c4d8c71 | ||
![]() |
c7ddfefe34 | ||
![]() |
c0205d582a | ||
![]() |
4ac882a3b0 | ||
![]() |
bdbc4b27b6 | ||
![]() |
42598fc675 | ||
![]() |
5d49edc823 | ||
![]() |
0bc0a8d5f5 | ||
![]() |
726d5279c1 | ||
![]() |
a0f780c455 |
2 changed files with 8 additions and 3 deletions
|
@ -3,7 +3,8 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
|
||||||
|
## [2.3.0] - 2021-03-01
|
||||||
### Fixed
|
### Fixed
|
||||||
- Button to remove uploaded media in post status form is now properly placed and sized.
|
- Button to remove uploaded media in post status form is now properly placed and sized.
|
||||||
- Fixed shoutbox not working in mobile layout
|
- Fixed shoutbox not working in mobile layout
|
||||||
|
@ -16,9 +17,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
- Display 'people voted' instead of 'votes' for multi-choice polls
|
- Display 'people voted' instead of 'votes' for multi-choice polls
|
||||||
- Optimized chat to not get horrible performance after keeping the same chat open for a long time
|
- Optimized chat to not get horrible performance after keeping the same chat open for a long time
|
||||||
- When opening emoji picker or react picker, it automatically focuses the search field
|
- When opening emoji picker or react picker, it automatically focuses the search field
|
||||||
|
- Language picker now uses native language names
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Added reason field for registration when approval is required
|
- Added reason field for registration when approval is required
|
||||||
|
- Group staff members by role in the About page
|
||||||
|
|
||||||
|
|
||||||
## [2.2.3] - 2021-01-18
|
## [2.2.3] - 2021-01-18
|
||||||
### Added
|
### Added
|
||||||
|
@ -30,7 +34,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Don't filter own posts when they hit your wordfilter
|
- Don't filter own posts when they hit your wordfilter
|
||||||
- Language picker now uses native language names
|
|
||||||
|
|
||||||
|
|
||||||
## [2.2.2] - 2020-12-22
|
## [2.2.2] - 2020-12-22
|
||||||
|
@ -40,7 +43,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
- Added some missing unicode emoji
|
- Added some missing unicode emoji
|
||||||
- Added the upload limit to the Features panel in the About page
|
- Added the upload limit to the Features panel in the About page
|
||||||
- Support for solid color wallpaper, instance doesn't have to define a wallpaper anymore
|
- Support for solid color wallpaper, instance doesn't have to define a wallpaper anymore
|
||||||
- Group staff members by role in the About page
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed the occasional bug where screen would scroll 1px when typing into a reply form
|
- Fixed the occasional bug where screen would scroll 1px when typing into a reply form
|
||||||
|
|
|
@ -11,9 +11,12 @@ const fetchAndUpdate = ({ store, credentials, older = false }) => {
|
||||||
const rootState = store.rootState || store.state
|
const rootState = store.rootState || store.state
|
||||||
const timelineData = rootState.statuses.notifications
|
const timelineData = rootState.statuses.notifications
|
||||||
const hideMutedPosts = getters.mergedConfig.hideMutedPosts
|
const hideMutedPosts = getters.mergedConfig.hideMutedPosts
|
||||||
|
const allowFollowingMove = rootState.users.currentUser.allow_following_move
|
||||||
|
|
||||||
args['withMuted'] = !hideMutedPosts
|
args['withMuted'] = !hideMutedPosts
|
||||||
|
|
||||||
|
args['withMove'] = !allowFollowingMove
|
||||||
|
|
||||||
args['timeline'] = 'notifications'
|
args['timeline'] = 'notifications'
|
||||||
if (older) {
|
if (older) {
|
||||||
if (timelineData.minId !== Number.POSITIVE_INFINITY) {
|
if (timelineData.minId !== Number.POSITIVE_INFINITY) {
|
||||||
|
|
Loading…
Reference in a new issue