Skip to content

Commit 4e72c8d

Browse files
committed
Fix Poedit version in refresh-pot.sh
1 parent a99f5fd commit 4e72c8d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

scripts/chversion.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,6 @@ replace_ver macos/poedit.xcconfig \
5050
'\(MARKETING_VERSION = \).*' "\1$VERSION"
5151
replace_ver snap/snapcraft.yaml \
5252
'\(version: \"\).*\("\)' "\1$VERSION\2"
53+
replace_ver scripts/refresh-pot.sh \
54+
'\(POEDIT_VERSION="\).*\("\)' "\1$VERSION\2"
5355
touch macos/Poedit-Info.plist

scripts/refresh-pot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -e
22

3-
PACKAGE_VERSION=2.1
3+
POEDIT_VERSION="3.6"
44

55
[ -n "${WXRC}" ] || WXRC=wxrc
66

@@ -9,7 +9,7 @@ XGETTEXT_ARGS="-C -F \
99
-kwxGETTEXT_IN_CONTEXT:1c,2 -kwxGETTEXT_IN_CONTEXT_PLURAL:1c,2,3 \
1010
--add-comments=TRANSLATORS \
1111
--from-code=UTF-8 \
12-
--package-name=Poedit --package-version=${PACKAGE_VERSION} \
12+
--package-name=Poedit --package-version=${POEDIT_VERSION} \
1313
--msgid-bugs-address=help@poedit.net"
1414

1515

0 commit comments

Comments
 (0)