Skip to content

Commit

Permalink
Release - 2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
iamrasel committed Sep 8, 2023
1 parent ff5785e commit bdd6e0e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId = "rasel.lunar.launcher"
minSdk = 26
targetSdk = 34
versionCode = 34
versionName = "2.7.2"
versionCode = 35
versionName = "2.8"
}

buildTypes {
Expand Down
7 changes: 2 additions & 5 deletions app/src/main/kotlin/rasel/lunar/launcher/feeds/SystemStats.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ import java.io.BufferedReader
import java.io.File
import java.io.InputStreamReader
import java.io.RandomAccessFile
import java.net.InetAddress
import java.net.NetworkInterface
import java.util.*
import java.util.concurrent.TimeUnit
Expand Down Expand Up @@ -274,10 +273,8 @@ internal class SystemStats {

private fun getIpAddress(getIPv4: Boolean): String {
try {
val interfaces: List<NetworkInterface> = Collections.list(NetworkInterface.getNetworkInterfaces())
for (interFace in interfaces) {
val addresses: List<InetAddress> = Collections.list(interFace.inetAddresses)
for (address in addresses) {
for (interFace in Collections.list(NetworkInterface.getNetworkInterfaces())) {
for (address in Collections.list(interFace.inetAddresses)) {
if (!address.isLoopbackAddress) {
val addressStr = address.hostAddress
val isIPv4 = addressStr!!.indexOf(':') < 0
Expand Down
1 change: 0 additions & 1 deletion fastlane/metadata/android/en-US/changelogs/32.txt

This file was deleted.

6 changes: 6 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/35.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- add animated drawable for splash screen
- add apk share option in app menu
- change string button to icon button in app menu
- add different app drawer layout selection option
- add icon pack support
- string updates and improvements

0 comments on commit bdd6e0e

Please sign in to comment.