mastodon: add RC targaryen
@ -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 \
|
||||
|
BIN
mastodon/targaryen-rc/app/javascript/images/elephant-friend.png
Normal file
After Width: | Height: | Size: 11 KiB |
1
mastodon/targaryen-rc/app/javascript/images/logo.svg
Normal file
After Width: | Height: | Size: 306 KiB |
1
mastodon/targaryen-rc/app/javascript/images/logo_alt.svg
Normal file
After Width: | Height: | Size: 306 KiB |
16
mastodon/targaryen-rc/app/javascript/images/logo_full.svg
Normal file
After Width: | Height: | Size: 167 KiB |
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 14 KiB |
29
mastodon/targaryen-rc/app/javascript/styles/variables.scss
Normal 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
|
BIN
mastodon/targaryen-rc/public/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
mastodon/targaryen-rc/public/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
mastodon/targaryen-rc/public/avatars/original/missing.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
mastodon/targaryen-rc/public/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
mastodon/targaryen-rc/public/mstile-150x150.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
mastodon/targaryen-rc/public/oops.png
Normal file
After Width: | Height: | Size: 80 KiB |
18
mastodon/targaryen-rc/targaryen.sh
Normal 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
|