mastodon: add RC targaryen

This commit is contained in:
Wonderfall 2017-07-24 22:26:04 +02:00
parent 6ee3551975
commit 07fe9c2cc0
15 changed files with 66 additions and 1 deletions

View File

@ -1,6 +1,6 @@
FROM alpine:3.6
ARG VERSION=1.5.0rc1
ARG VERSION=v1.5.0rc1
ARG REPOSITORY=tootsuite/mastodon
ENV UID=991 GID=991 \

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 306 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 306 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,29 @@
// Commonly used web colors
$black: #000000; // Black
$white: #ffffff; // White
$success-green: #79bd9a; // Padua
$error-red: #df405a; // Cerise
$warning-red: #ff5050; // Sunset Orange
$gold-star: #ca8f04; // Dark Goldenrod
// Values from the classic Mastodon UI
$classic-base-color: #282828; // Midnight Grey
$classic-primary-color: #c89b9b; // Echo Red
$classic-secondary-color: #e8d9d9; // Pattens Red
$classic-highlight-color: #d92b2b; // Summer RedSky
// Variables for defaults in UI
$base-shadow-color: $black !default;
$base-overlay-background: $black !default;
$base-border-color: $white !default;
$simple-background-color: $white !default;
$primary-text-color: $white !default;
$valid-value-color: $success-green !default;
$error-value-color: $error-red !default;
// Tell UI to use selected colors
$ui-base-color: $classic-base-color !default; // Darkest
$ui-base-lighter-color: lighten($ui-base-color, 26%) !default; // Lighter darkest
$ui-primary-color: $classic-primary-color !default; // Lighter
$ui-secondary-color: $classic-secondary-color !default; // Lightest
$ui-highlight-color: $classic-highlight-color !default; // Vibrant

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View File

@ -0,0 +1,18 @@
#!/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