luajitos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

manifest.lua (466B)


      1 return {
      2     name = "lensviewer",
      3     developer = "luajitos",
      4     version = "1.0.0",
      5     category = "all",
      6     description = "Image viewer application",
      7     entry = "lens.lua",
      8     type = "gui",
      9     permissions = {
     10         "ramdisk",  -- Direct ramdisk access for reading images
     11         "draw",
     12         "system-all"  -- Access to sys.screen for window positioning
     13     },
     14     allowedPaths = {
     15         "/*"  -- File dialog will dynamically add paths as needed
     16     }
     17 }