diff -Nru converseen-0.8.2~trusty0/converseen.rc converseen-0.8.3~trusty0/converseen.rc --- converseen-0.8.2~trusty0/converseen.rc 2014-08-20 11:42:42.000000000 +0000 +++ converseen-0.8.3~trusty0/converseen.rc 2014-08-27 20:47:57.000000000 +0000 @@ -60,8 +60,8 @@ // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,8,0,0 - PRODUCTVERSION 0,8,0,0 + FILEVERSION 0,8,3,0 + PRODUCTVERSION 0,8,3,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -79,13 +79,13 @@ VALUE "Comments", "The batch image converter and resizer" VALUE "CompanyName", "Faster" VALUE "FileDescription", "Converseen - The batch converter and resizer" - VALUE "FileVersion", "0.8.0.0" + VALUE "FileVersion", "0.8.3.0" VALUE "InternalName", "Converseen" VALUE "LegalCopyright", "(C) 2009 - 2014 Francesco Mondello GNU - GPL" VALUE "LegalTrademarks", "(C) 2009 - 2014 Francesco Mondello GNU - GPL" VALUE "OriginalFilename", "converseen.exe" VALUE "ProductName", "Converseen" - VALUE "ProductVersion", "0.8.0.0" + VALUE "ProductVersion", "0.8.3.0" END END BLOCK "VarFileInfo" diff -Nru converseen-0.8.2~trusty0/debian/changelog converseen-0.8.3~trusty0/debian/changelog --- converseen-0.8.2~trusty0/debian/changelog 2014-08-20 13:19:37.000000000 +0000 +++ converseen-0.8.3~trusty0/debian/changelog 2014-08-28 06:46:30.000000000 +0000 @@ -1,4 +1,10 @@ -converseen (0.8.2~trusty0-1) trusty; urgency=low +converseen (0.8.3~trusty0-1) trusty; urgency=low + + * various bug fixes + + -- pandajim (key for lives deb) Thu, 6 Feb 2014 13:17:13 +0800 + +converseen (0.8.2~utopic0-1) utopic; urgency=low * Added code fixes to work with FreeBSD (Check the download link here) * Fixed a bug with PDF files conversion diff -Nru converseen-0.8.2~trusty0/src/formats.cpp converseen-0.8.3~trusty0/src/formats.cpp --- converseen-0.8.2~trusty0/src/formats.cpp 2014-08-20 11:42:42.000000000 +0000 +++ converseen-0.8.3~trusty0/src/formats.cpp 2014-08-27 20:47:57.000000000 +0000 @@ -36,7 +36,7 @@ void Formats::loadFormats() { -#ifdef Q_OS_LINUX || Q_OS_FREEBSD +#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) list coderList; coderInfoList(&coderList, CoderInfo::TrueMatch, diff -Nru converseen-0.8.2~trusty0/src/globals.h converseen-0.8.3~trusty0/src/globals.h --- converseen-0.8.2~trusty0/src/globals.h 2014-08-20 11:42:42.000000000 +0000 +++ converseen-0.8.3~trusty0/src/globals.h 2014-08-27 20:47:57.000000000 +0000 @@ -29,8 +29,8 @@ namespace globals { const QString PROGRAM_NAME = "Converseen"; - const int CURRENT_INTERNAL_VERSION = 820; - const QString VERSION = "0.8.2"; + const int CURRENT_INTERNAL_VERSION = 830; + const QString VERSION = "0.8.3"; } #endif // GLOBALS_H