Skip to content

Commit

Permalink
Merge branch 'final-v2-release'
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed Mar 27, 2017
2 parents 0265b9a + 470c263 commit 64a1035
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ deploy:
api_key:
secure: fkelxNMcGoNY4MT30dEiEUE53cMkhtmr44Y7iSEkOGmfeG9ReUqVIk1nd7027iehzdhhcov57XwHg49KA+AWpQGvEbLkRNRazOxSGFL9o/P/Rzft/tvKP0sxcRF5RUVo0b5J5wlsIKSlbjDqGu9CM+G4eyK0D2jo/XPzsv9akKQ=
skip_cleanup: true
file: poedit-2.0beta2.tar.gz
file: poedit-2.0.tar.gz
on:
repo: vslavik/poedit
tags: true
Expand Down
24 changes: 24 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@

Version 2.0
-----------

- Revamped user interface.
- Syntax highlighting for markup and special characters.
- Warnings are now shown for common translation mistakes.
- More robust pre-translation (previous "Fill missing translations from TM").
- "Fuzzy" was renamed "Needs work" thorough to be more accessible to
gettext non-experts.
- xgettext invocation can now be customized on per-file basis.
- Files opened from Crowdin now auto-sync on save.
- New Linux icon.
- Many small improvements all over.


Version 1.8.12
--------------

- Fixed previous msgid display.
- Fixed Find to correctly highlight text with "whole words only" enabled.
- [Windows] Fixed to accelerators and suggestions interaction with selection.
- Poedit now passes --previous to msgmerge.


Version 1.8.11
--------------

Expand Down
4 changes: 2 additions & 2 deletions Poedit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,7 @@
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "-fvisibility=hidden";
POEDIT_FEATURES = "";
POEDIT_VERSION = 2.0beta2;
POEDIT_VERSION = 2.0;
SDKROOT = macosx;
WX_DEFINES = "__WXOSX_COCOA__ __WX__ __WXMAC_XCODE__=1 wxUSE_UNICODE_UTF8=0 wxUSE_UNICODE_WCHAR=1";
};
Expand Down Expand Up @@ -1728,7 +1728,7 @@
LIBRARY_SEARCH_PATHS = "$(DEPS_BUILD_DIR)/icu/lib";
MACOSX_DEPLOYMENT_TARGET = 10.10;
POEDIT_FEATURES = "";
POEDIT_VERSION = 2.0beta2;
POEDIT_VERSION = 2.0;
SDKROOT = macosx;
WX_DEFINES = "__WXOSX_COCOA__ __WX__ __WXMAC_XCODE__=1 wxUSE_UNICODE_UTF8=0 wxUSE_UNICODE_WCHAR=1";
};
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)

AC_INIT([poedit], [2.0beta2], [[email protected]])
AC_INIT([poedit], [2.0], [[email protected]])
PACKAGE_SHORT_VERSION=2.0
AC_SUBST(PACKAGE_SHORT_VERSION)

Expand Down
2 changes: 1 addition & 1 deletion macos/Poedit-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
<key>SUEnableAutomaticChecks</key>
<true/>
<key>SUFeedURL</key>
<string>https://poedit.net/updates/osx/appcast</string>
<string>https://poedit.net/updates_v2/osx/appcast</string>
<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>
<key>UTExportedTypeDeclarations</key>
Expand Down
4 changes: 2 additions & 2 deletions src/edapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,11 +463,11 @@ bool PoeditApp::OnInit()
#endif // USE_SPARKLE

#ifdef __WXMSW__
wxString appcast = "https://poedit.net/updates/win/appcast";
wxString appcast = "https://poedit.net/updates_v2/win/appcast";
if ( CheckForBetaUpdates() )
{
// Beta versions use unstable feed.
appcast = "https://poedit.net/updates/win/appcast/beta";
appcast = "https://poedit.net/updates_v2/win/appcast/beta";
}

win_sparkle_set_appcast_url(appcast.utf8_str());
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef _VERSION_H_
#define _VERSION_H_

#define POEDIT_VERSION "2.0beta2"
#define POEDIT_VERSION "2.0"
#define POEDIT_VERSION_SHORT "2.0"
#define POEDIT_VERSION_WIN 2,0,0

Expand Down
2 changes: 1 addition & 1 deletion win32/poedit.iss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "../" + CONFIG + "/git_build_number.h"

#define VERSION "2.0"
#define VERSION_FULL "2.0beta2"
#define VERSION_FULL "2.0"
#define VERSION_WIN VERSION + "." + Str(POEDIT_GIT_BUILD_NUMBER)

#ifndef CRT_REDIST
Expand Down

0 comments on commit 64a1035

Please sign in to comment.