init.agi 553 B

1234567891011121314151617181920
  1. /*
  2. Arozcast - Remote Projection Receiver
  3. Module Registration Script
  4. */
  5. var rootdir = "Arozcast";
  6. var moduleLaunchInfo = {
  7. Name: "Arozcast",
  8. Desc: "Remote projection receiver - stream media from Musicify to this screen",
  9. Group: "Media",
  10. IconPath: rootdir + "/img/module_icon.png",
  11. Version: "1.0.0",
  12. StartDir: rootdir + "/index.html",
  13. SupportFW: true,
  14. LaunchFWDir: rootdir + "/index.html",
  15. SupportEmb: false,
  16. InitFWSize: [900, 600],
  17. SupportedExt: []
  18. }
  19. registerModule(JSON.stringify(moduleLaunchInfo));