init.agi 531 B

123456789101112131415161718192021222324
  1. /*
  2. Blog Engine initiation script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Blog",
  7. Desc: "The blog engine that power the ArozOS Blog",
  8. Group: "Media",
  9. IconPath: "Blog/img/module_icon.png",
  10. Version: "0.1.0",
  11. StartDir: "Blog/index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "Blog/index.html",
  14. SupportEmb: true,
  15. LaunchEmb: "Blog/embedded.html",
  16. InitFWSize: [1080, 580],
  17. InitEmbSize: [360, 240],
  18. SupportedExt: [".md",".txt"]
  19. }
  20. //Register the module
  21. registerModule(JSON.stringify(moduleLaunchInfo));