mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-08-01 22:05:40 +00:00
boinc
boring-nginx
cowrie
cryptpad
freshrss
ghost
isso
kippo-graph
libresonic
lychee
mastodon
rootfs
targaryen
app
public
targaryen.sh
Dockerfile
Dockerfile.master
Dockerfile.stable
Dockerfile.targaryen
README.md
nextcloud
nginx-php
pgbouncer
piwik
privatebin
rtorrent-flood
searx
tor
unmaintained
LICENSE
19 lines
568 B
Bash
19 lines
568 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 \
|
|
config/locales/*.yml
|
|
|
|
### Increase bio length
|
|
sed -i -e 's/160/400/g' \
|
|
app/javascript/packs/public.js \
|
|
app/models/account.rb \
|
|
app/views/settings/profiles/show.html.haml
|
|
|
|
### Dragon emoji
|
|
sed -i -e 's/1f602/1f432/g' \
|
|
app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js
|