init.agi 453 B

1234567891011121314151617181920212223
  1. /*
  2. Memo Apps
  3. A simple memo marking app for ArozOS
  4. */
  5. //Define the launchInfo for the module
  6. var moduleLaunchInfo = {
  7. Name: "Memo",
  8. Desc: "A simple Memo App for ArozOS",
  9. Group: "Office",
  10. IconPath: "Memo/img/small_icon.png",
  11. Version: "0.1.0",
  12. StartDir: "Memo/index.html",
  13. SupportFW: true,
  14. LaunchFWDir: "Memo/index.html",
  15. SupportEmb: false,
  16. InitFWSize: [475, 700]
  17. }
  18. //Register the module
  19. registerModule(JSON.stringify(moduleLaunchInfo));