Conflicts:
- `.github/dependabot.yml`:
Updated upstream, removed in glitch-soc to disable noise.
Kept removed.
- `CODE_OF_CONDUCT.md`:
Upstream updated to a new version of the covenant, but I have not read it
yet, so kept unchanged.
- `Gemfile.lock`:
Not a real conflict, one upstream dependency updated textually too close to
the glitch-soc only `hcaptcha` dependency.
Applied upstream changes.
- `app/controllers/admin/base_controller.rb`:
Minor conflict due to glitch-soc's theming system.
Applied upstream changes.
- `app/controllers/application_controller.rb`:
Minor conflict due to glitch-soc's theming system.
Applied upstream changes.
- `app/controllers/disputes/base_controller.rb`:
Minor conflict due to glitch-soc's theming system.
Applied upstream changes.
- `app/controllers/relationships_controller.rb`:
Minor conflict due to glitch-soc's theming system.
Applied upstream changes.
- `app/controllers/statuses_cleanup_controller.rb`:
Minor conflict due to glitch-soc's theming system.
Applied upstream changes.
- `app/helpers/application_helper.rb`:
Minor conflict due to glitch-soc's theming system.
Applied upstream changes.
- `app/javascript/mastodon/features/compose/components/compose_form.jsx`:
Upstream added a highlight animation for onboarding, while we changed the
max character limit.
Applied our local changes on top of upstream's new version.
- `app/views/layouts/application.html.haml`:
Minor conflict due to glitch-soc's theming system.
Applied upstream changes.
- `stylelint.config.js`:
Upstream added ignore paths, glitch-soc had extra ignore paths.
Added the same paths as upstream.
@ -32,7 +32,7 @@ class EditedTimestamp extends React.PureComponent {
renderHeader=items=>{
renderHeader=items=>{
return(
return(
<FormattedMessageid='status.edited_x_times'defaultMessage='Edited {count, plural, one {{count} time} other {{count} times}}' values={{count:items.size-1}}/>
<FormattedMessageid='status.edited_x_times'defaultMessage='Edited {count, plural, one {# time} other {# times}}' values={{count:items.size-1}}/>
@ -32,17 +32,14 @@ function ShortNumber({ value, renderer, children }) {
constshortNumber=toShortNumber(value);
constshortNumber=toShortNumber(value);
const[,division]=shortNumber;
const[,division]=shortNumber;
//eslint-disable-next-lineeqeqeq
if(children!=null&&renderer!=null){
if(children!=null&&renderer!=null){
console.warn('Both renderer prop and renderer as a child provided. This is a mistake and you really should fix that. Only renderer passed as a child will be used.');
console.warn('Both renderer prop and renderer as a child provided. This is a mistake and you really should fix that. Only renderer passed as a child will be used.');