Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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

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).

Thx for clarification! Bummer there is no repeat, I wanted the calendar primary for storing Birthdays