Happy new year 2014 ;-)
This commit is contained in:
parent
524a39e472
commit
ca1c9a06c2
@ -2,4 +2,4 @@ MediaInfoXP (GUI for MediaInfo) was created from the scratch by LoRd_MuldeR <mul
|
|||||||
|
|
||||||
The Qt GUI Toolkit is Copyright (C) 2012 Digia Finland Ltd and/or its subsidiary(-ies). You may use, distribute and copy the Qt GUI Toolkit under the terms of GNU General Public License version 3.
|
The Qt GUI Toolkit is Copyright (C) 2012 Digia Finland Ltd and/or its subsidiary(-ies). You may use, distribute and copy the Qt GUI Toolkit under the terms of GNU General Public License version 3.
|
||||||
|
|
||||||
MediaInfo(Lib) is Copyright (C) 2002-2013 MediaArea.net SARL. Redistribution and use in source and binary forms, with or without modification, are permitted according to the BSD-2-Clause license.
|
MediaInfo(Lib) is Copyright (C) 2002-2014 MediaArea.net SARL. Redistribution and use in source and binary forms, with or without modification, are permitted according to the BSD-2-Clause license.
|
||||||
|
@ -45,7 +45,7 @@ BEGIN
|
|||||||
VALUE "FileDescription", "MediaInfoXP - GUI for MediaInfo"
|
VALUE "FileDescription", "MediaInfoXP - GUI for MediaInfo"
|
||||||
VALUE "FileVersion", "1.00"
|
VALUE "FileVersion", "1.00"
|
||||||
VALUE "InternalName", "MediaInfoXP_Qt"
|
VALUE "InternalName", "MediaInfoXP_Qt"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>"
|
VALUE "LegalCopyright", "Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>"
|
||||||
VALUE "LegalTrademarks", "This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License <http://www.gnu.org/>"
|
VALUE "LegalTrademarks", "This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License <http://www.gnu.org/>"
|
||||||
VALUE "OriginalFilename", "MediaInfoXP.exe"
|
VALUE "OriginalFilename", "MediaInfoXP.exe"
|
||||||
VALUE "ProductName", "MediaInfoXP - GUI for MediaInfo"
|
VALUE "ProductName", "MediaInfoXP - GUI for MediaInfo"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
MediaInfoXP - Simple GUI for MediaInfo
|
MediaInfoXP - Simple GUI for MediaInfo
|
||||||
Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
|
||||||
http://www.muldersoft.com/
|
http://www.muldersoft.com/
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
BIN
etc/zip.exe
Normal file
BIN
etc/zip.exe
Normal file
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// MediaInfoXP
|
// MediaInfoXP
|
||||||
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU General Public License as published by
|
||||||
@ -21,12 +21,12 @@
|
|||||||
|
|
||||||
//Version
|
//Version
|
||||||
static unsigned int mixp_versionMajor = 2;
|
static unsigned int mixp_versionMajor = 2;
|
||||||
static unsigned int mixp_versionMinor = 6;
|
static unsigned int mixp_versionMinor = 7;
|
||||||
|
|
||||||
//MediaInfo Version
|
//MediaInfo Version
|
||||||
static unsigned int mixp_miVersionMajor = 0;
|
static unsigned int mixp_miVersionMajor = 0;
|
||||||
static unsigned int mixp_miVersionMinor = 7;
|
static unsigned int mixp_miVersionMinor = 7;
|
||||||
static unsigned int mixp_miVersionPatch = 65;
|
static unsigned int mixp_miVersionPatch = 67;
|
||||||
|
|
||||||
//Build date
|
//Build date
|
||||||
static const char *mixp_buildDate = __DATE__;
|
static const char *mixp_buildDate = __DATE__;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// MediaInfoXP
|
// MediaInfoXP
|
||||||
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// MediaInfoXP
|
// MediaInfoXP
|
||||||
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// MediaInfoXP
|
// MediaInfoXP
|
||||||
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// MediaInfoXP
|
// MediaInfoXP
|
||||||
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// MediaInfoXP
|
// MediaInfoXP
|
||||||
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or modify
|
// 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
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
14
z_build.bat
14
z_build.bat
@ -101,10 +101,22 @@ if exist "%~dp0\out\%OUT_NAME%.zip" (
|
|||||||
goto CheckOutName
|
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 ^<MuldeR2@GMX.de^> >> "%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 ///////////////////////////////////////////////////////////////////////////
|
||||||
REM // Build the package
|
REM // Build the package
|
||||||
REM ///////////////////////////////////////////////////////////////////////////
|
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%"
|
rmdir /Q /S "%PACK_PATH%"
|
||||||
attrib +R "%~dp0\out\%OUT_NAME%.zip"
|
attrib +R "%~dp0\out\%OUT_NAME%.zip"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user