-
Notifications
You must be signed in to change notification settings - Fork 51
Add simple calendar application #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ThomasFarstrike
merged 20 commits into
MicroPythonOS:main
from
pavelmachek:m_2_calendar
Feb 14, 2026
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
901670b
cal: initial version
pavelmachek 91ef5e9
cal: hacks to get more functionality working
pavelmachek 287bb88
cal: Disable file output for now
pavelmachek 0ee5fe4
cal: Got button mapping to work
pavelmachek b0f02f0
cal: tweak power and size
pavelmachek 15f6c39
cal: Tweak layouts
pavelmachek 91964b8
cal: got events to display
pavelmachek e0c0b53
cal: single day addition now works
pavelmachek 24dce40
cal: got file i/o to work
pavelmachek 6e2d79e
cal: Layout tweaks
pavelmachek 15f90f0
cal: Tweak add dialog
pavelmachek c3ea991
calendar/columns: start separate apps for them
pavelmachek 667a22c
calendar: open keyboard
pavelmachek 908b6a3
calendar: make keyboard fit on small screen
pavelmachek 3285fc0
calendar: better metadata for calendar
pavelmachek bfe3d82
calendar: more metadata tweaks
pavelmachek d78a443
calendar: revert hello tweaks
pavelmachek 5bfa2f7
calendar: revert columns changes.
pavelmachek 40ed95a
calendar: remove manifest from columns
pavelmachek ca39141
calendar: attempt to fix MANIFEST
pavelmachek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
internal_filesystem/apps/cz.ucw.pavel.calendar/META-INF/MANIFEST.JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| { | ||
| "name": "Calendar", | ||
| "publisher": "micropythonos", | ||
| "short_description": "Calendar", | ||
| "long_description": "Simple calendar app.", | ||
| "icon_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.columns/icons/cz.ucw.pavel.columns_0.0.1_64x64.png", | ||
| "download_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.columns/mpks/cz.ucw.pavel.columns_0.0.1.mpk", | ||
| "fullname": "cz.ucw.pavel.columns", | ||
| "version": "0.0.1", | ||
| "category": "utilities", | ||
| "activities": [ | ||
| { | ||
| "entrypoint": "assets/main.py", | ||
| "classname": "Main", | ||
| "intent_filters": [ | ||
| { | ||
| "action": "main", | ||
| "category": "utilities" | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be:
"category": "launcher"as it pertains to that entrypoint. The other category of the app itself is fine.I realize now that this format isn't well documented, it should be explained line by line somewhere...