Skip to content

Commit

Permalink
Releasing version 4.1.3 (290)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniele Ricci <[email protected]>
  • Loading branch information
daniele-athome committed Jan 17, 2018
1 parent b1cdeab commit 738e175
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 10 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## [4.1.3] - 2018-01-17
### Changed
- Image preview in notifications (#56)
- Play sound in open chats (#75)
- Support for Android 6 runtime permissions (#617)
- Direct reply for older Android versions (#1001)
- User name in group messages (#1122)

### Fixed
- Fix error exporting personal key (#1111)
- Fix crash for older Android versions (#1114)
- Fix emoji problem in tablets (#1115)
- Fix upload progress stuck at 100% (#1116)
- Fix CPU eating problem during download/upload (#1117)
- Fix wrong sender in contextual reply (#1118)
- Fix problem on crappy firmwares (#1119)
- Fix performance problem on very big address books (#1120)
- Fix QR codes inside viewport (#1131)

## [4.1.2] - 2017-12-06
### Changed
- Contextual reply (#594)
Expand Down
10 changes: 6 additions & 4 deletions app/src/main/play/en-US/whatsnew
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
This release features our new registration provider kindly offered by https://JMP.Chat
Help us improve and fix bugs by reporting them on GitHub or discussing them on our forum: https://forum.kontalk.org

* NEW: contextual reply
* workaround bootloop firmware bug for some devices
* fix delayed delivery receipts issue
* other bugfixes
* NEW: image preview in notifications
NEW: play sound in open chats
* support for Android runtime permissions
* direct reply for older Android versions
* fix emoji problem in tablets
* a lot of bugfixes
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ allprojects {
evaluationDependsOn ":client-common-java"
ext {
applicationId = 'org.kontalk'
versionCode = 281
versionName = '4.1.2-next'
versionCode = 290
versionName = '4.1.3'
minSdkVersion = 15
targetSdkVersion = 23
compileSdkVersion = 27
Expand Down
2 changes: 1 addition & 1 deletion dist/google_play.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"full_description": "<b>Please help us making Kontalk better! E-mail us at [email protected] if you have any issues!! Leaving a negative review won't help a non-profit project! Thank you!</b>\n<i>NOTE: DO NOT INSTALL ON SD CARD!</i>\n\n<b>Follow @kontalknet on Twitter or identi.ca to keep up to date with the latest changes and on service status!</b>\n\nKontalk is a secure instant messenger, allowing you to send and receive text, image and voice messages (other file types coming soon) to and from other Kontalk users completely free of charge (*).\n\n&#8226;&#8195; <b>Your phone number is your ID.</b> No usernames or passwords<br/>\n&#8226;&#8195; <b>It automatically finds other Kontalk users</b> by looking at your address book, making it even easier to start chatting on Kontalk with your friends<br/>\n&#8226;&#8195; <b>End-to-end encryption</b> ensures safe and private conversations, so that only you and the person you are talking to can read them<br/>\n&#8226;&#8195; Your and all phone numbers used on the network are irreversibly encrypted<br/>\n&#8226;&#8195; It supports multiple devices, making it very easy to start chatting on your phone and continue the conversation on your tablet<br/>\n&#8226;&#8195; Based on open standards: XMPP and OpenPGP\n\nKontalk is a completely Open Source community project, with all the source code hosted on GitHub (https://github.com/kontalk), allowing everyone to inspect its security and improve it.\nThe network relies on community donations to keep the infrastructure running, so if you can, please donate on http://kontalk.net/. Even small donations matter.\n\nYou can find all permissions used by the app explained at this page: https://github.com/kontalk/androidclient/wiki/Android-client-permissions\n\n(*) Carrier fees for Internet traffic may apply",
"recent_changes": "This release features our new registration provider kindly offered by https://JMP.Chat\nHelp us improve and fix bugs by reporting them on GitHub or discussing them on our forum: https://forum.kontalk.org\n\n* NEW: contextual reply\n* workaround bootloop firmware bug for some devices\n* fix delayed delivery receipts issue\n* other bugfixes",
"recent_changes": "This release features our new registration provider kindly offered by https://JMP.Chat\nHelp us improve and fix bugs by reporting them on GitHub or discussing them on our forum: https://forum.kontalk.org\n\n* NEW: image preview in notifications\nNEW: play sound in open chats\n* support for Android runtime permissions\n* direct reply for older Android versions\n* fix emoji problem in tablets\n* a lot of bugfixes",
"short_description": "A new way of communicating: community-driven instant messaging network.",
"title": "Kontalk Messenger"
}
6 changes: 3 additions & 3 deletions utils/git-release
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ cmd_begin() {
echo

echo "Setting version code and name"
sed -i "s/appVersionCode = .*$/appVersionCode = ${VERSION_CODE}/" ${REPO_DIR}/build.gradle
sed -i "s/appVersionName = '.*'$/appVersionName = '${VERSION_NAME}'/" ${REPO_DIR}/build.gradle
sed -i "s/versionCode = .*$/versionCode = ${VERSION_CODE}/" ${REPO_DIR}/build.gradle
sed -i "s/versionName = '.*'$/versionName = '${VERSION_NAME}'/" ${REPO_DIR}/build.gradle
echo

echo "Building release packages"
Expand All @@ -123,7 +123,7 @@ cmd_continue() {
check_stage 1 || exit 1

# extract supposed version from build script
VERSION_NAME=$(grep appVersionName build.gradle | sed "s/ *appVersionName = '\(.*\)'$/\1/")
VERSION_NAME=$(grep versionName build.gradle | sed "s/ *versionName = '\(.*\)'$/\1/")
BRANCH="release/${VERSION_NAME}"
check_branch ${BRANCH} || exit 1

Expand Down

0 comments on commit 738e175

Please sign in to comment.