Skip to content

Commit

Permalink
v0.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sakethpathike committed Oct 3, 2023
1 parent e210528 commit 41af693
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Linkora is an Android project that focuses on making link organization simpler.
##### Linkora doesn't strictly follow MVVM architecture but uses it where required, at least for now. I'm planning to rewrite a few things; it may then be a proper MVVM-based project, but for now, it has most of the touch of MVVM.

## GitHub Releases
The latest release of Linkora is available on [GitHub Releases](https://github.com/sakethpathike/Linkora/releases/tag/release-v0.2.0). You can download the APK file from there; or [click here](https://github.com/sakethpathike/Linkora/releases/download/release-v0.2.0/Linkora-v0.2.0.apk)
The latest release of Linkora is available on [GitHub Releases](https://github.com/sakethpathike/Linkora/releases/tag/release-v0.2.1). You can download the APK file from there; or [click here](https://github.com/sakethpathike/Linkora/releases/download/release-v0.2.1/Linkora-v0.2.1.apk)

## Screenshots

Expand Down
3 changes: 3 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ android {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
}
}
lintOptions{
checkReleaseBuilds false
}
}

dependencies {
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 6,
"versionName": "0.2.0",
"versionCode": 7,
"versionName": "0.2.1",
"outputFile": "app-release.apk"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,10 @@ fun SettingsScreen(navController: NavController) {
shape = RoundedCornerShape(
bottomEnd = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) 0.dp else 10.dp,
bottomStart = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) 0.dp else 10.dp,
topStart = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) 10.dp else 0.dp,
topEnd = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) 10.dp else 0.dp
topStart = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q || SettingsScreenVM.Settings.shouldDarkThemeBeEnabled.value) 10.dp else 0.dp,
topEnd = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q || SettingsScreenVM.Settings.shouldDarkThemeBeEnabled.value) 10.dp else 0.dp
),
topPadding = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) 20.dp else 1.dp
topPadding = if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q || SettingsScreenVM.Settings.shouldDarkThemeBeEnabled.value) 20.dp else 1.dp
)
}
}
Expand Down Expand Up @@ -340,7 +340,8 @@ fun SettingsScreen(navController: NavController) {
SettingComponent(
settingsUIElement = settingsUIElement,
data = generalSectionData,
isSingleComponent = false
isSingleComponent = false,
forListOfSettings = true,
)
}
item {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SettingsScreenVM : ViewModel() {
val shouldDeleteDialogBoxAppear = mutableStateOf(false)

companion object {
const val currentAppVersion = "0.2.0"
const val currentAppVersion = "0.2.1"
val latestAppInfoFromServer = MutableStateAppInfoDTO(
mutableStateOf(""),
mutableStateOf(""),
Expand Down

0 comments on commit 41af693

Please sign in to comment.