Initial work on deprecating scopeModesEnabled in favor of minimalScopeMode
2 unresolved threads
2 unresolved threads
see also: #147 (closed) (fixes last two checkboxes there)
Edited by HJ
Merge request reports
Activity
added 1 commit
- 98fed1a9 - Initial work on deprecating scopeModesEnabled in favor of minimalScopeMode
added 1 commit
- e1f55b60 - Initial work on deprecating scopeModesEnabled in favor of minimalScopeMode
added 1 commit
- 860e73e8 - Initial work on deprecating scopeModesEnabled in favor of minimalScopeMode
added 1 commit
- 6184c88a - Initial work on deprecating scopeModesEnabled in favor of minimalScopeMode
- Resolved by Shpuld Shpludson
- Resolved by HJ
added 264 commits
-
beaf4fcf...0117f6af - 262 commits from branch
develop
- e89a6220 - fix formatting
- 9f4a9bff - Merge remote-tracking branch 'upstream/develop' into minimal-scopes-mode
-
beaf4fcf...0117f6af - 262 commits from branch
- BREAKING_CHANGES.md 0 → 100644
1 # v1.0 2 ## Removed features/radically changed behavior 3 ### minimalScopesMode 4 As of !633, `scopeOptions` is no longer available and instead is changed for `minimalScopesMode` (default: `false`) 5 6 Reasoning is that scopeOptions option originally existed mostly as a backwards-compatibility with GNU Social which only had `public` scope available and using scope selector would''t work. Since at some point we dropped GNU Social support, this option was mostly a nuisance (being default `false`'), however some people think scopes are an annoyance to a certain degree and want as less of that feature as possible. 7 8 Solution - to only show minimal set among: *Direct*, *User default* and *Scope of post replying to*. This also makes it impossible to reply to a DM with a non-DM post from UI. 48 48 </label> 49 49 </span> 50 50 51 <div v-if="scopeOptionsEnabled"> 52 <i v-on:click="changeVis('direct')" class="icon-mail-alt" :class="vis.direct" :title="$t('post_status.scope.direct')"></i> 53 <i v-on:click="changeVis('private')" class="icon-lock" :class="vis.private" :title="$t('post_status.scope.private')"></i> 54 <i v-on:click="changeVis('unlisted')" class="icon-lock-open-alt" :class="vis.unlisted" :title="$t('post_status.scope.unlisted')"></i> 55 <i v-on:click="changeVis('public')" class="icon-globe" :class="vis.public" :title="$t('post_status.scope.public')"></i> 56 </div> 51 <scope-selector 52 :showAll="showAllScopes" 53 :userDefault="userDefaultScope" mentioned in commit 3c293152
Please register or sign in to reply