mirror of
https://github.com/wizarrrr/wizarr.git
synced 2026-01-18 20:40:41 -05:00
- Update the `.pylintrc` file to include the `multiple-statements` rule. - In the `api/routes/__init__.py` file, add the `utilities_api` namespace. - In the `api/routes/logging_api.py` file, update the `log_file` path. - In the `api/routes/plex_api.py` file, remove the `send_message` and `test_connection` functions, and update the code to send a message and start a background task. - Add the `utilities_api` file to the routes folder. - Update the `app/models/wizarr/invitations.py` file to handle zero duration values. - Update the `app/static/package-lock.json` file to include new dependencies. - Update the `app/static/package.json` file to include new dependencies. - Update the `app/static/postcss.config.cjs` file to fix the autoprefixer issue. - Update the `app/static/src/ts/api/index.ts` file to include the new utilities file. - Update the `app/static/src/ts/api/settings.ts` file to fix a syntax error.
9 lines
172 B
Bash
Executable File
9 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
directory_path="../"
|
|
|
|
fswatch -r -e ".*" -i "\\.log$" "$directory_path" |
|
|
while read filename
|
|
do
|
|
echo "File '$filename' was modified."
|
|
done |