init.agi 550 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: "MDEditor",
  9. Desc: "Basic Text Editor",
  10. Group: "Utilities",
  11. IconPath: "MDEditor/img/notebook.png",
  12. Version: "3.0",
  13. StartDir: "MDEditor/mde.html",
  14. SupportFW: true,
  15. LaunchFWDir: "MDEditor/mde.html",
  16. SupportEmb: false,
  17. InitFWSize: [1080, 580],
  18. SupportedExt: [".txt", ".md", ".html",".xml",".json"]
  19. }
  20. //Register the module
  21. registerModule(JSON.stringify(moduleLaunchInfo));