mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-22 05:19:18 +00:00
12 lines
378 B
Bash
12 lines
378 B
Bash
#!/bin/sh
|
|
|
|
### Increase number of characters / toot
|
|
sed -i -e 's/500/800/g' \
|
|
app/javascript/mastodon/features/compose/components/compose_form.js \
|
|
app/validators/status_length_validator.rb \
|
|
storybook/stories/character_counter.story.js
|
|
|
|
### Dragon emoji
|
|
sed -i -e 's/1f602/1f432/g' \
|
|
app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js
|