Age | Commit message (Collapse) | Author |
|
Improve accessibility of toot dropdown menu
|
|
[Glitch] Place emoji picker top if it is closer to the bottom of the viewport
|
|
ThibG/glitch-soc/features/do-not-scroll-when-mouse-over
Prevent timeline from moving when cursor is hovering over it
|
|
Add text color variables + minor SCSS fixes + high contrast skin
|
|
monsterpit-daggertooth/glitch-fix-escape-metachars-in-mutes
Escape regex metachars in keyword mutes
|
|
Support upstream bio items / custom account fields
|
|
|
|
Add a light theme by @Sylvhem
|
|
|
|
|
|
|
|
Port ba917e15f66c7848fe943e571d1ec5eeb549b59d to glitch-soc
|
|
|
|
Port 74dae9458d118b066cd74b16aab2aa9cafbf3fba and related to glitch-soc
|
|
Port the SCSS changes from cb74c0cfe4aa89f9656c054253665ef4965b41df to glitch-soc
|
|
Port SCSS changes from 5acd5315f23b4472f31c4a0bb612b7356032defc to glitch-soc
|
|
below)
Port 8c601b54ccf530bd193b4500fee439aa4e9162d0 to glitch-soc
|
|
Port 58852695c8ec490239ed3812f82971f8c1e6c172 to glitch-soc
|
|
* Prevent Enter keypresses from triggering dropdown display toggle twice
* Give focus to first/selected item of dropdown menus
* Implement keyboard navigation in generic dropdown menus
Partial port from ef7d64c80109074b39983b50cc8cf701c337cdcc to glitch-soc
|
|
Port ad5d3134e406c2bcfceca6a1b7dd3dceb6ec1061 to glitch-soc
|
|
|
|
Signed-off-by: Marcin Mikołajczak <me@m4sk.in>
|
|
|
|
|
|
Conflicts:
CONTRIBUTING.md
|
|
|
|
“Enable” high contrast theme
|
|
|
|
|
|
Signed-off-by: Marcin Mikołajczak <me@m4sk.in>
|
|
|
|
|
|
Conflicts:
Gemfile.lock
|
|
Fix #6994
|
|
|
|
|
|
|
|
[Glitch] Improve relative timestamps in web UI
|
|
|
|
Well, it seems unnecessary, anyway.
|
|
|
|
Conflicts:
.travis.yml
Gemfile.lock
README.md
app/controllers/settings/follower_domains_controller.rb
app/controllers/statuses_controller.rb
app/javascript/mastodon/locales/ja.json
app/lib/feed_manager.rb
app/models/media_attachment.rb
app/models/mute.rb
app/models/status.rb
app/services/mute_service.rb
app/views/home/index.html.haml
app/views/stream_entries/_simple_status.html.haml
config/locales/ca.yml
config/locales/en.yml
config/locales/es.yml
config/locales/fr.yml
config/locales/nl.yml
config/locales/pl.yml
config/locales/pt-BR.yml
config/themes.yml
|
|
* Revert "Fixes/do not override timestamps (#7331)"
This reverts commit 581a5c9d29ef2a12f46b67a1097a9ad6df1c6953.
* Document Snowflake ID corner-case a bit more
Snowflake IDs are used for two purposes: making object identifiers harder to
guess and ensuring they are in chronological order. For this reason, they
are based on the `created_at` attribute of the object.
Unfortunately, inserting items with older snowflakes IDs will break the
assumption of consumers of the paging APIs that new items will always have
a greater identifier than the last seen one.
* Add `override_timestamps` virtual attribute to not correlate snowflake ID with created_at
|
|
|
|
|
|
The previous rate limit allowed to post media so fast that it is possible
to fill up the disk space even before an administrator notices. The new
rate limit is configured so that it takes 24 hours to eat 10 gigabytes:
10 * 1024 / 8 / (24 * 60 / 30) = 27 (which rounded to 30)
The period is set long so that it does not prevent from attaching several
media to one post, which would happen in a short period. For example,
if the period is 5 minutes, the rate limit would be:
10 * 1024 / 8 / (24 * 60 / 5) = 4
This long period allows to lift the limit up.
|
|
* Add el and te
* Add missing locale files
|
|
|
|
* Do not override timestamps for incoming toots
* Remove every reference to override_timestamps
Statuses are now created with the announced publishing date
and are only pushed to timelines if that date is at most
6 hours earlier than the time at which it is processed.
|
|
* Revert "Weblate translations 20180503 (#7325)"
This reverts commit dfa6bccb64d9ee5512dddc10afd9a484db2dbb25.
* Revert "Prevent timeline from moving when cursor is hovering over it (fixes #7278) (#7327)"
This reverts commit 58852695c8ec490239ed3812f82971f8c1e6c172.
* Revert "Add pry-byebug (#7307)"
This reverts commit ab773e4d5ffdd78a61d3ebf0f79e60ee5c9f7e92.
* Revert "Do not override timestamps for incoming toots (#7326)"
This reverts commit bd367918328daedb37f49727f4e16e33679fdb15.
|