Skip to content

Commit 6025235

Browse files
committed
V1.61: Fixed Vibrate Feature, setObeyUserClear - don't show new updates after users clear from tray, setOnlyAlertOnce - to control notifcation heads-up, Fixed overwriting old notifications on app restart, Removed all depreceted stuff
1 parent b47a9a4 commit 6025235

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ android.api = 35
8181
```toml
8282
[tool.flet.android]
8383
dependencies = [
84-
"pyjnius","android-notify==1.60.10.dev0"
84+
"pyjnius","android-notify==1.61.0.dev0"
8585
]
8686

8787
[tool.flet.android.permission]
@@ -108,15 +108,15 @@ android-notify -v
108108
------
109109
## Installing without Androidx
110110
How to use without `gradle_dependencies`
111-
Use `android-notify==1.60.10.dev0` to install via `pip`
111+
Use `android-notify==1.61.0.dev0` to install via `pip`
112112

113113
<details>
114114
<summary><b>In Kivy</b></summary>
115115
<br/>
116116

117117
```ini
118118
# buildozer.spec
119-
requirements = python3, kivy, pyjnius, android-notify==1.60.10.dev0
119+
requirements = python3, kivy, pyjnius, android-notify==1.61.0.dev0
120120
```
121121

122122
</details>
@@ -127,10 +127,10 @@ requirements = python3, kivy, pyjnius, android-notify==1.60.10.dev0
127127
<br/>
128128

129129
On the [pydroid 3](https://play.google.com/store/apps/details?id=ru.iiec.pydroid3) mobile app for running python code you can test some features.
130-
- In pip section where you're asked to insert `Libary name` paste `android-notify==1.60.10.dev0`
130+
- In pip section where you're asked to insert `Libary name` paste `android-notify==1.61.0.dev0`
131131
- Minimal working example
132132
```py
133-
# Testing with `android-notify==1.60.10.dev0` on pydroid
133+
# Testing with `android-notify==1.61.0.dev0` on pydroid
134134
from kivy.app import App
135135
from kivy.uix.boxlayout import BoxLayout
136136
from kivy.uix.button import Button

android_notify/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = "1.60.10"
3+
__version__ = "1.61.0"
44

55
from .internal.java_classes import autoclass, cast, NotificationManager
66
from .internal.logger import logger

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "android-notify"
7-
version = "1.60.10"
7+
version = "1.61.0"
88
description = "A Python package that simplifies creating Android notifications in Kivy and Flet apps."
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
authors = [

0 commit comments

Comments
 (0)