Fix: 2023-01-09

This commit is contained in:
horsicq 2023-01-09 02:18:25 +01:00
commit 6ea112d3a9
2 changed files with 29 additions and 3 deletions

View file

@ -16,5 +16,31 @@ function detect(bShowType,bShowVersion,bShowOptions)
}
}
if(!bDetected)
{
if (Binary.getSize()>=0x4C0)
{
if(Binary.compare("....................'ETracker (C) BY ESI.'", 0x4B3))
{
bDetected = 1;
sVersion = "1.x";
sName = "E-Tracker";
sOptions = "Embedded player"
}
}
}
if(!bDetected)
{
if(Binary.getSize()>=0x24)
{
if(Binary.compare("01FF..3EFF32018079FEFF2846320280"))
{
bDetected = 1;
sName = "SNG-COP";
}
}
}
return result(bShowType,bShowVersion,bShowOptions);
}

View file

@ -6,9 +6,9 @@
How to run portable version on Linux
=======
* download an appImage file https://github.com/horsicq/DIE-engine/releases/download/3.07/Detect_It_Easy-3.07-x86_64.AppImage
* make the file executable (chmod +x Detect_It_Easy-3.07-x86_64.AppImage)
* run it (./Detect_It_Easy-3.07-x86_64.AppImage)
* download an appImage file https://github.com/horsicq/DIE-engine/releases/download/3.08/Detect_It_Easy-3.08-x86_64.AppImage
* make the file executable (chmod +x Detect_It_Easy-3.08-x86_64.AppImage)
* run it (./Detect_It_Easy-3.08-x86_64.AppImage)
Run with Docker
=======