Skip to content

Commit 752b0eb

Browse files
author
LeanBitLab
committed
chore(release): version 1.4 + new icon + license update
1 parent 91a5438 commit 752b0eb

50 files changed

Lines changed: 1095 additions & 322 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ state the exclusion of warranty; and each file should have at least
633633
the "copyright" line and a pointer to where the full notice is found.
634634

635635
<one line to give the program's name and a brief idea of what it does.>
636-
Copyright (C) <year> <name of author>
636+
Copyright (C) 2026 LeanBitLab
637637

638638
This program is free software: you can redistribute it and/or modify
639639
it under the terms of the GNU General Public License as published by
@@ -653,7 +653,7 @@ the "copyright" line and a pointer to where the full notice is found.
653653
If the program does terminal interaction, make it output a short
654654
notice like this when it starts in an interactive mode:
655655

656-
<program> Copyright (C) <year> <name of author>
656+
<program> Copyright (C) 2026 LeanBitLab
657657
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
658658
This is free software, and you are welcome to redistribute it
659659
under certain conditions; type `show c' for details.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
<td><img src="docs/images/1.png" height="500" alt="Screenshot 1"/></td>
1818
<td><img src="docs/images/2.png" height="500" alt="Screenshot 2"/></td>
1919
<td><img src="docs/images/3.png" height="500" alt="Screenshot 3"/></td>
20+
</tr>
21+
<tr>
2022
<td><img src="docs/images/4.png" height="500" alt="Screenshot 4"/></td>
23+
<td><img src="docs/images/5.png" height="500" alt="Screenshot 5"/></td>
2124
</tr>
2225
</table>
2326

@@ -26,9 +29,13 @@
2629
- **Material You**: Full dynamic color support.
2730
- **Configurable**: Adjust text sizes and visibility for all elements.
2831
- **Essential Info**: Time, Date, Battery, Device Temp, and Calendar Events.
32+
- **Task Integration**: Manage your tasks directly from the widget.
33+
- **Daily Data Usage**: Monitor your daily data consumption.
34+
- **Custom Formats**: Choose your preferred Time and Date formats.
2935
- **Light/Dark Mode**: Optimized contrast for readability.
3036
- **Privacy Focused**: No internet permission required.
3137
- **Glow Effect**: Multiple layers of transparency for a smooth outline glow.
38+
- **Improved Settings**: Refined settings interface for better usability.
3239

3340
## Download
3441

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
applicationId = "com.leanbitlab.lwidget"
1515
minSdk = 26
1616
targetSdk = 34
17-
versionCode = 4
18-
versionName = "1.3"
17+
versionCode = 5
18+
versionName = "1.4"
1919
}
2020

2121
signingConfigs {

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<uses-permission android:name="android.permission.ALARM_LISTENER" />
55
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
66
<uses-permission android:name="android.permission.READ_CALENDAR" />
7+
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" tools:ignore="ProtectedPermissions" />
78

89
<!-- Required for Android 11+ (API 30) to see these packages -->
910
<queries>
@@ -50,6 +51,7 @@
5051
android:exported="true">
5152
<intent-filter>
5253
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
54+
<action android:name="android.intent.action.BOOT_COMPLETED" />
5355
<action android:name="com.leanbitlab.lwidget.ACTION_BATTERY_UPDATE" />
5456
</intent-filter>
5557
<meta-data

app/src/main/java/com/leanbitlab/lwidget/AwidgetProvider.kt

Lines changed: 174 additions & 55 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)