luajitos

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

manifest.lua (425B)


      1 return {
      2     name = "paint",
      3     pretty = "Paint",
      4     developer = "luajitos",
      5     version = "1.0.0",
      6     category = "Graphics",
      7     description = "Simple paint application",
      8     entry = "init.lua",
      9     type = "gui",
     10     permissions = {
     11         "filesystem",
     12         "scheduling",
     13         "draw",
     14         "imaging"
     15     },
     16     allowedPaths = {
     17         "$/tmp/*",
     18         "$/data/*",
     19         "/home",
     20         "/home/*"
     21     }
     22 }