summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/dummy/init.lua
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-10-24 05:48:05 +1100
committer Vas Crabb <vas@vastheman.com>2021-10-24 05:48:05 +1100
commit669b1f6adecfd940d5ae8b97150dc73db04894c5 (patch)
tree3b32a4f2d55f558be04294ebe818c8f35135ef8b /plugins/dummy/init.lua
parent3a11f9168703f33f2f066c3e9d0f6905f2c95453 (diff)
-docs: Started documenting plugins.
* Also added a couple of missing command-line options, and added a local table of contents to the (rather long) command line options page. -Added a separate CI target for localisation updates that produces an artefact, and removed the message catalogs from the trigger paths for the Linux CI build.
Diffstat (limited to 'plugins/dummy/init.lua')
-rw-r--r--plugins/dummy/init.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/dummy/init.lua b/plugins/dummy/init.lua
index 89ba95a7f86..026e29397c1 100644
--- a/plugins/dummy/init.lua
+++ b/plugins/dummy/init.lua
@@ -1,11 +1,11 @@
-- license:BSD-3-Clause
-- copyright-holders:Miodrag Milanovic
-local exports = {}
-exports.name = "dummy"
-exports.version = "0.0.1"
-exports.description = "A dummy example"
-exports.license = "The BSD 3-Clause License"
-exports.author = { name = "Miodrag Milanovic" }
+local exports = {
+ name = "dummy",
+ version = "0.0.1",
+ description = "A dummy example",
+ license = "The BSD 3-Clause License",
+ author = { name = "Miodrag Milanovic" }}
local dummy = exports
@@ -19,7 +19,7 @@ function dummy.startplugin()
end)
local function menu_populate()
- return {{ "This is a", "test", "off" }, { "Also a", "test", 0 }}
+ return {{ "This is a", "test", "off" }, { "Also a", "test", "" }}
end
local function menu_callback(index, event)