{ "name": "Test Program", "icon": "TP", "desc": "A test program that displays the OS version.", "id": "test-program", "globalID": "GopalOS.TestProgram", "defaultRelease": "stable", "releases": { "stable": { "version": "v1.0.0", "app-files": { "test-program": { type: "pgm", content: function() { msgbox(`Hello world! Your OS version is ${getRef("/version")}.`, "Test Program"); } } } }, "beta": { "version": "v1.0.0-beta", "app-files": { "test-program": { type: "pgm", content: function() { msgbox(`Hello world! Your OS version is ${getRef("/version")}. Unstable.`, "Test Program (BETA)"); } } } }, "bleeding-edge": { "version": "v1.0.0-build0B133D", "app-files": { "test-program": { type: "pgm", content: function() { msgbox(`Hello world! Your OS version is ${getRef("/version")}. You're on the bleeding edge...`, "Test Program (BLEEDING-EDGE)"); } } } } } }