Hello, I am considering this app as it reminds me of my old Psion, but is there any method to populate the contacts and calendar other the from the device itself? Like editing a csv or something. Thx
Viewing post in Pocket Planner for Panic Playdate comments
Hey, all app data are kept as JSON files. You can edit it easily with a text editor like VS Code or Notepad++. You just need to connect Playdate in data mode. The format of data is not documented, but when you add one item to the app, then it will have an example to follow. For example. Events look like this
{
"createdAt":734261931,
"date": {
"day":8,
"month":4,
"year":2023
},
"id":"AQSJMJPJENPW",
"repeat":1,
"title":"Pocket Planner v3"
}
(with a note that “repeat” is not used/implemented).