Skip to content

Commit 2954266

Browse files
committed
release v1.1.0
1 parent 5e38daf commit 2954266

2 files changed

Lines changed: 41 additions & 37 deletions

File tree

README.md

Lines changed: 38 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -8,43 +8,47 @@
88
<img height="360" src="https://lh3.googleusercontent.com/rrMwJB_wtyX9lxw6S6qN2FODG8WulUzMrppWHQ-UNHscoXCVK6wHkGbt5eXiY-dCYNsN"/>
99
<img height="360" src="https://lh3.googleusercontent.com/CkvWjRqI6j7NcYP6s2eK2jpI2-B4MQJMfsmirlvNhqyrzcL_lj_NGUAUVifHmZoGmGs"/>
1010
</p>
11-
12-
# SysctlGUI
13-
11+
12+
# SysctlGUI
13+
14+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d91bf38325aa4bb6b6cb67136f72f1f1)](https://www.codacy.com/gh/Lennoard/SysctlGUI/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=Lennoard/SysctlGUI&amp;utm_campaign=Badge_Grade)
1415
![](https://img.shields.io/github/languages/top/Lennoard/SysctlGUI)
1516
![](https://img.shields.io/github/contributors/Lennoard/SysctlGUI)
1617
![](https://img.shields.io/github/downloads/Lennoard/SysctlGUI/total)
1718
![](https://img.shields.io/github/v/release/Lennoard/SysctlGUI)
18-
![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/Lennoard/SysctlGUI/latest/master)
19-
20-
A GUI application for Android <code>sysctl</code> to edit kernel variables
21-
22-
### Features
23-
- Browse filesystem for specific kernel parameters
24-
- Select parameters from a searchable list
25-
- Information about known parameters
26-
- Load parameters from a configuration file
27-
- Reapply parameters at startup
28-
- Mark parameters as favorite for easy access
29-
30-
### Techlologies
31-
- MVVM for user params
32-
- [Jetpack Data Binding](https://developer.android.com/topic/libraries/data-binding)
33-
- [Jetpack View Binding](https://developer.android.com/topic/libraries/view-binding)
34-
- Lifecycle-aware Kotlin Coroutines
35-
- Dependency injection with [Koin](https://insert-koin.io/)
36-
37-
### Download
19+
![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/Lennoard/SysctlGUI/latest/master)
20+
21+
A GUI application for Android <code>sysctl</code> to edit kernel variables
22+
23+
## Features
24+
- Browse filesystem for specific kernel parameters
25+
- Select parameters from a searchable list
26+
- Information about known parameters
27+
- Load parameters from a configuration file
28+
- Reapply parameters at startup
29+
- Mark parameters as favorite for easy access
30+
31+
## Techlologies
32+
33+
- MVVM for user params
34+
- [Jetpack Data Binding](https://developer.android.com/topic/libraries/data-binding)
35+
- [Jetpack View Binding](https://developer.android.com/topic/libraries/view-binding)
36+
- Lifecycle-aware Kotlin Coroutines
37+
- Dependency injection with [Koin](https://insert-koin.io/)
38+
39+
## Download
40+
3841
<a href='https://apt.izzysoft.de/fdroid/index/apk/com.androidvip.sysctlgui'><img alt='Get it on IzzyOnDroid' height="64" src='https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png'/></a>
39-
<a href='https://play.google.com/store/apps/details?id=com.androidvip.sysctlgui&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' height="64" src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png'/></a>
40-
41-
### License
42-
This project is licensed under the terms of the MIT license.
43-
44-
> Copyright (c) 2019-2021 Lennoard.
45-
>
46-
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
47-
>
48-
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
49-
>
42+
<a href='https://play.google.com/store/apps/details?id=com.androidvip.sysctlgui&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' height="64" src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png'/></a>
43+
44+
## License
45+
46+
This project is licensed under the terms of the MIT license.
47+
48+
> Copyright (c) 2019-2021 Lennoard.
49+
>
50+
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
51+
>
52+
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
53+
>
5054
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.jetbrains.kotlin.config.KotlinCompilerVersion
22
import java.util.Properties
33

4-
val devCycle = true
4+
val devCycle = false
55

66
plugins {
77
id("com.android.application")
@@ -40,8 +40,8 @@ android {
4040
applicationId = "com.androidvip.sysctlgui"
4141
minSdk = 19
4242
targetSdk = 30
43-
versionCode = 9
44-
versionName = "1.0.8"
43+
versionCode = 10
44+
versionName = "1.1.0"
4545
vectorDrawables.useSupportLibrary = true
4646
resourceConfigurations.addAll(listOf("en", "de", "pt-rBR"))
4747
javaCompileOptions {

0 commit comments

Comments
 (0)