Skip to content

Commit 9e32579

Browse files
committed
Merge branch 'develop' into feature/v2ray
2 parents 92900dd + 7b93641 commit 9e32579

51 files changed

Lines changed: 100 additions & 1526 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ACKNOWLEDGEMENTS.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,31 +1054,6 @@ THE SOFTWARE.
10541054
limitations under the License.
10551055

10561056

1057-
## sentry-android
1058-
1059-
MIT License
1060-
1061-
Copyright (c) 2019 Sentry
1062-
Copyright (c) 2015 Salomon BRYS for Android ANRWatchDog
1063-
1064-
Permission is hereby granted, free of charge, to any person obtaining a copy
1065-
of this software and associated documentation files (the "Software"), to deal
1066-
in the Software without restriction, including without limitation the rights
1067-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1068-
copies of the Software, and to permit persons to whom the Software is
1069-
furnished to do so, subject to the following conditions:
1070-
1071-
The above copyright notice and this permission notice shall be included in all
1072-
copies or substantial portions of the Software.
1073-
1074-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1075-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1076-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1077-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1078-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1079-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1080-
SOFTWARE.
1081-
10821057

10831058
## slf4j
10841059

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,33 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## Version 2.10.10 - 2024-08-20
6+
7+
[FIXED] Crash when using Network Protection
8+
[FIXED] Crash when using the Update button
9+
[FIXED] Connect VPN using the Quick Settings tile
10+
[NOTE] Removed option to report crash logs with Sentry
11+
12+
[Download IVPN Client v2.10.10](https://www.ivpn.net/releases/android/IVPNv2.10.10site.apk)
13+
SHA256: 484ede3adabda94bc78768d3f3b1dc12732cbb76eb886216bc693850a469f5fe
14+
15+
## Version 2.10.9 - 2024-08-08
16+
17+
[IMPROVED] Target Android API level 34
18+
[FIXED] 2FA login not working when session limit is reached
19+
20+
[Download IVPN Client v2.10.9](https://www.ivpn.net/releases/android/IVPNv2.10.9site.apk)
21+
SHA256: cd68f954ec349277bec818988c57494a7f64f4447d0c5804607c95977a1b1db2
22+
23+
## Version 2.10.8 - 2024-06-03
24+
25+
[IMPROVED] Post-Quantum library updated to the latest version
26+
[IMPROVED] Support for pending payments
27+
[NOTE] Removed support for Android 7.0 and older
28+
29+
[Download IVPN Client v2.10.8](https://www.ivpn.net/releases/android/IVPNv2.10.8site.apk)
30+
SHA256: 5f3de49a59b80f06087f440d3e7d939d2f815d7ba944a1a75c90a20e447865cd
31+
532
## Version 2.10.7 - 2024-02-12
633

734
[NEW] Device Management

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ Project dependencies:
4242
* [retrofit2](https://github.com/square/retrofit)
4343
* [gson](https://github.com/google/gson)
4444
* [streamsupport](https://github.com/streamsupport/streamsupport)
45-
* [sentry-android](https://github.com/getsentry/sentry-java)
4645
* [slf4j](https://github.com/qos-ch/slf4j)
4746
* [logback-android](https://github.com/tony19/logback-android)
4847
* [mockito](https://github.com/mockito/mockito)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
buildscript {
44
ext.kotlin_version = '1.8.0'
55
ext.kotlin_coroutines_version = '1.2.1'
6-
ext.nav_version = '2.5.0'
6+
ext.nav_version = '2.5.3'
77
ext.compose_version = '1.4.1'
88
ext.dagger_version = '2.44'
99
repositories {

core/build.gradle

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ android {
2626
}
2727
}
2828

29-
compileSdkVersion 33
29+
compileSdkVersion 34
3030
defaultConfig {
3131
minSdkVersion 23
32-
targetSdkVersion 33
33-
versionCode 130
34-
versionName "2.10.7"
32+
targetSdkVersion 34
33+
versionCode 135
34+
versionName "2.10.10"
3535
ndkVersion "25.1.8937393"
3636

3737
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -289,8 +289,6 @@ dependencies {
289289
// V2Ray
290290
implementation project(path: ':v2ray')
291291

292-
// For crash logging.
293-
implementation 'io.sentry:sentry-android:4.3.0'
294292
implementation "androidx.multidex:multidex:2.0.1"
295293
}
296294

core/src/androidTest/java/net/ivpn/core/SecureStorageTest.java

Lines changed: 0 additions & 63 deletions
This file was deleted.

core/src/androidTest/java/net/ivpn/core/common/ProfileStorageTest.java

Lines changed: 0 additions & 27 deletions
This file was deleted.

core/src/androidTest/java/net/ivpn/core/common/prefs/PreferenceContentGenerator.java

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)