1

Formatting Updates

This commit is contained in:
Kim Wittenburg
2018-08-26 21:30:05 +02:00
parent d68774ed12
commit 04e5788d10
2 changed files with 8 additions and 9 deletions

View File

@@ -29,7 +29,7 @@ The `content ID` and `XID` are used to link the iTunes Extras to the movie file.
#### Step 2: Tagging your Extras
Open the `data.json` file and edit it in the following ways:
Open the `data.json` file and edit it as follows:
- Add the movie's metadata to the `"meta"` part of the file. This may include the movie's `"title"`, `"artist"`, `"description"`, `"longDescription"`, `"genre"`, `"releaseDate"`, `"year"`, `"studio"` and `"sort-name"`.
- Change the `"XID"` to the XID you previously assigned to the movie file.

View File

@@ -14,9 +14,10 @@ mkdir -p "${TARGET_DIR}"
cp -R TuneKit/ "${TARGET_DIR}/TuneKit/"
echo -n "Compiling Code..."
for file in $(find ${SOURCE_ROOT} -type f)
do
echo -n "Compiling $file..."
dir=$(dirname "$file")
filename=$(basename "$file")
extension="${filename##*.}"
@@ -24,9 +25,6 @@ do
filename="${filename%.*}" # For double extensions
if [[ $filename == _* ]]; then
echo -en "\033[0;33m"
echo " Skipping"
echo -en "\033[0;00m"
continue
fi
@@ -55,11 +53,12 @@ do
cp "$file" "${partialTarget}.${extension}"
;;
esac
echo -en "\033[0;92m"
echo " Done"
echo -en "\033[0;00m"
done
echo -en "\033[0;92m"
echo " Done"
echo -en "\033[0;00m"
echo -n "Copying Assets... "
cp -R assets/ "${TARGET_DIR}/"
echo -en "\033[0;92m"