123456789101112131415161718192021222324 |
- /*
- Blog Engine initiation script
- */
- //Setup the module information
- var moduleLaunchInfo = {
- Name: "Blog",
- Desc: "The blog engine that power the ArozOS Blog",
- Group: "Media",
- IconPath: "Blog/img/module_icon.png",
- Version: "0.1.0",
- StartDir: "Blog/index.html",
- SupportFW: true,
- LaunchFWDir: "Blog/index.html",
- SupportEmb: true,
- LaunchEmb: "Blog/embedded.html",
- InitFWSize: [1080, 580],
- InitEmbSize: [360, 240],
- SupportedExt: [".md",".txt"]
- }
- //Register the module
- registerModule(JSON.stringify(moduleLaunchInfo));
|