1
0
Fork 0
BangleApps/apps/todolist
Gordon Williams 6ff61b917e Add saveFile function, and ensure it uses data: URI not blobs (because they don't work in Gadgetbridge)
Reduce duplication to make custom/interface use .saveFile where possible (avoiding Blob)
2023-09-14 12:43:38 +01:00
..
ChangeLog
README.md Add UI for the TodoList app 2022-03-26 18:40:11 +01:00
app-icon.js
app.js
app.png
interface.html Add saveFile function, and ensure it uses data: URI not blobs (because they don't work in Gadgetbridge) 2023-09-14 12:43:38 +01:00
metadata.json Add UI for the TodoList app 2022-03-26 18:40:11 +01:00
screenshot1.png
screenshot2.png
screenshot3.png
screenshot4.png Add UI for the TodoList app 2022-03-26 18:40:11 +01:00

README.md

Todo List

This is a simple Todo List application.
The content is loaded from a JSON file.
A task can be marked as completed or uncompleted.

Once installed, the list can be modified via the Download data from app icon in the Bangle.js App Store (TodoList app).

JSON file content example:

[
  {
    "name": "Pro",
    "children": [
      {
        "name": "Read doc",
        "done": true,
        "children": []
      }
    ]
  },
  {
    "name": "Pers",
    "children": [
      {
        "name": "Grocery",
        "children": [
          {
            "name": "Milk",
            "done": false,
            "children": []
          },
          {
            "name": "Eggs",
            "done": false,
            "children": []
          },
          {
            "name": "Cheese",
            "done": false,
            "children": []
          }
        ]
      },
      {
        "name": "Workout",
        "done": false,
        "children": []
      },
      {
        "name": "Learn Rust",
        "done": false,
        "children": []
      }
    ]
  }
]