- Fetch binary releases dynamically from Gronod/argyllcms at package/build time - Add scripts/fetch-argyll.mjs and npm run fetch-argyll script - Remove vendored platform binaries from git and update .gitignore - Relocate test mocks to src-tauri/argyll/mocks/ - Add missing sidecar check in build.rs - Configure NSIS installerHooks with hooks.nsh and installMode both - Update all 6 GitHub/Gitea CI workflows with fetch and hard sidecar verification - Update README, ROADMAP, and THIRDPARTY-LICENSES documentation
21 lines
445 B
Bash
21 lines
445 B
Bash
#!/bin/bash
|
|
# Mock script for colprof
|
|
# Simulates colprof execution and outputs progress log
|
|
|
|
basename="$1"
|
|
# Find last argument if -D or other flags are used
|
|
for arg in "$@"; do
|
|
basename="$arg"
|
|
done
|
|
|
|
echo "colprof: Starting profile calculation for $basename"
|
|
sleep 1
|
|
echo "Gamut mapping calculation..."
|
|
sleep 1
|
|
echo "Fitting cLUT grid points..."
|
|
sleep 1
|
|
echo "Writing ICC profile $basename.icc..."
|
|
touch "$basename.icc"
|
|
echo "Done."
|
|
exit 0
|