diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/client.sh | 6 | ||||
-rwxr-xr-x | scripts/i18n/create-custom-files.ts | 2 | ||||
-rwxr-xr-x | scripts/upgrade.sh | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/scripts/build/client.sh b/scripts/build/client.sh index f4f9b1352..2bb322764 100755 --- a/scripts/build/client.sh +++ b/scripts/build/client.sh | |||
@@ -49,7 +49,7 @@ rm -rf ./dist | |||
49 | if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ]); then | 49 | if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ]); then |
50 | additionalParams="" | 50 | additionalParams="" |
51 | if [ ! -z ${1+x} ] && [ "$1" == "--source-map" ]; then | 51 | if [ ! -z ${1+x} ] && [ "$1" == "--source-map" ]; then |
52 | additionalParams="--sourceMap=true" | 52 | additionalParams="--source-map=true" |
53 | fi | 53 | fi |
54 | 54 | ||
55 | node --max_old_space_size=8192 node_modules/.bin/ng build --configuration production --output-path "dist/build" $additionalParams | 55 | node --max_old_space_size=8192 node_modules/.bin/ng build --configuration production --output-path "dist/build" $additionalParams |
@@ -71,14 +71,14 @@ if [ -z ${1+x} ] || ([ "$1" != "--light" ] && [ "$1" != "--analyze-bundle" ]); t | |||
71 | else | 71 | else |
72 | additionalParams="" | 72 | additionalParams="" |
73 | if [ ! -z ${1+x} ] && [ "$1" == "--analyze-bundle" ]; then | 73 | if [ ! -z ${1+x} ] && [ "$1" == "--analyze-bundle" ]; then |
74 | additionalParams="--namedChunks=true --outputHashing=none" | 74 | additionalParams="--named-chunks=true --output-hashing=none" |
75 | 75 | ||
76 | # For webpack | 76 | # For webpack |
77 | export ANALYZE_BUNDLE=true | 77 | export ANALYZE_BUNDLE=true |
78 | fi | 78 | fi |
79 | 79 | ||
80 | node --max_old_space_size=8192 node_modules/.bin/ng build --localize=false --output-path "dist/$defaultLanguage/" \ | 80 | node --max_old_space_size=8192 node_modules/.bin/ng build --localize=false --output-path "dist/$defaultLanguage/" \ |
81 | --deploy-url "/client/$defaultLanguage/" --configuration production --stats-json $additionalParams | 81 | --configuration production --stats-json $additionalParams |
82 | fi | 82 | fi |
83 | 83 | ||
84 | cp "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest" | 84 | cp "./dist/$defaultLanguage/manifest.webmanifest" "./dist/manifest.webmanifest" |
diff --git a/scripts/i18n/create-custom-files.ts b/scripts/i18n/create-custom-files.ts index 650b0aecd..e52909c43 100755 --- a/scripts/i18n/create-custom-files.ts +++ b/scripts/i18n/create-custom-files.ts | |||
@@ -57,6 +57,8 @@ const playerKeys = { | |||
57 | ' off': ' off', | 57 | ' off': ' off', |
58 | 'Player mode': 'Player mode', | 58 | 'Player mode': 'Player mode', |
59 | 'Play in loop': 'Play in loop', | 59 | 'Play in loop': 'Play in loop', |
60 | 'This live has not started yet.': 'This live has not started yet.', | ||
61 | 'This live has ended.': 'This live has ended.', | ||
60 | 'The video failed to play, will try to fast forward.': 'The video failed to play, will try to fast forward.' | 62 | 'The video failed to play, will try to fast forward.': 'The video failed to play, will try to fast forward.' |
61 | } | 63 | } |
62 | Object.assign(playerKeys, videojs) | 64 | Object.assign(playerKeys, videojs) |
diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh index 9c17aecb8..e70576285 100755 --- a/scripts/upgrade.sh +++ b/scripts/upgrade.sh | |||
@@ -78,7 +78,8 @@ ln -s "$PEERTUBE_PATH/versions/peertube-${VERSION}" $PEERTUBE_PATH/peertube-late | |||
78 | cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml | 78 | cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml |
79 | 79 | ||
80 | echo "Differences in configuration files..." | 80 | echo "Differences in configuration files..." |
81 | diff -u $PEERTUBE_PATH/config/production.yaml "$PEERTUBE_PATH/versions/peertube-${VERSION}/config/production.yaml.example" | 81 | cd $PEERTUBE_PATH/versions |
82 | diff -u "$(ls --sort=t | head -2 | tail -1)/config/production.yaml.example" "$(ls --sort=t | head -1)/config/production.yaml.example" | ||
82 | 83 | ||
83 | echo "" | 84 | echo "" |
84 | echo "===========================================" | 85 | echo "===========================================" |