summaryrefslogtreecommitdiffstatshomepage
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/autofire/init.lua2
-rw-r--r--plugins/cheat/init.lua2
-rw-r--r--plugins/cheatfind/init.lua2
-rw-r--r--plugins/console/init.lua2
-rw-r--r--plugins/data/init.lua2
-rw-r--r--plugins/discord/init.lua2
-rw-r--r--plugins/dummy/init.lua2
-rw-r--r--plugins/gdbstub/init.lua2
-rw-r--r--plugins/hiscore/init.lua4
-rw-r--r--plugins/inputmacro/init.lua2
-rw-r--r--plugins/inputmacro/inputmacro_menu.lua4
-rw-r--r--plugins/inputmacro/inputmacro_persist.lua4
-rw-r--r--plugins/layout/init.lua2
-rw-r--r--plugins/portname/init.lua2
-rw-r--r--plugins/timer/init.lua2
15 files changed, 22 insertions, 14 deletions
diff --git a/plugins/autofire/init.lua b/plugins/autofire/init.lua
index d14533dc53b..57ea3d4bb27 100644
--- a/plugins/autofire/init.lua
+++ b/plugins/autofire/init.lua
@@ -4,7 +4,7 @@ local exports = {
name = 'autofire',
version = '0.0.4',
description = 'Autofire plugin',
- license = 'The BSD 3-Clause License',
+ license = 'BSD-3-Clause',
author = { name = 'Jack Li' } }
local autofire = exports
diff --git a/plugins/cheat/init.lua b/plugins/cheat/init.lua
index e0ae0c058ab..e5fc2245922 100644
--- a/plugins/cheat/init.lua
+++ b/plugins/cheat/init.lua
@@ -68,7 +68,7 @@ local exports = {}
exports.name = "cheat"
exports.version = "0.0.1"
exports.description = "Cheat plugin"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local cheat = exports
diff --git a/plugins/cheatfind/init.lua b/plugins/cheatfind/init.lua
index b9ff9ce3403..62b468ce920 100644
--- a/plugins/cheatfind/init.lua
+++ b/plugins/cheatfind/init.lua
@@ -5,7 +5,7 @@ local exports = {}
exports.name = "cheatfind"
exports.version = "0.0.1"
exports.description = "Cheat finder helper library"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local cheatfind = exports
diff --git a/plugins/console/init.lua b/plugins/console/init.lua
index de8a5844a68..cec818cc329 100644
--- a/plugins/console/init.lua
+++ b/plugins/console/init.lua
@@ -5,7 +5,7 @@ local exports = {}
exports.name = "console"
exports.version = "0.0.1"
exports.description = "Console plugin"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local console = exports
diff --git a/plugins/data/init.lua b/plugins/data/init.lua
index 4ef3675968f..5ec08cbec3c 100644
--- a/plugins/data/init.lua
+++ b/plugins/data/init.lua
@@ -8,7 +8,7 @@ local exports = {}
exports.name = "data"
exports.version = "0.0.1"
exports.description = "Data plugin"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local data = exports
diff --git a/plugins/discord/init.lua b/plugins/discord/init.lua
index f95030f1c46..b6e25d08aa7 100644
--- a/plugins/discord/init.lua
+++ b/plugins/discord/init.lua
@@ -4,7 +4,7 @@ local exports = {}
exports.name = "discord"
exports.version = "0.0.1"
exports.description = "Discord presence"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local discord = exports
diff --git a/plugins/dummy/init.lua b/plugins/dummy/init.lua
index 026e29397c1..45f6d78d570 100644
--- a/plugins/dummy/init.lua
+++ b/plugins/dummy/init.lua
@@ -4,7 +4,7 @@ local exports = {
name = "dummy",
version = "0.0.1",
description = "A dummy example",
- license = "The BSD 3-Clause License",
+ license = "BSD-3-Clause",
author = { name = "Miodrag Milanovic" }}
local dummy = exports
diff --git a/plugins/gdbstub/init.lua b/plugins/gdbstub/init.lua
index f7d4ceee6ba..8a28a68d8cc 100644
--- a/plugins/gdbstub/init.lua
+++ b/plugins/gdbstub/init.lua
@@ -4,7 +4,7 @@ local exports = {}
exports.name = "gdbstub"
exports.version = "0.0.1"
exports.description = "GDB stub plugin"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local gdbstub = exports
diff --git a/plugins/hiscore/init.lua b/plugins/hiscore/init.lua
index 0865caa2721..4ec94c9a590 100644
--- a/plugins/hiscore/init.lua
+++ b/plugins/hiscore/init.lua
@@ -1,5 +1,5 @@
-- hiscore.lua
--- by borgar@borgar.net, WTFPL license
+-- by borgar@borgar.net, CC0 license
--
-- This uses MAME's built-in Lua scripting to implement
-- high-score saving with hiscore.dat infom just as older
@@ -9,7 +9,7 @@ local exports = {
name = 'hiscore',
version = '1.0.0',
description = 'Hiscore',
- license = 'WTFPL license',
+ license = 'CC0',
author = { name = 'borgar@borgar.net' } }
local hiscore = exports
diff --git a/plugins/inputmacro/init.lua b/plugins/inputmacro/init.lua
index ef88efeadcd..99e3d61f1d4 100644
--- a/plugins/inputmacro/init.lua
+++ b/plugins/inputmacro/init.lua
@@ -4,7 +4,7 @@ local exports = {
name = 'inputmacro',
version = '0.0.1',
description = 'Input macro plugin',
- license = 'The BSD 3-Clause License',
+ license = 'BSD-3-Clause',
author = { name = 'Vas Crabb' } }
diff --git a/plugins/inputmacro/inputmacro_menu.lua b/plugins/inputmacro/inputmacro_menu.lua
index afb2071996b..7c03d5b95a7 100644
--- a/plugins/inputmacro/inputmacro_menu.lua
+++ b/plugins/inputmacro/inputmacro_menu.lua
@@ -1,3 +1,7 @@
+-- license:BSD-3-Clause
+-- copyright-holders:Vas Crabb
+
+
-- Constants
local MENU_TYPES = { MACROS = 0, ADD = 1, EDIT = 2, INPUT = 3 }
diff --git a/plugins/inputmacro/inputmacro_persist.lua b/plugins/inputmacro/inputmacro_persist.lua
index 04d310faeef..9c9e9322eed 100644
--- a/plugins/inputmacro/inputmacro_persist.lua
+++ b/plugins/inputmacro/inputmacro_persist.lua
@@ -1,3 +1,7 @@
+-- license:BSD-3-Clause
+-- copyright-holders:Vas Crabb
+
+
-- Helpers
local function settings_path()
diff --git a/plugins/layout/init.lua b/plugins/layout/init.lua
index 55cb433baf2..45b810c86b7 100644
--- a/plugins/layout/init.lua
+++ b/plugins/layout/init.lua
@@ -6,7 +6,7 @@ local exports = {}
exports.name = "layout"
exports.version = "0.0.1"
exports.description = "Layout helper plugin"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local layout = exports
diff --git a/plugins/portname/init.lua b/plugins/portname/init.lua
index 24cdc50facf..88cc0d20898 100644
--- a/plugins/portname/init.lua
+++ b/plugins/portname/init.lua
@@ -21,7 +21,7 @@ local exports = {}
exports.name = "portname"
exports.version = "0.0.1"
exports.description = "IOPort name/translation plugin"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local portname = exports
diff --git a/plugins/timer/init.lua b/plugins/timer/init.lua
index eb61f85bf84..9457c1fc038 100644
--- a/plugins/timer/init.lua
+++ b/plugins/timer/init.lua
@@ -6,7 +6,7 @@ local exports = {}
exports.name = "timer"
exports.version = "0.0.2"
exports.description = "Game play timer"
-exports.license = "The BSD 3-Clause License"
+exports.license = "BSD-3-Clause"
exports.author = { name = "Carl" }
local timer = exports