init.agi 503 B

1234567891011121314151617181920212223242526
  1. /*
  2. Notebook
  3. Copyright 2021 ArozOS Project
  4. The build in basic text editor for text files
  5. */
  6. //Define the launchInfo for the module
  7. var moduleLaunchInfo = {
  8. Name: "Timer",
  9. Desc: "Basic Timer Utility",
  10. Group: "Utilities",
  11. IconPath: "Timer/img/timer.png",
  12. Version: "2.0",
  13. StartDir: "Timer/timer.html",
  14. SupportFW: true,
  15. LaunchFWDir: "Timer/timer.html",
  16. SupportEmb: false,
  17. InitFWSize: [380, 190],
  18. SupportedExt: []
  19. }
  20. //Register the module
  21. registerModule(JSON.stringify(moduleLaunchInfo));