]> cat aescling's git repositories - mastodon.git/log
mastodon.git
2 years agoFix timeout handling of outbound HTTP requests
Claire [Fri, 16 Jun 2023 08:19:23 +0000 (10:19 +0200)]
Fix timeout handling of outbound HTTP requests

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2 years agoReject unprocessable audio/video files instead of keeping them unchanged
Claire [Thu, 15 Jun 2023 15:35:00 +0000 (17:35 +0200)]
Reject unprocessable audio/video files instead of keeping them unchanged

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2 years agoFix misdetection of MP3 files with large cover art
Claire [Thu, 15 Jun 2023 12:31:34 +0000 (14:31 +0200)]
Fix misdetection of MP3 files with large cover art

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2 years agoAdd a restrictive ImageMagick security policy tailored for Mastodon
Claire [Thu, 8 Jun 2023 07:34:45 +0000 (09:34 +0200)]
Add a restrictive ImageMagick security policy tailored for Mastodon

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2 years agoFix attachments getting processed despite failing content-type validation
Claire [Thu, 8 Jun 2023 07:32:30 +0000 (09:32 +0200)]
Fix attachments getting processed despite failing content-type validation

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2 years agoImprove error handling in PostStatusService
aescling [Tue, 6 Jun 2023 16:46:09 +0000 (12:46 -0400)]
Improve error handling in PostStatusService

* Explicitly catch invalid post visibility, and 422 instead of 500
        - ~~Reject "limited" visibility~~
        - Accept empty visibilities, ignoring them
* Explicitly alert the user when a post is rejected for having both
  media and polls

The former currently allows the visibility property to be blank or null.
I do not know if this is more desirable than, for example, rejecting
empty strings.

Additionally to the above, improve documentation for the call method.

* Improve consistency in documentation
* Improve rubocop assessment in new code we are responsible for
        - Improve documentation

* Correct scheduled post parse error semantics
        - Return 422, not 400
        - Respond with a useful error message

* Allow creating limited visibility posts from the API again

* Add appropriate yard tags to documentation

* Correct erronous documentation, copy-editing it somewhat
- Use a labelled list for Status#visibility
- Improve specificity of "make a note of that"

* Remove PostStatusService#visibility_invalid?
- !visibility_invalid? -> !visibility_valid?

2 years agoCreate new directory for fork-specific internationalization
aescling [Fri, 2 Jun 2023 15:58:54 +0000 (11:58 -0400)]
Create new directory for fork-specific internationalization

Very simple to implement, and helps prevint merge conflicts in the
future. Glitch Edition made this change for Glitch-specefic
internationalization a couple of months ago and I think it makes sense
to follow that lead.

2 years agoDocument status visibility
aescling [Tue, 6 Jun 2023 16:28:38 +0000 (12:28 -0400)]
Document status visibility

The limited visibility is officially undocumented (and, at time of
writing, not at all useful in Mastodon itself); its presence is the
codebase in undoubtedly confusing as a result.

* Typo
* Link the MR that introduced "limited" visibility

2 years agoActually prevent search engine indexing
aescling [Sun, 1 Jan 2023 03:00:30 +0000 (22:00 -0500)]
Actually prevent search engine indexing

Disabling visibility via robots.txt prevents purroper indexers, like
googlebot, from detecting X-Robots-Tag or the like is on a page. This
also adds an X-Robots-Tag header to all requests.

2 years agoEnhance asset precompilation to prebuild app icons origin/no-search-engine-indexing
aescling [Tue, 21 Mar 2023 03:51:49 +0000 (23:51 -0400)]
Enhance asset precompilation to prebuild app icons

This removes a requirement to add a line to our build scripts

2 years agoGenerate app icons before precomp
aescling [Sun, 19 Mar 2023 22:43:05 +0000 (18:43 -0400)]
Generate app icons before precomp

Squashed commit of
https://gitlab.com/kibicat/mastodon/-/merge_requests/30 and
https://gitlab.com/kibicat/mastodon/-/merge_requests/31

This causes :blobcat_sleep: to Actually be the favicon now; more
generally, it uses app/javascript/images/logo.png (ideally we would use
SVG---TODO: do that) as the basis fur the front end favicon and app
icons, which are now generated at build time.

This is arguably suboptimal as we purrform redundant work now on every
build, but I think that is an acceptable tradeoff. It's a small amount
of work and we do not exactly build the code very often.

I would prefer to not have to add an extra command to our build
scripts...

This removes app/javascript/icons and public/favicon.ico from repo.
Naturally.

3 years agoRevert notification design (#1875)
Claire [Fri, 28 Oct 2022 08:30:14 +0000 (10:30 +0200)]
Revert notification design (#1875)

3 years agoFix status prepend design (#1874)
Claire [Fri, 28 Oct 2022 06:47:10 +0000 (08:47 +0200)]
Fix status prepend design (#1874)

* Fix status prepend design

* Adjust status prepend styling a bit

3 years agoUse DEFAULT_FIELDS_SIZE/MAX_PROFILE_FIELDS value in settings form hint (#1870)
prplecake [Fri, 21 Oct 2022 10:01:37 +0000 (05:01 -0500)]
Use DEFAULT_FIELDS_SIZE/MAX_PROFILE_FIELDS value in settings form hint (#1870)

Use `Account::DEFAULT_FIELDS_SIZE` in the hint, which would fallback to
4 if the environment variable isn't set.

3 years agoActually fix config/locales-glitch not overriding translation strings (#1872)
Claire [Wed, 19 Oct 2022 20:08:10 +0000 (22:08 +0200)]
Actually fix config/locales-glitch not overriding translation strings (#1872)

3 years agoFix config/locales-glitch not overriding translation strings (#1871)
Claire [Wed, 19 Oct 2022 17:53:47 +0000 (19:53 +0200)]
Fix config/locales-glitch not overriding translation strings (#1871)

3 years agoFix notification cleaning mode causing notifications to get stuck (#1868)
Claire [Thu, 13 Oct 2022 18:00:20 +0000 (20:00 +0200)]
Fix notification cleaning mode causing notifications to get stuck (#1868)

3 years agoFix issues with notification cleaning mode when there is a disconnection gap (#1867)
Claire [Thu, 13 Oct 2022 06:55:00 +0000 (08:55 +0200)]
Fix issues with notification cleaning mode when there is a disconnection gap (#1867)

3 years agoPort various forgotten fixes from upstream (#1864)
Claire [Wed, 12 Oct 2022 17:03:28 +0000 (19:03 +0200)]
Port various forgotten fixes from upstream (#1864)

* [Glitch] Fix crash when failing to load emoji picker

Port bd3420b1398c4c4ab2e2f2850b6dd6eaff0d361b to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
* [Glitch] Remove duplicate frequently used emojis

Port 98146281e1beaf994710b13ef70f6224e8588cba to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Co-authored-by: Harmon <Harmon758@gmail.com>
3 years agoFix accidentally importing vanilla code in glitch-soc flavor (#1863)
Claire [Tue, 11 Oct 2022 17:35:37 +0000 (19:35 +0200)]
Fix accidentally importing vanilla code in glitch-soc flavor (#1863)

3 years agoMove flavours/glitch/features/emoji_picker back to flavours/glitch/features/compose...
Claire [Tue, 11 Oct 2022 11:33:21 +0000 (13:33 +0200)]
Move flavours/glitch/features/emoji_picker back to flavours/glitch/features/compose/containers/emoji_picker_dropdown_container

3 years agoMove flavours/glitch/utils/emoji back to flavours/glitch/features/emoji
Claire [Tue, 11 Oct 2022 10:36:24 +0000 (12:36 +0200)]
Move flavours/glitch/utils/emoji back to flavours/glitch/features/emoji

[Kibicat]: Update spoilertextify.js accordingly

3 years agoMove more modules from flavours/glitch/utils to flavours/glitch
Claire [Tue, 11 Oct 2022 09:39:52 +0000 (11:39 +0200)]
Move more modules from flavours/glitch/utils to flavours/glitch

3 years agoRemove unused `redux_helpers` module
Claire [Tue, 11 Oct 2022 10:05:34 +0000 (12:05 +0200)]
Remove unused `redux_helpers` module

3 years agoMove some modules from flavours/glitch/utils/ back to flavours/glitch/features/compos...
Claire [Tue, 11 Oct 2022 09:51:15 +0000 (11:51 +0200)]
Move some modules from flavours/glitch/utils/ back to flavours/glitch/features/compose/util/

3 years agoMove flavours/glitch/utils/ready to flavours/glitch/ready
Claire [Tue, 11 Oct 2022 09:23:59 +0000 (11:23 +0200)]
Move flavours/glitch/utils/ready to flavours/glitch/ready

3 years agoMove some modules from flavours/glitch/utils/ back to flavours/glitch/features/ui...
Claire [Tue, 11 Oct 2022 08:51:33 +0000 (10:51 +0200)]
Move some modules from flavours/glitch/utils/ back to flavours/glitch/features/ui/util/

3 years agoRename flavours/glitch/util into flavours/glitch/utils
Claire [Tue, 11 Oct 2022 08:41:15 +0000 (10:41 +0200)]
Rename flavours/glitch/util into flavours/glitch/utils

3 years agoRemove unneeded change in flavours/glitch/api
Claire [Tue, 11 Oct 2022 08:33:46 +0000 (10:33 +0200)]
Remove unneeded change in flavours/glitch/api

3 years agoMove flavours/glitch/util/api to flavours/glitch/api
Claire [Tue, 11 Oct 2022 08:32:31 +0000 (10:32 +0200)]
Move flavours/glitch/util/api to flavours/glitch/api

3 years agoRefactor initial_state to isolate glitch-soc changes
Claire [Tue, 11 Oct 2022 08:27:14 +0000 (10:27 +0200)]
Refactor initial_state to isolate glitch-soc changes

3 years agoMove flavours/glitch/util/initial_state to flavours/glitch/initial_state
Claire [Tue, 11 Oct 2022 08:17:04 +0000 (10:17 +0200)]
Move flavours/glitch/util/initial_state to flavours/glitch/initial_state

3 years ago[Glitch] Change font size of active users in server banner to be larger in web UI
Eugen Rochko [Wed, 5 Oct 2022 05:02:09 +0000 (07:02 +0200)]
[Glitch] Change font size of active users in server banner to be larger in web UI

Port 0e41d360c068deb8655dc1b9facfa4c15985c271 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix crash in report modal
trwnh [Fri, 7 Oct 2022 03:53:14 +0000 (22:53 -0500)]
[Glitch] Fix crash in report modal

Port 99a43f0282d5115b75a564205ca7d2db31a3a945 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Add server banner to web app
Eugen Rochko [Wed, 5 Oct 2022 01:47:56 +0000 (03:47 +0200)]
[Glitch] Add server banner to web app

Port d2528b26b6da34f34b5d7a392e263428d3c09d69 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years agoAdd server banner to web app, add `GET /api/v2/instance` to REST API (#19294)
Eugen Rochko [Wed, 5 Oct 2022 01:47:56 +0000 (03:47 +0200)]
Add server banner to web app, add `GET /api/v2/instance` to REST API (#19294)

Cherry-picked d2528b26b6da34f34b5d7a392e263428d3c09d69

Conflicts:
- `app/serializers/initial_state_serializer.rb`:
  Upstream changed stuff, we had extra attributes.
  Applied upstream changes while keeping our extra attributes.
- `app/serializers/rest/instance_serializer.rb`:
  Upstream actually moved that to `app/serializers/rest/v1/instance_serializer.rb`,
  so updated that file by keeping our extra attributes, and took upstream's
  version of `app/serializers/rest/instance_serializer.rb`.
- `spec/views/about/show.html.haml_spec.rb`:
  Took upstream's version.

3 years ago[Glitch] Add interaction modal to logged-out web UI
Eugen Rochko [Fri, 7 Oct 2022 08:14:31 +0000 (10:14 +0200)]
[Glitch] Add interaction modal to logged-out web UI

Port 7fb738c8372a700e1b42534cb202005b8c73b946 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix trying to connect to streaming API when logged out in web UI
Eugen Rochko [Sat, 8 Oct 2022 05:15:50 +0000 (07:15 +0200)]
[Glitch] Fix trying to connect to streaming API when logged out in web UI

Port d4b0aa74500419730525025b05513235aa477841 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix various issues with logged-out web UI
Eugen Rochko [Tue, 4 Oct 2022 18:13:23 +0000 (20:13 +0200)]
[Glitch] Fix various issues with logged-out web UI

Port part of e2b561e3a521ff893943c0e9e32952e35934ca54 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix missing await
Yamagishi Kazutoshi [Mon, 3 Oct 2022 21:08:38 +0000 (06:08 +0900)]
[Glitch] Fix missing await

Port fc3d248df770024b5ce0f33d93029d71f5051e43 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Disable push notification when not logged in
Yamagishi Kazutoshi [Mon, 3 Oct 2022 16:15:47 +0000 (01:15 +0900)]
[Glitch] Disable push notification when not logged in

Port 216dbaedaf587db834cfdd53b896e9c7e1284d9c to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Allow non-logged users to access /web
Eugen Rochko [Thu, 29 Sep 2022 02:39:33 +0000 (04:39 +0200)]
[Glitch] Allow non-logged users to access /web

Port 43b5d5e38d2b8ad8f1d1ad0911c3c1718159c912 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Add dynamic document title to WebUI
Eugen Rochko [Thu, 29 Sep 2022 02:39:33 +0000 (04:39 +0200)]
[Glitch] Add dynamic document title to WebUI

Port part of 43b5d5e38d2b8ad8f1d1ad0911c3c1718159c912 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Add sign-up button to logged-out web UI
Eugen Rochko [Thu, 29 Sep 2022 04:21:51 +0000 (06:21 +0200)]
[Glitch] Add sign-up button to logged-out web UI

Port e623c302d5d4dfc05689eb8fb8e051e30fc38ec8 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix various issues with logged-out Web UI
Eugen Rochko [Thu, 29 Sep 2022 04:21:51 +0000 (06:21 +0200)]
[Glitch] Fix various issues with logged-out Web UI

Port fixes from e623c302d5d4dfc05689eb8fb8e051e30fc38ec8 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years agoFix logged-out UI not using single-column interface
Claire [Sun, 9 Oct 2022 13:02:14 +0000 (15:02 +0200)]
Fix logged-out UI not using single-column interface

3 years ago[Glitch] Add logged-out access to the web UI
Eugen Rochko [Thu, 29 Sep 2022 02:39:33 +0000 (04:39 +0200)]
[Glitch] Add logged-out access to the web UI

Port part of 43b5d5e38d2b8ad8f1d1ad0911c3c1718159c912 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix wrong logo on start screen in web UI
Eugen Rochko [Thu, 29 Sep 2022 06:55:14 +0000 (08:55 +0200)]
[Glitch] Fix wrong logo on start screen in web UI

Port c8245e64c5173f34401c562fe32551dcab8e68b7 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix logo on /web/start
Eugen Rochko [Thu, 29 Sep 2022 02:39:33 +0000 (04:39 +0200)]
[Glitch] Fix logo on /web/start

Partial port from 43b5d5e38d2b8ad8f1d1ad0911c3c1718159c912

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Add empty message for “Explore” tabs
Eugen Rochko [Thu, 29 Sep 2022 02:39:33 +0000 (04:39 +0200)]
[Glitch] Add empty message for “Explore” tabs

Port part of 43b5d5e38d2b8ad8f1d1ad0911c3c1718159c912 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years agoRestore ability to discard interactions-based follow suggestions
Claire [Sun, 9 Oct 2022 09:23:06 +0000 (11:23 +0200)]
Restore ability to discard interactions-based follow suggestions

3 years agoChange “Explore” tab to only provide search when trends are disabled
Claire [Sat, 8 Oct 2022 16:50:46 +0000 (18:50 +0200)]
Change “Explore” tab to only provide search when trends are disabled

3 years ago[Glitch] Add pagination for trending statuses in web UI
Eugen Rochko [Wed, 6 Apr 2022 20:53:29 +0000 (22:53 +0200)]
[Glitch] Add pagination for trending statuses in web UI

Port f382192862893c48cf97f13e9fbfb85b80cdc97d to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix crash when search fails in web UI
Eugen Rochko [Tue, 22 Mar 2022 17:20:25 +0000 (18:20 +0100)]
[Glitch] Fix crash when search fails in web UI

Port 8751c3c4954799aec24cecc1cae68df27d19ceee to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix public timelines being inaccessible on one stage of responsive layout...
Eugen Rochko [Sun, 13 Mar 2022 08:48:39 +0000 (09:48 +0100)]
[Glitch] Fix public timelines being inaccessible on one stage of responsive layout in web UI (#17760)

Port fa47c37f13c7fa4d38edd83818f681cf99d6ea9c to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Change the "Explore" icon from fa-globe to fa-hashtag
mayaeh [Sun, 13 Mar 2022 04:15:19 +0000 (13:15 +0900)]
[Glitch] Change the "Explore" icon from fa-globe to fa-hashtag

Port e38a01c41add3dbbb0a9a7a68e591ce8313aa13a to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Add menu column of explore to getting-started
mayaeh [Sun, 13 Mar 2022 03:51:09 +0000 (12:51 +0900)]
[Glitch] Add menu column of explore to getting-started

Port e52085246f86809ec32f3edc5be226ce15b03457 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch, partial] Change appearance of account cards in web UI
Eugen Rochko [Mon, 7 Mar 2022 10:38:52 +0000 (11:38 +0100)]
[Glitch, partial] Change appearance of account cards in web UI

Port remaining changes from dba4be1038063845a74e83aaa85d6ab08d5625dd to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Remove profile directory link from main navigation panel
Eugen Rochko [Thu, 3 Mar 2022 05:45:30 +0000 (06:45 +0100)]
[Glitch] Remove profile directory link from main navigation panel

Port 54d4ece7432a34a2ba24617851f04801e5a389d8 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix not showing loading indicator when searching in web UI
Eugen Rochko [Sun, 27 Feb 2022 06:37:07 +0000 (07:37 +0100)]
[Glitch] Fix not showing loading indicator when searching in web UI

Port cb2e198d89dfb86a81fff8e11eac531b658e9ef2 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Add explore page to web UI
Eugen Rochko [Thu, 24 Feb 2022 23:34:33 +0000 (00:34 +0100)]
[Glitch] Add explore page to web UI

Port d4592bbfcd091c4eaef8c8f24c47d5c2ce1bacd3 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Fix pop-out player appearing on mobile screens in web UI
Eugen Rochko [Mon, 16 Nov 2020 04:16:39 +0000 (05:16 +0100)]
[Glitch] Fix pop-out player appearing on mobile screens in web UI

Port 18ca4e0e9a3f74a6f21d329882b429f8f5227b0f to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Add ability to select all accounts matching search for batch (#1857)
Claire [Sat, 8 Oct 2022 14:24:35 +0000 (16:24 +0200)]
[Glitch] Add ability to select all accounts matching search for batch (#1857)

Port SCSS changes from 5b0e8cc92b9ca0ab0dc24366d95f67a88c470173

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
3 years agoFix /privacy-policy not using the appropriate resource packs (#1853)
Claire [Fri, 7 Oct 2022 09:35:31 +0000 (11:35 +0200)]
Fix /privacy-policy not using the appropriate resource packs (#1853)

Fixes #1852

This was an oversight from last upstream merge, failing to account for
glitch-soc's theming system.

3 years agoClarify language RE secondary toot button (#1851)
prplecake [Wed, 5 Oct 2022 12:10:15 +0000 (07:10 -0500)]
Clarify language RE secondary toot button (#1851)

3 years agoBump stylelint from 14.12.1 to 14.13.0 (#19280)
dependabot[bot] [Tue, 4 Oct 2022 12:18:59 +0000 (21:18 +0900)]
Bump stylelint from 14.12.1 to 14.13.0 (#19280)

Bumps [stylelint](https://github.com/stylelint/stylelint) from 14.12.1 to 14.13.0.
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/stylelint/stylelint/compare/14.12.1...14.13.0)

---
updated-dependencies:
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoBump rspec_junit_formatter from 0.5.1 to 0.6.0 (#19286)
dependabot[bot] [Tue, 4 Oct 2022 11:57:31 +0000 (20:57 +0900)]
Bump rspec_junit_formatter from 0.5.1 to 0.6.0 (#19286)

Bumps [rspec_junit_formatter](https://github.com/sj26/rspec_junit_formatter) from 0.5.1 to 0.6.0.
- [Release notes](https://github.com/sj26/rspec_junit_formatter/releases)
- [Changelog](https://github.com/sj26/rspec_junit_formatter/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sj26/rspec_junit_formatter/compare/v0.5.1...v0.6.0)

---
updated-dependencies:
- dependency-name: rspec_junit_formatter
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoBump postcss from 8.4.16 to 8.4.17 (#19279)
dependabot[bot] [Tue, 4 Oct 2022 11:57:11 +0000 (20:57 +0900)]
Bump postcss from 8.4.16 to 8.4.17 (#19279)

Bumps [postcss](https://github.com/postcss/postcss) from 8.4.16 to 8.4.17.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.4.16...8.4.17)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoBump blurhash from 2.0.0 to 2.0.3 (#19278)
dependabot[bot] [Tue, 4 Oct 2022 11:56:13 +0000 (20:56 +0900)]
Bump blurhash from 2.0.0 to 2.0.3 (#19278)

Bumps [blurhash](https://github.com/woltapp/blurhash) from 2.0.0 to 2.0.3.
- [Release notes](https://github.com/woltapp/blurhash/releases)
- [Commits](https://github.com/woltapp/blurhash/commits)

---
updated-dependencies:
- dependency-name: blurhash
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoBump dotenv from 16.0.2 to 16.0.3 (#19276)
dependabot[bot] [Tue, 4 Oct 2022 11:42:26 +0000 (20:42 +0900)]
Bump dotenv from 16.0.2 to 16.0.3 (#19276)

Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.0.2 to 16.0.3.
- [Release notes](https://github.com/motdotla/dotenv/releases)
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](https://github.com/motdotla/dotenv/compare/v16.0.2...v16.0.3)

---
updated-dependencies:
- dependency-name: dotenv
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoBump yargs from 17.5.1 to 17.6.0 (#19284)
dependabot[bot] [Tue, 4 Oct 2022 11:35:39 +0000 (20:35 +0900)]
Bump yargs from 17.5.1 to 17.6.0 (#19284)

Bumps [yargs](https://github.com/yargs/yargs) from 17.5.1 to 17.6.0.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/yargs/yargs/compare/v17.5.1...v17.6.0)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoBump jsdom from 20.0.0 to 20.0.1 (#19277)
dependabot[bot] [Tue, 4 Oct 2022 11:34:21 +0000 (20:34 +0900)]
Bump jsdom from 20.0.0 to 20.0.1 (#19277)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 20.0.0 to 20.0.1.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](https://github.com/jsdom/jsdom/compare/20.0.0...20.0.1)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoNew Crowdin updates (#19255)
Eugen Rochko [Tue, 4 Oct 2022 07:42:40 +0000 (09:42 +0200)]
New Crowdin updates (#19255)

* New translations en.yml (Thai)

* New translations en.yml (Greek)

* New translations en.yml (Afrikaans)

* New translations en.json (Arabic)

* New translations en.yml (Arabic)

* New translations en.yml (Bulgarian)

* New translations en.json (Catalan)

* New translations en.yml (Catalan)

* New translations en.json (Danish)

* New translations en.yml (Danish)

* New translations en.json (Greek)

* New translations en.json (Frisian)

* New translations en.json (Spanish)

* New translations en.yml (Frisian)

* New translations en.json (Basque)

* New translations en.yml (Basque)

* New translations en.json (Finnish)

* New translations en.yml (Finnish)

* New translations en.json (Irish)

* New translations en.yml (Irish)

* New translations en.yml (Hebrew)

* New translations en.json (Hungarian)

* New translations en.yml (Hungarian)

* New translations en.json (Afrikaans)

* New translations en.yml (French)

* New translations en.json (Hebrew)

* New translations en.json (Czech)

* New translations en.json (Thai)

* New translations en.yml (German)

* New translations en.yml (Czech)

* New translations en.yml (Chinese Simplified)

* New translations en.yml (Ido)

* New translations en.json (Bulgarian)

* New translations en.json (Ido)

* New translations en.json (German)

* New translations en.json (Tamil)

* New translations en.json (Esperanto)

* New translations en.yml (Spanish)

* New translations en.json (French)

* New translations en.yml (Turkish)

* New translations en.json (Dutch)

* New translations en.json (Albanian)

* New translations en.yml (Albanian)

* New translations en.yml (Ukrainian)

* New translations en.json (Japanese)

* New translations en.json (Indonesian)

* New translations en.json (Sinhala)

* New translations en.json (Romanian)

* New translations en.yml (Romanian)

* New translations en.json (Armenian)

* New translations en.yml (Armenian)

* New translations en.json (Urdu (Pakistan))

* New translations en.json (Serbian (Cyrillic))

* New translations en.yml (Serbian (Cyrillic))

* New translations en.json (Swedish)

* New translations en.yml (Swedish)

* New translations en.json (Turkish)

* New translations en.json (Ukrainian)

* New translations en.json (Chinese Simplified)

* New translations en.json (Chinese Traditional)

* New translations en.yml (Chinese Traditional)

* New translations en.yml (Urdu (Pakistan))

* New translations en.json (Slovenian)

* New translations en.json (Vietnamese)

* New translations en.yml (Vietnamese)

* New translations en.json (Galician)

* New translations en.yml (Galician)

* New translations en.json (Icelandic)

* New translations en.yml (Icelandic)

* New translations en.json (Portuguese, Brazilian)

* New translations en.yml (Portuguese, Brazilian)

* New translations en.yml (Indonesian)

* New translations en.json (Persian)

* New translations en.yml (Slovenian)

* New translations en.yml (Slovak)

* New translations en.json (Italian)

* New translations en.yml (Dutch)

* New translations en.yml (Italian)

* New translations en.yml (Japanese)

* New translations en.json (Georgian)

* New translations en.yml (Georgian)

* New translations en.json (Korean)

* New translations en.yml (Korean)

* New translations en.json (Lithuanian)

* New translations en.yml (Lithuanian)

* New translations en.json (Macedonian)

* New translations en.yml (Macedonian)

* New translations simple_form.en.yml (Dutch)

* New translations en.json (Slovak)

* New translations en.json (Norwegian)

* New translations en.yml (Norwegian)

* New translations en.json (Punjabi)

* New translations en.yml (Punjabi)

* New translations en.json (Polish)

* New translations en.yml (Polish)

* New translations en.json (Portuguese)

* New translations en.yml (Portuguese)

* New translations en.json (Russian)

* New translations en.yml (Russian)

* New translations en.yml (Persian)

* New translations en.yml (Tamil)

* New translations en.yml (Malayalam)

* New translations en.yml (Welsh)

* New translations en.yml (Esperanto)

* New translations en.json (Uyghur)

* New translations en.yml (Uyghur)

* New translations en.json (Chinese Traditional, Hong Kong)

* New translations en.yml (Chinese Traditional, Hong Kong)

* New translations en.json (Tatar)

* New translations en.yml (Tatar)

* New translations en.json (Malayalam)

* New translations en.json (Breton)

* New translations en.yml (English, United Kingdom)

* New translations en.yml (Breton)

* New translations en.yml (Sinhala)

* New translations en.json (Cornish)

* New translations en.yml (Cornish)

* New translations en.json (Kannada)

* New translations en.yml (Kannada)

* New translations en.json (Scottish Gaelic)

* New translations en.yml (Scottish Gaelic)

* New translations en.json (Asturian)

* New translations en.yml (Asturian)

* New translations en.json (Welsh)

* New translations en.json (English, United Kingdom)

* New translations en.json (Spanish, Argentina)

* New translations en.yml (Norwegian Nynorsk)

* New translations en.yml (Spanish, Argentina)

* New translations en.json (Spanish, Mexico)

* New translations en.yml (Spanish, Mexico)

* New translations en.json (Bengali)

* New translations en.yml (Bengali)

* New translations en.json (Marathi)

* New translations en.yml (Marathi)

* New translations en.json (Croatian)

* New translations en.yml (Croatian)

* New translations en.json (Norwegian Nynorsk)

* New translations en.json (Kazakh)

* New translations en.yml (Telugu)

* New translations en.yml (Kazakh)

* New translations en.json (Estonian)

* New translations en.yml (Estonian)

* New translations en.json (Latvian)

* New translations en.yml (Latvian)

* New translations en.json (Hindi)

* New translations en.yml (Hindi)

* New translations en.json (Malay)

* New translations en.yml (Malay)

* New translations en.json (Telugu)

* New translations en.json (Occitan)

* New translations en.yml (Occitan)

* New translations en.json (Sanskrit)

* New translations en.json (Standard Moroccan Tamazight)

* New translations en.yml (Silesian)

* New translations en.json (Silesian)

* New translations en.yml (Taigi)

* New translations en.json (Taigi)

* New translations en.yml (Kabyle)

* New translations en.json (Kabyle)

* New translations en.yml (Sanskrit)

* New translations en.yml (Sardinian)

* New translations en.json (Serbian (Latin))

* New translations en.json (Sardinian)

* New translations en.yml (Corsican)

* New translations en.json (Corsican)

* New translations en.yml (Sorani (Kurdish))

* New translations en.json (Sorani (Kurdish))

* New translations en.yml (Kurmanji (Kurdish))

* New translations en.json (Kurmanji (Kurdish))

* New translations en.yml (Serbian (Latin))

* New translations en.yml (Standard Moroccan Tamazight)

* New translations en.json (Dutch)

* New translations en.json (Japanese)

* New translations en.json (Catalan)

* New translations en.json (Italian)

* New translations en.json (Korean)

* New translations en.yml (Dutch)

* New translations en.json (Slovenian)

* New translations en.json (Ukrainian)

* New translations en.json (Icelandic)

* New translations activerecord.en.yml (Dutch)

* New translations en.json (German)

* New translations en.json (Dutch)

* New translations en.json (Japanese)

* New translations en.yml (Dutch)

* New translations simple_form.en.yml (Dutch)

* New translations en.json (Vietnamese)

* New translations en.yml (Vietnamese)

* New translations activerecord.en.yml (Dutch)

* New translations simple_form.en.yml (Vietnamese)

* New translations en.yml (German)

* New translations en.yml (Vietnamese)

* New translations en.json (Spanish, Argentina)

* New translations en.json (Kurmanji (Kurdish))

* New translations simple_form.en.yml (Vietnamese)

* New translations en.json (Czech)

* New translations simple_form.en.yml (Czech)

* New translations en.json (Latvian)

* New translations en.yml (Asturian)

* New translations en.json (Chinese Simplified)

* New translations en.json (Ido)

* New translations en.json (Chinese Traditional)

* New translations en.json (Danish)

* New translations en.json (Galician)

* New translations en.json (Turkish)

* New translations en.json (Albanian)

* New translations en.json (Italian)

* New translations en.json (Russian)

* New translations en.json (Portuguese)

* New translations en.yml (Portuguese)

* New translations en.json (Spanish)

* New translations en.yml (Thai)

* New translations en.json (Thai)

* New translations en.json (Hungarian)

* New translations en.yml (Hungarian)

* New translations en.json (Hungarian)

* New translations en.yml (Hungarian)

* New translations en.json (Polish)

* New translations en.yml (Polish)

* Run `yarn manage:translations`

* Run `bundle exec i18n-tasks normalize`

Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
3 years agoBump @babel/plugin-proposal-decorators from 7.19.1 to 7.19.3 (#19283)
dependabot[bot] [Tue, 4 Oct 2022 07:34:01 +0000 (16:34 +0900)]
Bump @babel/plugin-proposal-decorators from 7.19.1 to 7.19.3 (#19283)

Bumps [@babel/plugin-proposal-decorators](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-proposal-decorators) from 7.19.1 to 7.19.3.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.19.3/packages/babel-plugin-proposal-decorators)

---
updated-dependencies:
- dependency-name: "@babel/plugin-proposal-decorators"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoBump @babel/preset-env from 7.19.1 to 7.19.3 (#19281)
dependabot[bot] [Tue, 4 Oct 2022 07:17:09 +0000 (16:17 +0900)]
Bump @babel/preset-env from 7.19.1 to 7.19.3 (#19281)

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.19.1 to 7.19.3.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.19.3/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoBump @babel/core from 7.19.1 to 7.19.3 (#19274)
dependabot[bot] [Tue, 4 Oct 2022 07:16:11 +0000 (16:16 +0900)]
Bump @babel/core from 7.19.1 to 7.19.3 (#19274)

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.19.1 to 7.19.3.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.19.3/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years agoFix missing await (#19273)
Yamagishi Kazutoshi [Mon, 3 Oct 2022 21:08:38 +0000 (06:08 +0900)]
Fix missing await (#19273)

3 years agoDisable push notification when not logged in (#19272)
Yamagishi Kazutoshi [Mon, 3 Oct 2022 16:15:47 +0000 (01:15 +0900)]
Disable push notification when not logged in (#19272)

3 years agoFix clicking bookmark column header not scrolling to top in single-column
Claire [Mon, 3 Oct 2022 07:40:30 +0000 (09:40 +0200)]
Fix clicking bookmark column header not scrolling to top in single-column

3 years agoFix clicking List timeline header not scrolling to top in single-column
Claire [Mon, 3 Oct 2022 07:15:00 +0000 (09:15 +0200)]
Fix clicking List timeline header not scrolling to top in single-column

3 years agoFix “Change subscribed languages” crashing in some situations (#19268)
Claire [Mon, 3 Oct 2022 00:56:12 +0000 (02:56 +0200)]
Fix “Change subscribed languages” crashing in some situations (#19268)

3 years agoFix “Change subscribed languages” crashing in some situations
Claire [Sun, 2 Oct 2022 17:48:24 +0000 (19:48 +0200)]
Fix “Change subscribed languages” crashing in some situations

3 years ago[Glitch] Add ability to filter followed accounts' posts by language
Eugen Rochko [Tue, 20 Sep 2022 21:51:21 +0000 (23:51 +0200)]
[Glitch] Add ability to filter followed accounts' posts by language

Port 50948b46aabc0756d85bc6641f0bd3bcc09bf7d4 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Change path of privacy policy page
Eugen Rochko [Thu, 29 Sep 2022 04:22:12 +0000 (06:22 +0200)]
[Glitch] Change path of privacy policy page

Port 36f4c32a38ed85e5e658b34d36eac40a6147bc0c to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
3 years ago[Glitch] Add privacy icons to report modal
Claire [Sun, 2 Oct 2022 16:23:14 +0000 (18:23 +0200)]
[Glitch] Add privacy icons to report modal

Port d2f7e30a283a1dca1f7974884ac0c237b93903ad to glitch-soc

3 years agoRevert server-side part of "Add logged-out access to the web UI"
Claire [Sun, 2 Oct 2022 17:03:24 +0000 (19:03 +0200)]
Revert server-side part of "Add logged-out access to the web UI"

3 years agoRevert "Change "Allow trends without prior review" setting to include statuses (...
Claire [Sun, 2 Oct 2022 16:11:46 +0000 (18:11 +0200)]
Revert "Change "Allow trends without prior review" setting to include statuses (#17977)"

This reverts commit 546672e292dc3218e996048464c4c52e5d00f766.

3 years agoRevert "Change search API to be accessible without being logged in (#18963)"
Claire [Sun, 2 Oct 2022 16:10:49 +0000 (18:10 +0200)]
Revert "Change search API to be accessible without being logged in (#18963)"

This reverts commit c57907737a35d05d4bb936acd662df6ce725456f.

3 years agoRemove volume number from hashtags in web UI (#19253)
Eugen Rochko [Thu, 29 Sep 2022 23:14:37 +0000 (01:14 +0200)]
Remove volume number from hashtags in web UI (#19253)

3 years agoInstall python3 when building with Docker (#18072)
Yamagishi Kazutoshi [Thu, 29 Sep 2022 14:36:14 +0000 (23:36 +0900)]
Install python3 when building with Docker (#18072)

3 years agoNew Crowdin updates (#19252)
Eugen Rochko [Thu, 29 Sep 2022 14:27:50 +0000 (16:27 +0200)]
New Crowdin updates (#19252)

* New translations en.yml (Thai)

* New translations en.yml (Greek)

* New translations en.yml (Afrikaans)

* New translations en.json (Arabic)

* New translations en.yml (Arabic)

* New translations en.yml (Bulgarian)

* New translations en.yml (Catalan)

* New translations en.json (Danish)

* New translations en.yml (Danish)

* New translations en.json (Greek)

* New translations en.json (Frisian)

* New translations en.yml (Frisian)

* New translations en.json (Basque)

* New translations en.yml (Basque)

* New translations en.json (Finnish)

* New translations en.yml (Finnish)

* New translations en.json (Irish)

* New translations en.yml (Irish)

* New translations en.yml (Hebrew)

* New translations en.yml (Hungarian)

* New translations en.json (Afrikaans)

* New translations en.yml (French)

* New translations en.json (Hebrew)

* New translations en.json (Czech)

* New translations en.json (Thai)

* New translations en.yml (German)

* New translations en.yml (Czech)

* New translations en.yml (Chinese Simplified)

* New translations en.yml (Ido)

* New translations en.json (Bulgarian)

* New translations en.json (Tamil)

* New translations en.json (Esperanto)

* New translations en.yml (Spanish)

* New translations en.json (French)

* New translations en.yml (Turkish)

* New translations en.json (Dutch)

* New translations en.yml (Albanian)

* New translations en.yml (Ukrainian)

* New translations en.json (Japanese)

* New translations en.json (Indonesian)

* New translations en.json (Sinhala)

* New translations en.json (Romanian)

* New translations en.yml (Romanian)

* New translations en.json (Armenian)

* New translations en.yml (Armenian)

* New translations en.yml (Urdu (Pakistan))

* New translations en.yml (Serbian (Cyrillic))

* New translations en.json (Swedish)

* New translations en.yml (Swedish)

* New translations en.yml (Chinese Traditional)

* New translations en.json (Urdu (Pakistan))

* New translations en.yml (Slovenian)

* New translations en.yml (Vietnamese)

* New translations en.json (Galician)

* New translations en.yml (Galician)

* New translations en.yml (Icelandic)

* New translations en.json (Portuguese, Brazilian)

* New translations en.yml (Portuguese, Brazilian)

* New translations en.yml (Indonesian)

* New translations en.json (Persian)

* New translations en.yml (Persian)

* New translations en.json (Serbian (Cyrillic))

* New translations en.yml (Dutch)

* New translations en.yml (Italian)

* New translations en.yml (Japanese)

* New translations en.json (Georgian)

* New translations en.yml (Georgian)

* New translations en.yml (Korean)

* New translations en.json (Lithuanian)

* New translations en.yml (Lithuanian)

* New translations en.json (Macedonian)

* New translations en.yml (Macedonian)

* New translations en.json (Norwegian)

* New translations en.yml (Slovak)

* New translations en.yml (Norwegian)

* New translations en.json (Punjabi)

* New translations en.yml (Punjabi)

* New translations en.yml (Polish)

* New translations en.yml (Portuguese)

* New translations en.yml (Russian)

* New translations en.json (Slovak)

* New translations en.yml (Tamil)

* New translations en.json (Breton)

* New translations en.yml (Esperanto)

* New translations en.json (Uyghur)

* New translations en.yml (Uyghur)

* New translations en.json (Chinese Traditional, Hong Kong)

* New translations en.yml (Chinese Traditional, Hong Kong)

* New translations en.json (Tatar)

* New translations en.yml (Tatar)

* New translations en.json (Malayalam)

* New translations en.yml (Malayalam)

* New translations en.yml (Breton)

* New translations en.json (Welsh)

* New translations en.yml (Sinhala)

* New translations en.json (Cornish)

* New translations en.yml (Cornish)

* New translations en.json (Kannada)

* New translations en.yml (Kannada)

* New translations en.json (Scottish Gaelic)

* New translations en.yml (Scottish Gaelic)

* New translations en.json (Asturian)

* New translations en.yml (Asturian)

* New translations en.json (Occitan)

* New translations en.yml (Welsh)

* New translations en.yml (English, United Kingdom)

* New translations en.yml (Spanish, Argentina)

* New translations en.json (Kazakh)

* New translations en.json (Spanish, Mexico)

* New translations en.yml (Spanish, Mexico)

* New translations en.json (Bengali)

* New translations en.yml (Bengali)

* New translations en.json (Marathi)

* New translations en.yml (Marathi)

* New translations en.json (Croatian)

* New translations en.yml (Croatian)

* New translations en.json (Norwegian Nynorsk)

* New translations en.yml (Norwegian Nynorsk)

* New translations en.yml (Kazakh)

* New translations en.json (English, United Kingdom)

* New translations en.json (Estonian)

* New translations en.yml (Estonian)

* New translations en.yml (Latvian)

* New translations en.json (Hindi)

* New translations en.yml (Hindi)

* New translations en.json (Malay)

* New translations en.yml (Malay)

* New translations en.json (Telugu)

* New translations en.yml (Telugu)

* New translations en.yml (Occitan)

* New translations en.json (Serbian (Latin))

* New translations en.json (Sardinian)

* New translations en.yml (Kabyle)

* New translations en.json (Kabyle)

* New translations en.yml (Sanskrit)

* New translations en.yml (Serbian (Latin))

* New translations en.yml (Sardinian)

* New translations en.json (Sanskrit)

* New translations en.yml (Corsican)

* New translations en.json (Corsican)

* New translations en.yml (Sorani (Kurdish))

* New translations en.json (Sorani (Kurdish))

* New translations en.yml (Kurmanji (Kurdish))

* New translations en.json (Taigi)

* New translations en.yml (Taigi)

* New translations en.json (Silesian)

* New translations en.yml (Silesian)

* New translations en.json (Standard Moroccan Tamazight)

* New translations en.yml (Standard Moroccan Tamazight)

* New translations en.yml (Ido)

* New translations en.yml (Ukrainian)

* New translations en.yml (Chinese Traditional)

* New translations en.yml (Spanish, Argentina)

* New translations en.yml (Catalan)

* New translations en.yml (Greek)

* New translations en.yml (Korean)

* New translations en.json (Galician)

* New translations en.yml (Galician)

* New translations en.yml (Italian)

* New translations en.yml (Chinese Simplified)

* New translations en.yml (Albanian)

* New translations en.yml (Russian)

* New translations en.yml (Slovenian)

* New translations en.yml (Polish)

* New translations en.yml (Vietnamese)

* New translations en.yml (Icelandic)

* New translations en.yml (Latvian)

* New translations en.yml (Czech)

* New translations simple_form.en.yml (Czech)

* New translations activerecord.en.yml (Czech)

* New translations en.yml (Kurmanji (Kurdish))

* New translations en.yml (Turkish)

* New translations en.yml (Danish)

* New translations en.yml (Japanese)

* Run `yarn manage:translations`

* Run `bundle exec i18n-tasks normalize`

Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
3 years agoFix wrong logo on start screen in web UI (#19254)
Eugen Rochko [Thu, 29 Sep 2022 06:55:14 +0000 (08:55 +0200)]
Fix wrong logo on start screen in web UI (#19254)

3 years agoChange path of privacy policy page (#19249)
Eugen Rochko [Thu, 29 Sep 2022 04:22:12 +0000 (06:22 +0200)]
Change path of privacy policy page (#19249)

3 years agoAdd sign-up button to logged-out web UI (#19250)
Eugen Rochko [Thu, 29 Sep 2022 04:21:51 +0000 (06:21 +0200)]
Add sign-up button to logged-out web UI (#19250)

3 years agoAdd logged-out access to the web UI (#18961)
Eugen Rochko [Thu, 29 Sep 2022 02:39:33 +0000 (04:39 +0200)]
Add logged-out access to the web UI (#18961)

3 years agoFix content retention policy settings not accepting a blank value (#19248)
Eugen Rochko [Wed, 28 Sep 2022 23:15:09 +0000 (01:15 +0200)]
Fix content retention policy settings not accepting a blank value (#19248)

3 years agoNew Crowdin updates (#19229)
Eugen Rochko [Wed, 28 Sep 2022 15:22:49 +0000 (17:22 +0200)]
New Crowdin updates (#19229)

* New translations en.json (Romanian)

* New translations en.json (French)

* New translations en.json (Afrikaans)

* New translations en.json (Spanish)

* New translations en.json (Korean)

* New translations en.json (Lithuanian)

* New translations en.json (Macedonian)

* New translations en.json (Norwegian)

* New translations en.json (Punjabi)

* New translations en.json (Polish)

* New translations en.json (Portuguese)

* New translations en.json (Russian)

* New translations en.json (Hebrew)

* New translations en.json (Italian)

* New translations en.json (Slovak)

* New translations en.json (Slovenian)

* New translations en.json (Serbian (Cyrillic))

* New translations en.json (Swedish)

* New translations en.json (Turkish)

* New translations en.json (Ukrainian)

* New translations en.json (Chinese Simplified)

* New translations en.json (Chinese Traditional)

* New translations en.json (Urdu (Pakistan))

* New translations en.json (Vietnamese)

* New translations en.json (Galician)

* New translations en.json (Georgian)

* New translations en.json (Irish)

* New translations en.json (Armenian)

* New translations en.json (Indonesian)

* New translations en.json (Bulgarian)

* New translations en.json (Ido)

* New translations en.json (German)

* New translations en.json (Tamil)

* New translations en.json (Esperanto)

* New translations en.json (Czech)

* New translations en.json (Dutch)

* New translations en.json (Albanian)

* New translations en.json (Japanese)

* New translations en.json (Sinhala)

* New translations en.json (Hungarian)

* New translations en.json (Arabic)

* New translations en.json (Catalan)

* New translations en.yml (Catalan)

* New translations en.json (Danish)

* New translations en.json (Greek)

* New translations en.json (Frisian)

* New translations en.json (Basque)

* New translations en.json (Finnish)

* New translations en.json (Thai)

* New translations en.json (Icelandic)

* New translations en.json (Portuguese, Brazilian)

* New translations en.json (Kurmanji (Kurdish))

* New translations en.json (Cornish)

* New translations en.json (Kannada)

* New translations en.json (Scottish Gaelic)

* New translations en.json (Asturian)

* New translations en.json (Occitan)

* New translations en.json (Serbian (Latin))

* New translations en.json (Sorani (Kurdish))

* New translations en.json (Malayalam)

* New translations en.json (Corsican)

* New translations en.json (Sardinian)

* New translations en.json (Sanskrit)

* New translations en.json (Kabyle)

* New translations en.json (Taigi)

* New translations en.json (Silesian)

* New translations en.json (Breton)

* New translations en.json (Tatar)

* New translations en.json (Persian)

* New translations en.json (Kazakh)

* New translations en.json (Spanish, Argentina)

* New translations en.json (Spanish, Mexico)

* New translations en.json (Bengali)

* New translations en.json (Marathi)

* New translations en.json (Croatian)

* New translations en.json (Norwegian Nynorsk)

* New translations en.json (Estonian)

* New translations en.json (Chinese Traditional, Hong Kong)

* New translations en.json (Latvian)

* New translations en.json (Hindi)

* New translations en.json (Malay)

* New translations en.json (Telugu)

* New translations en.json (English, United Kingdom)

* New translations en.json (Welsh)

* New translations en.json (Uyghur)

* New translations en.json (Standard Moroccan Tamazight)

* New translations en.json (Greek)

* New translations en.json (Portuguese)

* New translations en.json (Kurmanji (Kurdish))

* New translations en.yml (Chinese Simplified)

* New translations en.yml (Ukrainian)

* New translations en.json (Spanish)

* New translations en.json (Korean)

* New translations en.json (Ukrainian)

* New translations en.json (Chinese Simplified)

* New translations simple_form.en.yml (Chinese Simplified)

* New translations en.json (Danish)

* New translations en.json (Italian)

* New translations en.json (Russian)

* New translations en.json (Chinese Traditional)

* New translations en.json (Czech)

* New translations en.json (Hungarian)

* New translations en.json (Latvian)

* New translations en.json (Turkish)

* New translations en.json (Albanian)

* New translations en.json (German)

* New translations en.json (Polish)

* New translations en.json (Slovenian)

* New translations en.json (Vietnamese)

* New translations en.json (Ido)

* New translations en.json (French)

* New translations en.json (Icelandic)

* Run `yarn manage:translations`

* Run `bundle exec i18n-tasks normalize`

Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
3 years agoFix language dropdown sometimes not appearing in web UI (#19246)
Eugen Rochko [Tue, 27 Sep 2022 23:02:15 +0000 (01:02 +0200)]
Fix language dropdown sometimes not appearing in web UI (#19246)

When user has no locale preference saved (such as never changing it
from the default), the preferred posting language is nil, and
the dropdown is not visible

3 years agoFix translations not being formatted, other issues in web UI (#19245)
Eugen Rochko [Tue, 27 Sep 2022 23:02:01 +0000 (01:02 +0200)]
Fix translations not being formatted, other issues in web UI (#19245)

Fix #19237

3 years agoFix auto detect language for translate service (#19244)
Yamagishi Kazutoshi [Tue, 27 Sep 2022 21:33:56 +0000 (06:33 +0900)]
Fix auto detect language for translate service (#19244)