Skip to content

Commit 4d6fa05

Browse files
Bump version to 2.0.0 and update About screen
- Updated `versionCode` to `4` and `versionName` to `2.0.0` in `app/build.gradle.kts`. - Refreshed `AboutScreen.kt`: - Updated version display to `v2.0.0 (Beta)`. - Added new information sections for "Lumir AI" and "Utilities". - Updated "Privacy" section description to include AI interactions. - Adjusted layout spacing and simplified icon imports. - Added IntelliJ IDEA markdown configuration file.
1 parent fa69bac commit 4d6fa05

3 files changed

Lines changed: 33 additions & 11 deletions

File tree

.idea/markdown.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
applicationId = "com.example.intra"
1414
minSdk = 21
1515
targetSdk = 35
16-
versionCode = 3
17-
versionName = "1.0.2"
16+
versionCode = 4
17+
versionName = "2.0.0"
1818

1919
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2020
}

app/src/main/java/com/example/intra/AboutScreen.kt

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ import androidx.compose.foundation.shape.CircleShape
88
import androidx.compose.foundation.verticalScroll
99
import androidx.compose.material.icons.Icons
1010
import androidx.compose.material.icons.automirrored.filled.ArrowBack
11-
import androidx.compose.material.icons.filled.Info
12-
import androidx.compose.material.icons.filled.Lock
13-
import androidx.compose.material.icons.filled.Code
11+
import androidx.compose.material.icons.filled.*
1412
import androidx.compose.material3.*
1513
import androidx.compose.runtime.Composable
1614
import androidx.compose.ui.Alignment
@@ -72,7 +70,7 @@ fun AboutScreen(
7270
)
7371

7472
Text(
75-
text = "v1.0.2 (Beta)",
73+
text = "v2.0.0 (Beta)",
7674
style = MaterialTheme.typography.bodySmall,
7775
color = Color.Gray
7876
)
@@ -83,15 +81,31 @@ fun AboutScreen(
8381
InfoSection(
8482
icon = Icons.Default.Info,
8583
title = "What is Intra?",
86-
body = "Intra is a secure, local network messaging and calling app. It works without internet, keeping your data within your WiFi network."
84+
body = "Intra is a secure, local network messaging and calling app. It works without internet, keeping your data within your WiFi network. Now featuring Lumir AI and advanced system utilities."
85+
)
86+
87+
Divider(modifier = Modifier.padding(vertical = 16.dp))
88+
89+
InfoSection(
90+
icon = Icons.Default.Face,
91+
title = "Lumir AI",
92+
body = "Meet Lumir, your built-in AI assistant. Lumir can help you with tasks, answer questions, and even manage your local files and memories."
93+
)
94+
95+
Divider(modifier = Modifier.padding(vertical = 16.dp))
96+
97+
InfoSection(
98+
icon = Icons.Default.Build,
99+
title = "Utilities",
100+
body = "Integrated tools for network management, file processing, and system optimization directly within the app."
87101
)
88102

89103
Divider(modifier = Modifier.padding(vertical = 16.dp))
90104

91105
InfoSection(
92106
icon = Icons.Default.Lock,
93-
title = "Privacy",
94-
body = "Your messages and calls never leave your local network. No cloud, no tracking."
107+
title = "Privacy First",
108+
body = "Your messages, calls, and AI interactions never leave your local network. No cloud, no tracking, complete privacy."
95109
)
96110

97111
Divider(modifier = Modifier.padding(vertical = 16.dp))
@@ -124,7 +138,7 @@ fun AboutScreen(
124138
fontSize = 12.sp
125139
)
126140

127-
Spacer(Modifier.weight(1f))
141+
Spacer(Modifier.height(16.dp))
128142

129143
Text("Made with ❤️ for LAN", color = Color.Gray, fontSize = 12.sp)
130144
}
@@ -144,4 +158,4 @@ fun InfoSection(icon: androidx.compose.ui.graphics.vector.ImageVector, title: St
144158
Text(body, style = MaterialTheme.typography.bodyMedium, color = MaterialTheme.colorScheme.onSurfaceVariant)
145159
}
146160
}
147-
}
161+
}

0 commit comments

Comments
 (0)