Get build date and time

Is there a way of getting the date and time of when something was built/bundled in Defold?

No, we don’t store that data anywhere. An editor extension could probably be used to collect filenames and timestamps and write those to a file.

1 Like

One way to do this currently is to add a separate settings file to bob.jar: “–settings buildversion.ini” where you set your own specific build data.

Currently, the editor doesn’t support this, so as @britzl says, an editor extension that reads/writes the game.project with a build version number could do it.

1 Like