-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
dd3f6d7
commit c561ca6
Showing
11 changed files
with
8,970 additions
and
4,089 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
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
[ | ||
"/index.html", | ||
"/index.63982eba.css", | ||
"/index.3b283937.css", | ||
"/index.5671dcd7.css", | ||
"/manifest.webapp", | ||
"/index.339e55c4.js", | ||
"/icon-56-56.bda5227e.png", | ||
"/Roboto-Regular.4f1a9903.ttf", | ||
"/index.8d33ff60.js", | ||
"/icon-112-112.185b7f3e.png", | ||
"/index.runtime.8c6e9fd2.js", | ||
"/file-list.json", | ||
"/index.runtime.e9579c13.js", | ||
"/sw.js", | ||
"/index.f0337e49.js", | ||
"/favicon.3da022ef.ico", | ||
"/manifest.webmanifest", | ||
"/assets/icons/save.svg", | ||
"/assets/icons/intro.svg", | ||
"/assets/icons/2605.svg", | ||
"/assets/icons/add.svg", | ||
"/assets/icons/E269.svg", | ||
"/assets/icons/E1D8.svg", | ||
"/assets/icons/call.svg", | ||
"/assets/icons/option.svg", | ||
"/assets/icons/record.svg", | ||
"/assets/icons/intro.png", | ||
"/assets/icons/icon-112-112.png", | ||
"/assets/icons/plus.svg", | ||
"/assets/icons/delete.svg", | ||
"/assets/icons/2-5.svg", | ||
"/assets/icons/online.svg", | ||
"/assets/icons/ghost.svg", | ||
"/assets/icons/reblog.svg", | ||
"/assets/icons/icon-56-56.png", | ||
"/assets/icons/E252.svg", | ||
"/assets/icons/E25C.svg", | ||
"/assets/icons/logo.svg", | ||
"/assets/icons/person.svg", | ||
"/assets/icons/no-monster.svg", | ||
"/assets/icons/select.svg", | ||
"/assets/icons/bell.svg", | ||
"/assets/icons/qr.svg", | ||
"/assets/icons/23EF.svg", | ||
"/assets/icons/E261.svg", | ||
"/assets/icons/record-live.svg", | ||
"/assets/icons/25B6.svg", | ||
"/assets/icons/cancel.svg", | ||
"/assets/icons/minus.svg", | ||
"/assets/icons/eye.svg", | ||
"/assets/icons/icon-56-56.svg", | ||
"/assets/icons/favicon.ico", | ||
"/assets/icons/link.svg", | ||
"/assets/icons/picture.svg", | ||
"/assets/icons/youtube.png", | ||
"/assets/icons/back.svg", | ||
"/assets/icons/diamond.svg", | ||
"/assets/icons/2B07.svg", | ||
"/assets/icons/E253.svg", | ||
"/assets/icons/image.svg", | ||
"/assets/icons/monster.svg", | ||
"/assets/icons/send.svg", | ||
"/assets/icons/E24F.svg", | ||
"/assets/icons/clock.svg", | ||
"/assets/icons/pencil.svg", | ||
"/assets/icons/play.svg", | ||
"/assets/icons/cute-monster.png", | ||
"/assets/icons/replies.svg", | ||
"/assets/icons/podcast.png", | ||
"/assets/icons/list.svg", | ||
"/assets/icons/id.svg", | ||
"/assets/icons/E264.svg", | ||
"/assets/icons/offline.svg", | ||
"/assets/fonts/Roboto-Regular.ttf", | ||
"/assets/js/kaiads.v5.min.js" | ||
] |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,29 @@ | ||
#!/bin/bash | ||
|
||
# Set the output JSON file name | ||
OUTPUT_FILE="./docs/file-list.json" | ||
DOCS_DIR="./docs" | ||
|
||
# Start the JSON array | ||
echo "[" > "$OUTPUT_FILE" | ||
|
||
# Find all files in the docs directory and its subdirectories | ||
# Exclude directories and format the output as JSON | ||
find "$DOCS_DIR" -type f | while read -r file; do | ||
# Replace the leading "./docs/" with "" to keep the relative path for the JSON file | ||
relative_path=${file#"$DOCS_DIR/"} | ||
|
||
# Escape double quotes and backslashes in file names for JSON format | ||
escaped_file=$(printf '%s\n' "$relative_path" | sed 's/\\/\\\\/g; s/"/\\"/g') | ||
|
||
echo "\"/$escaped_file\"," >> "$OUTPUT_FILE" | ||
done | ||
|
||
# Remove the trailing comma from the last line | ||
sed -i '$ s/,$//' "$OUTPUT_FILE" | ||
|
||
# Close the JSON array | ||
echo "]" >> "$OUTPUT_FILE" | ||
|
||
echo "File list generated: $OUTPUT_FILE" | ||
|
Oops, something went wrong.