Skip to content

Commit

Permalink
Fixed Issue #201
Browse files Browse the repository at this point in the history
  • Loading branch information
konradrenner committed Oct 16, 2020
1 parent b57dd16 commit 7764387
Show file tree
Hide file tree
Showing 16 changed files with 316 additions and 107 deletions.
2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
8 changes: 1 addition & 7 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/kolabnotes-android.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

117 changes: 34 additions & 83 deletions app/app.iml → .idea/modules/app/kolabnotes-android.app.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/modules/kolabnotes-android.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

You can also have a look on the GitHub release page: https://github.com/konradrenner/kolabnotes-android/releases

## [4.2.0] - 2020-10-16
### Added
- Brazilian Portuguese translation (thanks to RickyM7!)
### Changed
- GitHub issue 201 : Disable shared notebooks by default

## [4.1.0] - 2020-09-29
### Added
- Turkish translation (thanks to Fahrettin Vardım!)
Expand Down Expand Up @@ -112,7 +118,8 @@ You can also have a look on the GitHub release page: https://github.com/konradre
### Fixed
- First stable release, support for all major features of the Kolab notes format

[Unreleased]: https://github.com/konradrenner/kolabnotes-android/compare/4.1.0...HEAD
[Unreleased]: https://github.com/konradrenner/kolabnotes-android/compare/4.2.0...HEAD
[4.2.0]: https://github.com/konradrenner/kolabnotes-android/compare/4.1.0...4.2.0
[4.1.0]: https://github.com/konradrenner/kolabnotes-android/compare/4.0.1...4.1.0
[4.0.1]: https://github.com/konradrenner/kolabnotes-android/compare/3.2.1...4.0.1
[4.0.0]: https://github.com/konradrenner/kolabnotes-android/compare/3.2.1...4.0.0
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "org.kore.kolabnotes.android"
minSdkVersion 16
targetSdkVersion 29
versionCode 103
versionName "4.1.0"
versionCode 104
versionName "4.2.0"

//Running test
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,13 +439,13 @@ private void setKolabNowValues(){
mPortView.setText("993");
mEnableSSLView.setChecked(true);
mKolabView.setChecked(true);
mSharedFoldersView.setChecked(true);
mSharedFoldersView.setChecked(false);
mIMAPServerView.setText("imap.kolabnow.com");
}

private void setKolabValues(){
mKolabView.setChecked(true);
mSharedFoldersView.setChecked(true);
mSharedFoldersView.setChecked(false);
mIMAPServerView.setText("");
}

Expand Down
Loading

0 comments on commit 7764387

Please sign in to comment.