@riddledc/riddle-proof 0.7.216 → 0.7.217
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +8 -8
- package/dist/cli.js +8 -8
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -17686,6 +17686,14 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
17686
17686
|
"visible cleanup affordance receipt missing"
|
|
17687
17687
|
);
|
|
17688
17688
|
}
|
|
17689
|
+
if (text.includes("screenshot")) {
|
|
17690
|
+
const needsBoundaryScreenshots = text.includes("each") || text.includes("before and after") || text.includes("state boundary");
|
|
17691
|
+
return profileReceiptSignalStatus(
|
|
17692
|
+
needsBoundaryScreenshots ? screenshotCount >= 2 : screenshotCount > 0,
|
|
17693
|
+
needsBoundaryScreenshots ? "multiple screenshots present" : "screenshot evidence present",
|
|
17694
|
+
needsBoundaryScreenshots ? "multiple screenshots missing" : "screenshot evidence missing"
|
|
17695
|
+
);
|
|
17696
|
+
}
|
|
17689
17697
|
if (text.includes("input") && (text.includes("sequence") || text.includes("short-long") || text.includes("short long") || text.includes("long-short") || text.includes("long long") || text.includes("long short"))) {
|
|
17690
17698
|
return profileReceiptSignalStatus(
|
|
17691
17699
|
hasSequenceInputReceipt,
|
|
@@ -17748,14 +17756,6 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
17748
17756
|
"before/after state evidence missing"
|
|
17749
17757
|
);
|
|
17750
17758
|
}
|
|
17751
|
-
if (text.includes("screenshot")) {
|
|
17752
|
-
const needsBoundaryScreenshots = text.includes("each") || text.includes("before and after") || text.includes("state boundary");
|
|
17753
|
-
return profileReceiptSignalStatus(
|
|
17754
|
-
needsBoundaryScreenshots ? screenshotCount >= 2 : screenshotCount > 0,
|
|
17755
|
-
needsBoundaryScreenshots ? "multiple screenshots present" : "screenshot evidence present",
|
|
17756
|
-
needsBoundaryScreenshots ? "multiple screenshots missing" : "screenshot evidence missing"
|
|
17757
|
-
);
|
|
17758
|
-
}
|
|
17759
17759
|
if (text.includes("input") && (text.includes("playability") || text.includes("moving") || text.includes("steering") || text.includes("real") || text.includes("natural"))) {
|
|
17760
17760
|
const needsAcceptedInput = text.includes("steering") || text.includes("accepted");
|
|
17761
17761
|
const hasInputDispatch = inputDispatchCount > 0 || hasNaturalInput;
|
package/dist/cli.js
CHANGED
|
@@ -1446,6 +1446,14 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
1446
1446
|
"visible cleanup affordance receipt missing"
|
|
1447
1447
|
);
|
|
1448
1448
|
}
|
|
1449
|
+
if (text.includes("screenshot")) {
|
|
1450
|
+
const needsBoundaryScreenshots = text.includes("each") || text.includes("before and after") || text.includes("state boundary");
|
|
1451
|
+
return profileReceiptSignalStatus(
|
|
1452
|
+
needsBoundaryScreenshots ? screenshotCount >= 2 : screenshotCount > 0,
|
|
1453
|
+
needsBoundaryScreenshots ? "multiple screenshots present" : "screenshot evidence present",
|
|
1454
|
+
needsBoundaryScreenshots ? "multiple screenshots missing" : "screenshot evidence missing"
|
|
1455
|
+
);
|
|
1456
|
+
}
|
|
1449
1457
|
if (text.includes("input") && (text.includes("sequence") || text.includes("short-long") || text.includes("short long") || text.includes("long-short") || text.includes("long long") || text.includes("long short"))) {
|
|
1450
1458
|
return profileReceiptSignalStatus(
|
|
1451
1459
|
hasSequenceInputReceipt,
|
|
@@ -1508,14 +1516,6 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
1508
1516
|
"before/after state evidence missing"
|
|
1509
1517
|
);
|
|
1510
1518
|
}
|
|
1511
|
-
if (text.includes("screenshot")) {
|
|
1512
|
-
const needsBoundaryScreenshots = text.includes("each") || text.includes("before and after") || text.includes("state boundary");
|
|
1513
|
-
return profileReceiptSignalStatus(
|
|
1514
|
-
needsBoundaryScreenshots ? screenshotCount >= 2 : screenshotCount > 0,
|
|
1515
|
-
needsBoundaryScreenshots ? "multiple screenshots present" : "screenshot evidence present",
|
|
1516
|
-
needsBoundaryScreenshots ? "multiple screenshots missing" : "screenshot evidence missing"
|
|
1517
|
-
);
|
|
1518
|
-
}
|
|
1519
1519
|
if (text.includes("input") && (text.includes("playability") || text.includes("moving") || text.includes("steering") || text.includes("real") || text.includes("natural"))) {
|
|
1520
1520
|
const needsAcceptedInput = text.includes("steering") || text.includes("accepted");
|
|
1521
1521
|
const hasInputDispatch = inputDispatchCount > 0 || hasNaturalInput;
|