init.agi 950 B

12345678910111213141516171819202122232425262728
  1. /*
  2. Raw Editor Module Register Script
  3. Registers the "Raw Editor" WebApp on the ArozOS desktop. The app decodes
  4. camera RAW files (ARW, DNG, NEF, CR2, ORF, RAF ...), demosaics them into a
  5. viewable image and provides Camera-Raw style develop controls plus 3D LUT
  6. (.cube) colour grading, entirely inside the browser sandbox.
  7. */
  8. //Setup the module information
  9. var moduleLaunchInfo = {
  10. Name: "Raw Editor",
  11. Desc: "Develop camera RAW files with Camera-Raw style controls and LUT grading",
  12. Group: "Media",
  13. IconPath: "img/module_icon.svg",
  14. Version: "1.0.0",
  15. StartDir: "index.html",
  16. SupportFW: true,
  17. LaunchFWDir: "index.html",
  18. SupportEmb: true,
  19. LaunchEmb: "index.html",
  20. InitFWSize: [1200, 760],
  21. InitEmbSize: [1200, 760],
  22. SupportedExt: [".arw", ".dng", ".nef", ".cr2", ".cr3", ".orf", ".raf", ".rw2", ".pef", ".srw", ".tiff", ".tif", ".jpg", ".jpeg", ".png", ".webp"]
  23. }
  24. //Register the module
  25. registerModule(JSON.stringify(moduleLaunchInfo));