Skip to content

Commit 5de9438

Browse files
committedSep 30, 2023
Increase version to 3.4, update NEWS
1 parent de65fc5 commit 5de9438

File tree

7 files changed

+17
-8
lines changed

7 files changed

+17
-8
lines changed
 

‎NEWS

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Version 3.4
2+
-----------
3+
4+
- Added support for syncing with Localazy translation platform.
5+
- Updated bundled GNU gettext to 0.22 and added support for its new features.
6+
- Assorted UI improvements/fixes.
7+
- [macOS] Support for macOS 14 Sonoma; dropped support for macOS 10.13.
8+
9+
110
Version 3.3.2
211
-------------
312

‎Poedit.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1867,7 +1867,7 @@
18671867
ONLY_ACTIVE_ARCH = YES;
18681868
OTHER_CFLAGS = "";
18691869
POEDIT_FEATURES = "";
1870-
POEDIT_VERSION = 3.3.2;
1870+
POEDIT_VERSION = 3.4;
18711871
SDKROOT = macosx;
18721872
WX_DEFINES = "__WXOSX_COCOA__ __WX__ __WXMAC_XCODE__=1 wxUSE_UNICODE_UTF8=0 wxUSE_UNICODE_WCHAR=1";
18731873
};
@@ -1939,7 +1939,7 @@
19391939
LLVM_LTO = YES;
19401940
MACOSX_DEPLOYMENT_TARGET = 10.14;
19411941
POEDIT_FEATURES = "";
1942-
POEDIT_VERSION = 3.3.2;
1942+
POEDIT_VERSION = 3.4;
19431943
SDKROOT = macosx;
19441944
WX_DEFINES = "__WXOSX_COCOA__ __WX__ __WXMAC_XCODE__=1 wxUSE_UNICODE_UTF8=0 wxUSE_UNICODE_WCHAR=1";
19451945
};

‎configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
22

33
AC_PREREQ([2.61])
44

5-
AC_INIT([poedit], [3.3.2], [help@poedit.net])
5+
AC_INIT([poedit], [3.4], [help@poedit.net])
66

77
AC_CONFIG_AUX_DIR([admin])
88
AC_CONFIG_MACRO_DIR([admin])

‎snap/snapcraft.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: poedit
2-
version: "3.3.2"
2+
version: "3.4"
33
title: Poedit
44
summary: Simple translation editor
55
description: >

‎src/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#ifndef Poedit_version_h
2727
#define Poedit_version_h
2828

29-
#define POEDIT_VERSION "3.3.2"
30-
#define POEDIT_VERSION_WIN 3,3,2
29+
#define POEDIT_VERSION "3.4"
30+
#define POEDIT_VERSION_WIN 3,4,0
3131

3232
#endif // Poedit_version_h

‎win32/poedit.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
#include "../" + CONFIG + "/git_build_number.h"
3232

33-
#define VERSION "3.3.2"
33+
#define VERSION "3.4"
3434
#define VERSION_WIN VERSION + "." + Str(POEDIT_GIT_BUILD_NUMBER)
3535

3636
#ifndef CRT_REDIST

‎win32/version.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<PoeditVersion>3.3.2</PoeditVersion>
4+
<PoeditVersion>3.4</PoeditVersion>
55
</PropertyGroup>
66
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.