clean build for version 1.4.5 with fixes of security funtionalities, logic branches, etc. Already tested and working fine

This commit is contained in:
dwindown
2026-01-07 15:10:47 +07:00
parent 31b3398c2f
commit 0ba62b435a
26 changed files with 8962 additions and 2804 deletions

25
restore_v1.4.0.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
# Script to restore v1.4.0 (last known working version)
# Run this to see what changed between working version and current broken state
echo "=== Git History ==="
git log --oneline --all
echo ""
echo "=== Current Status ==="
git status
echo ""
echo "=== Files changed since v1.4.0 ==="
git diff 430e063f915efd056fb874318f4c70b0fe4ed08d HEAD --name-only
echo ""
echo "=== To restore v1.4.0 (BACKUP FIRST!) ==="
echo "git stash save 'backup-before-restore'"
echo "git reset --hard 430e063f915efd056fb874318f4c70b0fe4ed08d"
echo ""
echo "=== To see specific file changes ==="
echo "git diff 430e063f915efd056fb874318f4c70b0fe4ed08d HEAD includes/class-Sheet-Data-Checker-Pro.php"
echo "git diff 430e063f915efd056fb874318f4c70b0fe4ed08d HEAD assets/admin-editor.js"