We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65fc8d8 commit ae99be8Copy full SHA for ae99be8
3 files changed
.gitignore
@@ -10,4 +10,6 @@ release-lab.md
10
__pycache__
11
.idea
12
todo.md
13
-.vscode
+.vscode
14
+dist
15
+build
android_notify/__main__.py
@@ -17,6 +17,7 @@ def main():
17
print_version()
18
# # Placeholder for the main functionality
19
# print("Android Notify CLI is running...")
20
+ # DEV: pip install -e ., when edit and test project locally
21
22
23
if __name__ == "__main__":
android_notify/config.py
@@ -1,7 +1,7 @@
1
import os, traceback
2
3
ON_ANDROID = False
4
-__version__ = "1.60.2(dev)"
+__version__ = "1.60.0"
5
6
def on_flet_app():
7
return os.getenv("MAIN_ACTIVITY_HOST_CLASS_NAME")
0 commit comments