initial commit
This commit is contained in:
parent
afb98a8f16
commit
13422ca3bb
4 changed files with 60 additions and 0 deletions
35
charlimit_1000.diff
Normal file
35
charlimit_1000.diff
Normal file
|
@ -0,0 +1,35 @@
|
|||
diff --git a/app/javascript/mastodon/features/compose/components/compose_form.js b/app/javascript/mastodon/features/compose/components/compose_form.js
|
||||
index e641d59f4..bacae6ed6 100644
|
||||
--- a/app/javascript/mastodon/features/compose/components/compose_form.js
|
||||
+++ b/app/javascript/mastodon/features/compose/components/compose_form.js
|
||||
@@ -90,7 +90,7 @@ class ComposeForm extends ImmutablePureComponent {
|
||||
const fulltext = this.getFulltextForCharacterCounting();
|
||||
const isOnlyWhitespace = fulltext.length !== 0 && fulltext.trim().length === 0;
|
||||
|
||||
- return !(isSubmitting || isUploading || isChangingUpload || length(fulltext) > 500 || (isOnlyWhitespace && !anyMedia));
|
||||
+ return !(isSubmitting || isUploading || isChangingUpload || length(fulltext) > 1000 || (isOnlyWhitespace && !anyMedia));
|
||||
};
|
||||
|
||||
handleSubmit = (e) => {
|
||||
@@ -280,7 +280,7 @@ class ComposeForm extends ImmutablePureComponent {
|
||||
</div>
|
||||
|
||||
<div className='character-counter__wrapper'>
|
||||
- <CharacterCounter max={500} text={this.getFulltextForCharacterCounting()} />
|
||||
+ <CharacterCounter max={1000} text={this.getFulltextForCharacterCounting()} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
diff --git a/app/validators/status_length_validator.rb b/app/validators/status_length_validator.rb
|
||||
index e107912b7..a4efdfed0 100644
|
||||
--- a/app/validators/status_length_validator.rb
|
||||
+++ b/app/validators/status_length_validator.rb
|
||||
@@ -1,7 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class StatusLengthValidator < ActiveModel::Validator
|
||||
- MAX_CHARS = 500
|
||||
+ MAX_CHARS = 1000
|
||||
URL_PLACEHOLDER_CHARS = 23
|
||||
URL_PLACEHOLDER = 'x' * 23
|
||||
|
18
custom-favicon.sh
Executable file
18
custom-favicon.sh
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
SOURCE="/home/mastodon/custom_mastodon/favicon.png"
|
||||
|
||||
cd /home/mastodon/live/app/javascript/icons
|
||||
|
||||
for prefix in android-chrome apple-touch-icon favicon
|
||||
do
|
||||
for icon in $prefix-*
|
||||
do
|
||||
suffix=${icon#$prefix-}
|
||||
resolution=${suffix%.png}
|
||||
echo -n "."
|
||||
convert -scale $resolution ${SOURCE} "${icon}"
|
||||
done
|
||||
done
|
||||
convert -scale 48x48 ${SOURCE} /home/mastodon/live/public/favicon.ico
|
||||
echo " done"
|
7
custom.css
Normal file
7
custom.css
Normal file
|
@ -0,0 +1,7 @@
|
|||
.hashtag, .account__header__content a, .status__content a {
|
||||
color: #c17cfb;
|
||||
}
|
||||
|
||||
.drawer, .column {
|
||||
flex: 1 1 auto;
|
||||
}
|
BIN
favicon.png
Normal file
BIN
favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
Loading…
Reference in a new issue