diff --git a/Copying.txt b/Copying.txt index 2c3228e..c1bf8c0 100644 --- a/Copying.txt +++ b/Copying.txt @@ -2,4 +2,4 @@ MediaInfoXP (GUI for MediaInfo) was created from the scratch by LoRd_MuldeR " + VALUE "LegalCopyright", "Copyright (C) 2004-2014 LoRd_MuldeR " VALUE "LegalTrademarks", "This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License " VALUE "OriginalFilename", "MediaInfoXP.exe" VALUE "ProductName", "MediaInfoXP - GUI for MediaInfo" diff --git a/ReadMe.txt b/ReadMe.txt index 3d20f1a..629f167 100644 --- a/ReadMe.txt +++ b/ReadMe.txt @@ -1,6 +1,6 @@ MediaInfoXP - Simple GUI for MediaInfo - Copyright (C) 2004-2013 LoRd_MuldeR + Copyright (C) 2004-2014 LoRd_MuldeR http://www.muldersoft.com/ This program is free software; you can redistribute it and/or modify diff --git a/etc/zip.exe b/etc/zip.exe new file mode 100644 index 0000000..55be81d Binary files /dev/null and b/etc/zip.exe differ diff --git a/src/Config.h b/src/Config.h index 32bf60c..6b40c52 100644 --- a/src/Config.h +++ b/src/Config.h @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // MediaInfoXP -// Copyright (C) 2004-2013 LoRd_MuldeR +// Copyright (C) 2004-2014 LoRd_MuldeR // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -21,12 +21,12 @@ //Version static unsigned int mixp_versionMajor = 2; -static unsigned int mixp_versionMinor = 6; +static unsigned int mixp_versionMinor = 7; //MediaInfo Version static unsigned int mixp_miVersionMajor = 0; static unsigned int mixp_miVersionMinor = 7; -static unsigned int mixp_miVersionPatch = 65; +static unsigned int mixp_miVersionPatch = 67; //Build date static const char *mixp_buildDate = __DATE__; diff --git a/src/Main.cpp b/src/Main.cpp index 1b786f0..49cbf35 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // MediaInfoXP -// Copyright (C) 2004-2013 LoRd_MuldeR +// Copyright (C) 2004-2014 LoRd_MuldeR // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 2c63ef5..ca62bc4 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // MediaInfoXP -// Copyright (C) 2004-2013 LoRd_MuldeR +// Copyright (C) 2004-2014 LoRd_MuldeR // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/src/MainWindow.h b/src/MainWindow.h index 3d1c702..b937281 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // MediaInfoXP -// Copyright (C) 2004-2013 LoRd_MuldeR +// Copyright (C) 2004-2014 LoRd_MuldeR // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/src/Utils.cpp b/src/Utils.cpp index 3e24d71..352df41 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // MediaInfoXP -// Copyright (C) 2004-2013 LoRd_MuldeR +// Copyright (C) 2004-2014 LoRd_MuldeR // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/src/Utils.h b/src/Utils.h index 9d058e3..d54ee6b 100644 --- a/src/Utils.h +++ b/src/Utils.h @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // MediaInfoXP -// Copyright (C) 2004-2013 LoRd_MuldeR +// Copyright (C) 2004-2014 LoRd_MuldeR // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/z_build.bat b/z_build.bat index bf79e04..05f4882 100644 --- a/z_build.bat +++ b/z_build.bat @@ -101,10 +101,22 @@ if exist "%~dp0\out\%OUT_NAME%.zip" ( goto CheckOutName ) +REM /////////////////////////////////////////////////////////////////////////// +REM // Create version tag +REM /////////////////////////////////////////////////////////////////////////// +echo MediaInfoXP - Simple GUI for MediaInfo > "%OUT_NAME%.txt" +echo Built on %ISO_DATE%, at %TIME% >> "%OUT_NAME%.txt" +echo opyright (C) 2004-2014 LoRd_MuldeR ^ >> "%OUT_NAME%.txt" +echo. >> "%OUT_NAME%.txt" +echo MediaInfo(Lib) is Copyright (C) 2002-2014 MediaArea.net SARL. >> "%OUT_NAME%.txt" +echo. >> "%OUT_NAME%.txt" + REM /////////////////////////////////////////////////////////////////////////// REM // Build the package REM /////////////////////////////////////////////////////////////////////////// -"%~dp0\etc\7za.exe" a -mm=Deflate -mfb=258 -mpass=15 -r "%~dp0\out\%OUT_NAME%.zip" "%PACK_PATH%\*.*" +pushd "%PACK_PATH% +"%~dp0\etc\zip.exe" -9 -r -z "%~dp0\out\%OUT_NAME%.zip" "*.*" < "%OUT_NAME%.txt" +popd rmdir /Q /S "%PACK_PATH%" attrib +R "%~dp0\out\%OUT_NAME%.zip"