-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
359 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,12 +52,12 @@ | |
"uk-railway-stations": "^1.5.1" | ||
}, | ||
"devDependencies": { | ||
"@sentry/cli": "^2.21.5", | ||
"@sentry/cli": "^2.22.2", | ||
"@types/react-beautiful-dnd": "^13.1.7", | ||
"cross-env": "^7.0.3", | ||
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.32", | ||
"prettier": "^3.1.0", | ||
"typescript": "^5.2.2" | ||
"typescript": "^5.3.2" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+14.2 KB
static/audio/station/ketech/celia/s/were sorry to announce that the (old).mp3
Binary file not shown.
Binary file removed
BIN
-15.5 KB
static/audio/station/ketech/celia/s/were sorry to announce that the-2.mp3
Binary file not shown.
Binary file modified
BIN
+1.27 KB
(110%)
static/audio/station/ketech/celia/s/were sorry to announce that the.mp3
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15.1 KB
static/audio/station/ketech/celia/w/please listen for further announcements (old).mp3
Binary file not shown.
Binary file modified
BIN
+72 Bytes
(100%)
static/audio/station/ketech/celia/w/please listen for further announcements-2.mp3
Binary file not shown.
Binary file removed
BIN
-14.8 KB
static/audio/station/ketech/celia/w/please listen for further announcements-3.mp3
Binary file not shown.
Binary file modified
BIN
-324 Bytes
(98%)
static/audio/station/ketech/celia/w/please listen for further announcements.mp3
Binary file not shown.
Binary file removed
BIN
-26.2 KB
...o/station/ketech/phil/e/please make sure you travel in the correct part of this train.mp3
Binary file not shown.
File renamed without changes.
Binary file added
BIN
+14.1 KB
static/audio/station/ketech/phil/s/were sorry to announce that the (old).mp3
Binary file not shown.
Binary file modified
BIN
+1.2 KB
(110%)
static/audio/station/ketech/phil/s/were sorry to announce that the-2.mp3
Binary file not shown.
Binary file removed
BIN
-15.3 KB
static/audio/station/ketech/phil/s/were sorry to announce that the-3.mp3
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file added
BIN
+19.5 KB
static/audio/station/ketech/phil/w/please listen for further announcements (old).mp3
Binary file not shown.
Binary file modified
BIN
-108 Bytes
(99%)
static/audio/station/ketech/phil/w/please listen for further announcements-2.mp3
Binary file not shown.
Binary file removed
BIN
-17.4 KB
static/audio/station/ketech/phil/w/please listen for further announcements-3.mp3
Binary file not shown.
Binary file modified
BIN
-2.04 KB
(90%)
static/audio/station/ketech/phil/w/please listen for further announcements.mp3
Binary file not shown.
Binary file added
BIN
+29.5 KB
...station/ketech/phil/w/please make sure you travel in the correct part of this train-2.mp3
Binary file not shown.
Binary file modified
BIN
-3.3 KB
(89%)
...o/station/ketech/phil/w/please make sure you travel in the correct part of this train.mp3
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
# This script is used to update the audio files for the KeTech/Amey systems | ||
# from the master copy. | ||
# | ||
# It assumes you have a copy of https://github.com/Rail-Announcements/ketech-llpa-announcements | ||
# cloned under ~/ketech-llpa-announcements | ||
|
||
# Current pwd | ||
pwd=$(pwd) | ||
|
||
# Get script dir | ||
dir="$(cd -P -- "$(dirname -- "$0")" && pwd -P)" | ||
|
||
# Set working dir to script dir | ||
cd $dir | ||
|
||
# Remove existing files | ||
rm -rf phil/* celia/* | ||
|
||
# Copy renamed files | ||
cp -r ~/ketech-llpa-announcements/renamed/Male1/* ./phil/ | ||
cp -r ~/ketech-llpa-announcements/renamed/Female1/* ./celia/ | ||
|
||
# Copy extra custom files | ||
cp -r ~/ketech-llpa-announcements/custom/Male1/* ./phil/ | ||
cp -r ~/ketech-llpa-announcements/custom/Female1/* ./celia/ | ||
|
||
# Set working dir back to original | ||
cd $pwd |
Oops, something went wrong.