init.agi 563 B

1234567891011121314151617181920212223
  1. /*
  2. Photo Module Register Script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Photo",
  7. Desc: "The worst photo webapp",
  8. Group: "Media",
  9. IconPath: "img/module_icon.png",
  10. Version: "0.0.1",
  11. StartDir: "index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "index.html",
  14. SupportEmb: true,
  15. LaunchEmb: "embedded.html",
  16. InitFWSize: [1000, 700],
  17. InitEmbSize: [900, 500],
  18. SupportedExt: [".jpg",".jpeg",".gif",".png",".webp", ".arw", ".cr2", ".dng", ".nef", ".raf", ".orf"]
  19. }
  20. //Register the module
  21. registerModule(JSON.stringify(moduleLaunchInfo));