Skip to content

Commit aebc8d6

Browse files
authored
feat(ui): add about page and improve note screen
The above pr implements the features: Aligns the notes vertically for better viewing toggle to switch between dark,light and system default modes. a black theme suitable for amoled displays - #12 about page for users to view the version number and the source code -#11 Adds one feature requested by the user for keyboard activation when any part of the content area is clicked-#10
2 parents dd61001 + aafeeae commit aebc8d6

36 files changed

+1776
-1250
lines changed

.idea/caches/deviceStreaming.xml

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

.idea/deploymentTargetSelector.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

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

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11

2-
# 📝 OpenNotes [<img src="https://shields.rbtlog.dev/simple/com.opennotes" alt="RB Status" height="80">](https://shields.rbtlog.dev/com.opennotes)
2+
# OpenNotes [<img src="https://shields.rbtlog.dev/simple/com.opennotes" alt="RB Status" height="80">](https://shields.rbtlog.dev/com.opennotes)
3+
4+
**A simple note-taking app.**
5+
6+
7+
## Built using
8+
> [<img src="https://ziadoua.github.io/m3-Markdown-Badges/badges/Android/android2.svg">]()
9+
> [<img src="https://ziadoua.github.io/m3-Markdown-Badges/badges/AndroidStudio/androidstudio3.svg">]()
10+
> [<img src="https://ziadoua.github.io/m3-Markdown-Badges/badges/Kotlin/kotlin2.svg">]()
311
4-
**OpenNotes** is a modern, lightweight, and privacy-respecting note-taking app built with **Jetpack Compose**, following **MVVM** and **Clean Architecture** principles. The app is 100% offline and open source.
512

613
## ✨ Features
714

@@ -17,14 +24,14 @@ Perfect for students, professionals, and anyone who needs to jot down ideas, rem
1724

1825
---
1926

20-
## 📥 Get It From
27+
## Get from
2128

2229
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/packages/com.opennotes)
2330
[<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="Get it on IzzyOnDroid" height="80">](https://apt.izzysoft.de/fdroid/index/apk/com.opennotes)
31+
[<img src="https://github.com/vishal2376/snaptick/assets/38159691/f502e2ec-dbf4-4ed6-b23f-a47b74080fea" height="80">](https://github.com/Fandroid745/Open-notes/releases)
2432

2533

2634

27-
- 📥 **GitHub Releases**: Download the latest `.apk` from the [Releases](https://github.com/Fandroid745/Open-notes/releases) page
2835

2936
---
3037

@@ -33,7 +40,7 @@ Contributions are welcome! Your help in making OpenNotes better is appreciated.
3340
Please open an issue before submitting a pull request that adds a new feature, so it can be discussed first.
3441
All changes should be committed to the dev branch, not master.
3542

36-
## 🛡️ License
43+
## License
3744

3845
This project is licensed under the terms of the **GNU General Public License v3.0**.
3946

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ android {
1111

1212
defaultConfig {
1313
applicationId "com.opennotes"
14-
minSdk 24
15-
targetSdk 35
16-
versionCode 6
17-
versionName "1.3.2"
14+
minSdk 26
15+
targetSdk 36
16+
versionCode 7
17+
versionName "1.3.3"
1818

1919
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2020
vectorDrawables {

app/release/app-release.apk

-513 KB
Binary file not shown.
0 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.

app/release/output-metadata.json

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,27 @@
1111
"type": "SINGLE",
1212
"filters": [],
1313
"attributes": [],
14-
"versionCode": 4,
15-
"versionName": "1.3",
14+
"versionCode": 6,
15+
"versionName": "1.3.2",
1616
"outputFile": "app-release.apk"
1717
}
1818
],
19-
"elementType": "File"
19+
"elementType": "File",
20+
"baselineProfiles": [
21+
{
22+
"minApi": 28,
23+
"maxApi": 30,
24+
"baselineProfiles": [
25+
"baselineProfiles/1/app-release.dm"
26+
]
27+
},
28+
{
29+
"minApi": 31,
30+
"maxApi": 2147483647,
31+
"baselineProfiles": [
32+
"baselineProfiles/0/app-release.dm"
33+
]
34+
}
35+
],
36+
"minSdkVersionForDexing": 24
2037
}

app/src/main/java/com/opennotes/di/AppModule.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import dagger.hilt.InstallIn
2424
import dagger.hilt.components.SingletonComponent
2525
import javax.inject.Singleton
2626

27-
2827
@Module
2928
@InstallIn(SingletonComponent::class)
3029
object AppModule {

0 commit comments

Comments
 (0)