diff --git a/.travis.yml b/.travis.yml index dbb73ae115..877f9829bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ deploy: api_key: secure: fkelxNMcGoNY4MT30dEiEUE53cMkhtmr44Y7iSEkOGmfeG9ReUqVIk1nd7027iehzdhhcov57XwHg49KA+AWpQGvEbLkRNRazOxSGFL9o/P/Rzft/tvKP0sxcRF5RUVo0b5J5wlsIKSlbjDqGu9CM+G4eyK0D2jo/XPzsv9akKQ= skip_cleanup: true - file: poedit-1.8.2.tar.gz + file: poedit-1.8.3.tar.gz on: repo: vslavik/poedit tags: true diff --git a/NEWS b/NEWS index 214669eb05..86842be359 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,12 @@ +Version 1.8.3 +------------- + +- Fixed Last-Translator error when creating a new translation from existing POT. +- Fixed bogus "Sources not available" error for single files setups. +- Fixed TM error reporting to prevent rendering the entire UI mostly unusable. + + Version 1.8.2 ------------- diff --git a/Poedit.xcodeproj/project.pbxproj b/Poedit.xcodeproj/project.pbxproj index b205e113de..8609feab36 100644 --- a/Poedit.xcodeproj/project.pbxproj +++ b/Poedit.xcodeproj/project.pbxproj @@ -1678,7 +1678,7 @@ MACOSX_DEPLOYMENT_TARGET = 10.7; ONLY_ACTIVE_ARCH = YES; POEDIT_FEATURES = ""; - POEDIT_VERSION = 1.8.2; + POEDIT_VERSION = 1.8.3; SDKROOT = macosx; WX_DEFINES = "__WXOSX_COCOA__ __WX__ __WXMAC_XCODE__=1 wxUSE_UNICODE_UTF8=0 wxUSE_UNICODE_WCHAR=1"; }; @@ -1733,7 +1733,7 @@ ); MACOSX_DEPLOYMENT_TARGET = 10.7; POEDIT_FEATURES = ""; - POEDIT_VERSION = 1.8.2; + POEDIT_VERSION = 1.8.3; SDKROOT = macosx; WX_DEFINES = "__WXOSX_COCOA__ __WX__ __WXMAC_XCODE__=1 wxUSE_UNICODE_UTF8=0 wxUSE_UNICODE_WCHAR=1"; }; diff --git a/configure.ac b/configure.ac index e96ffd5c3f..d2fa392f5c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,8 +2,8 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([poedit], [1.8.2], [help@poedit.net]) -PACKAGE_SHORT_VERSION=1.8.2 +AC_INIT([poedit], [1.8.3], [help@poedit.net]) +PACKAGE_SHORT_VERSION=1.8.3 AC_SUBST(PACKAGE_SHORT_VERSION) AC_CONFIG_AUX_DIR([admin]) diff --git a/scripts/refresh-pot.sh b/scripts/refresh-pot.sh index 72802a7004..e6ee6d3b38 100755 --- a/scripts/refresh-pot.sh +++ b/scripts/refresh-pot.sh @@ -1,6 +1,6 @@ #!/bin/sh -e -PACKAGE_SHORT_VERSION=1.8.2 +PACKAGE_SHORT_VERSION=1.8.3 [ -n "${WXRC}" ] || WXRC=wxrc diff --git a/src/version.h b/src/version.h index 666be3888d..bed263130a 100644 --- a/src/version.h +++ b/src/version.h @@ -26,7 +26,7 @@ #ifndef _VERSION_H_ #define _VERSION_H_ -#define POEDIT_VERSION "1.8.2" -#define POEDIT_VERSION_WIN 1,8,2 +#define POEDIT_VERSION "1.8.3" +#define POEDIT_VERSION_WIN 1,8,3 #endif // _VERSION_H_ diff --git a/win32/distrib.proj b/win32/distrib.proj index 387c713724..f355d88e4c 100644 --- a/win32/distrib.proj +++ b/win32/distrib.proj @@ -6,7 +6,7 @@ - 1.8.2 + 1.8.3 distrib-$(Configuration)-$(PoeditVersion) http://timestamp.verisign.com/scripts/timstamp.dll diff --git a/win32/poedit.iss b/win32/poedit.iss index fad00ec570..c34635398e 100644 --- a/win32/poedit.iss +++ b/win32/poedit.iss @@ -30,8 +30,8 @@ #include "../" + CONFIG + "/git_build_number.h" -#define VERSION "1.8.2" -#define VERSION_FULL "1.8.2" +#define VERSION "1.8.3" +#define VERSION_FULL "1.8.3" #define VERSION_WIN VERSION + "." + Str(POEDIT_GIT_BUILD_NUMBER) #ifndef CRT_REDIST