| 1234567891011121314151617181920212223 | /*	Memo Apps	A simple memo marking app for ArozOS*///Define the launchInfo for the modulevar moduleLaunchInfo = {    Name: "Memo",	Desc: "A simple Memo App for ArozOS",	Group: "Office",	IconPath: "Memo/img/small_icon.png",	Version: "0.1.0",	StartDir: "Memo/index.html",	SupportFW: true,	LaunchFWDir: "Memo/index.html",	SupportEmb: false,	InitFWSize: [475, 700]}//Register the moduleregisterModule(JSON.stringify(moduleLaunchInfo));
 |