- screenshots of scores will be posted in comments
- screenshots of completed sections will be posted in comments
This file
Create Read Update Delete - Create an object/program/app, Read in data (from user or from another object), Update Object, Delete when finished.
| #!/bin/sh | |
| # shellcheck shell=dash | |
| # This script checks the compatibility of all modules in the modules directory with the specified FoundryVTT version. | |
| # Constants | |
| MODULES_DIR="/data/Data/modules" | |
| TARGET_VERSION="13.346" | |
| TARGET_VERSION_MAJOR=$(echo "$TARGET_VERSION" | cut -d. -f1) |