Read the statement by Michael Teeuw here.
MMM-MyTasklist
-
MMM-MyTasklist
This a module for Magic Mirror².
This displays a simple Tasklist, you can update through a web frontend.
Installation
Clone this repository in your modules folder, and install dependencies:
cd ~/MagicMirror/modules git clone https://github.com/htilburgs/MMM-MyTasklist.git cd MMM-MyTasklist npm installUpdate
When you need to update this module:
cd ~/MagicMirror/modules/MMM-MyTasklist git pull npm installConfiguration
Go to the MagicMirror/config directory and edit the config.js file.
Add the module to your modules array in your config.js.{ module: "MMM-MyTasklist", position: "top_left", header: "MyTaskList", disabled: false, config: { tasksFile: "modules/MMM-MyTasklist/tasks.json", updateInterval: 300000, showCompleted: true, maxTasks: null } },Load Webinterface for updating the Tasklist
Open a browser and type
http://serverip address:8448
So if for example you’re MagicMirror is on 192.168.0.48 then you go tohttp://192.168.0.48:8448
The Webinterface for MyTasklist will be loaded and you will be able to:- choose language for the Webinterface
- add tasks
- complete tasks
- delete tasks
- edit tasks
- move the order from tasks by drag-and-drop
- filter on all, active or done tasks
All the updates are instantly published on your Mirror
NOTE:
With a touchscreen you’re able to check the checkboxes on the Mirror to complete the task.
All these changes are instantly published to the WebinterfaceVersions
v1.0.0 - Initial release
v1.1.0 - Update Look & Feel
v1.1.1 - Change Webinterface port from 8123 to 8448
v1.2.0 - Add possibility to edit the tasks in the Webinterface -
@htilburgs Really nice and useful. Great job!
-
@htilburgs you might consider changing the port number. HomeAssistant uses 8123
so both on the same machine will collide -
@sdetweil
Oké, I didn’t know. Let me see in an hour.
Is there a rule for the Ports? Which I can use or not use? -
@chrisfr1976
Thank you 👍 -
@htilburgs none that I know of. Anything 8000 and above is ‘free’ of system requirements.
-
@htilburgs said in MMM-MyTasklist:
Is there a tule for the Ports? Which I can use or not use?
you could add a config param for the port so that everyone who collides with 8123 could choose another one without hacking the source code
-
@karsten13
I know that is an option. The fast fix now is that I have changed the port to 8448 -
I Just published v1.2.0
This is an update with EDIT possibility in the Webinterface
