From 22c0eeddfde21a0100af0fe19495f0bbffbed233 Mon Sep 17 00:00:00 2001 From: Michael D Date: Tue, 6 Feb 2018 22:07:06 +0100 Subject: [PATCH 1/2] Fix small error in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 36b8232..084c156 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ BurnOutSharp ============ -This is a fork of [BurnOut](https://sourceforge.net/projects/burnout), an opensource copy protection. +This is a fork of [BurnOut](https://sourceforge.net/projects/burnout), an opensource copy protection detector/scanner. -License is GPLv2. \ No newline at end of file +License is GPLv2. -- 2.52.0 From 3c042c03296e254329d7c3f14c5511a0cf42f473 Mon Sep 17 00:00:00 2001 From: Michael D Date: Tue, 6 Feb 2018 22:14:42 +0100 Subject: [PATCH 2/2] Fix some more version strings --- BurnOutSharp/ProtectionFind.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/BurnOutSharp/ProtectionFind.cs b/BurnOutSharp/ProtectionFind.cs index 977608a..0cda0cf 100644 --- a/BurnOutSharp/ProtectionFind.cs +++ b/BurnOutSharp/ProtectionFind.cs @@ -240,7 +240,7 @@ namespace BurnOutSharp if(ByteShield(path, files)) return "ByteShield"; - if(Cactus(ref version, files)) return "Cactus Data Shield {version}"; + if(Cactus(ref version, files)) return $"Cactus Data Shield {version}"; ; if(CdCops(path, files)) return "CD-Cops"; @@ -261,13 +261,13 @@ namespace BurnOutSharp if(HexalockAutoLock(files)) return "Hexalock AutoLock"; - if(ImpulseReactor(ref version, files)) return "Impulse Reactor {version}"; + if(ImpulseReactor(ref version, files)) return $"Impulse Reactor {version}"; if(IndyVcd(files)) return "IndyVCD"; if(Key2AudioXs(files)) return "Key2Audio XS"; - if(LaserLock(ref version, path, files)) return "LaserLock {version}"; + if(LaserLock(ref version, path, files)) return $"LaserLock {version}"; if(MediaCloQ(files)) return "MediaCloQ"; @@ -281,12 +281,12 @@ namespace BurnOutSharp if(SafeDiscLite(files)) return "SafeDisc Lite"; - if(SafeDisc2(ref version, path, files)) return "SafeDisc {version}"; + if(SafeDisc2(ref version, path, files)) return $"SafeDisc {version}"; if(TzCopyProtector(files)) return "TZCopyProtector"; //has to be checked before SafeDisc because SafeDiscsearch searches for *.016 - if(SafeDisc1(ref version, path, files)) return "SafeDisc {version}"; + if(SafeDisc1(ref version, path, files)) return $"SafeDisc {version}"; if(Safe_Lock(files)) return "SafeLock"; @@ -310,7 +310,7 @@ namespace BurnOutSharp if(WtmcdProtect(path)) return "WTM CD Protect"; - if(WtmCopyProtection(ref version, files)) return "WTM Copy Protection {version}"; + if(WtmCopyProtection(ref version, files)) return $"WTM Copy Protection {version}"; if(Xcp(path, files)) return "XCP"; -- 2.52.0