Happy new year 2014 ;-)

This commit is contained in:
LoRd_MuldeR 2014-01-11 21:41:24 +01:00
parent 524a39e472
commit ca1c9a06c2
11 changed files with 24 additions and 12 deletions

View File

@ -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.
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.

View File

@ -45,7 +45,7 @@ BEGIN
VALUE "FileDescription", "MediaInfoXP - GUI for MediaInfo"
VALUE "FileVersion", "1.00"
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 "OriginalFilename", "MediaInfoXP.exe"
VALUE "ProductName", "MediaInfoXP - GUI for MediaInfo"

View File

@ -1,6 +1,6 @@
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/
This program is free software; you can redistribute it and/or modify

BIN
etc/zip.exe Normal file

Binary file not shown.

View File

@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
// 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
// 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__;

View File

@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
// 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
// it under the terms of the GNU General Public License as published by

View File

@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
// 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
// it under the terms of the GNU General Public License as published by

View File

@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
// 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
// it under the terms of the GNU General Public License as published by

View File

@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
// 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
// it under the terms of the GNU General Public License as published by

View File

@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
// 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
// it under the terms of the GNU General Public License as published by

View File

@ -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 ^<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 // 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"