Skip to content

Commit 30534bf

Browse files
authored
Merge pull request #265 from BJNFNE/formats
implement new signatures
2 parents 3f96244 + 1d0672a commit 30534bf

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

db/Binary/__MiniExtensionsHeuristic_By_DosX.7.sg

+2
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ function main() {
233233
{ ext: ["mdx"], type: "format", name: "Multidimensional Expressions", bin: true },
234234
{ ext: ["qdat"], type: "format", name: "QuickTime data", bin: true },
235235
{ ext: ["pup"], type: "format", name: "Playstation Update Package", bin: true },
236+
{ ext: ["mps"], type: "format", name: "Mathematical Programming System", bin: true },
237+
{ ext: ["gzf"], type: "format", name: "Ghidra Zip File", bin: true },
236238
// ScummVM formats:
237239
{ ext: ["gob"], type: "format", name: "Config file (extract_gob_stk)", bin: false },
238240
// Director formats:

db/Binary/video.BIK.1.sg

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Detect It Easy: detection rule file
2+
// Author: BJNFNE <[email protected]>
3+
// This Script supports following formats: BIK
4+
5+
init("format", "BIK");
6+
7+
function detect() {
8+
if (Binary.compare("'BIKi'")) {
9+
sVersion = "Bink Video";
10+
bDetected = true;
11+
}
12+
13+
return result();
14+
}

0 commit comments

Comments
 (0)