luajitos

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

manifest.lua (541B)


      1 return {
      2     name = "calculator",
      3     pretty = "Calculator",
      4     developer = "luajitos",
      5     version = "1.0.0",
      6     category = "Productivity",
      7     description = "Simple calculator application",
      8     entry = "init.lua",
      9     type = "gui",
     10     permissions = {
     11         "filesystem",
     12         "scheduling",
     13         "export",
     14         "import",
     15         "draw"
     16     },
     17     allowedPaths = {
     18         -- "$/data/*" is always enabled by default
     19         "$/tmp/*",      -- Allow temporary files
     20         "$/src/*"       -- Allow reading source files
     21     }
     22 }