plugins: Use SPDX short identifiers for licenses in exports (more precise and easier to localise), use CC0 for hiscore plugin rather than CC0.

This commit is contained in:
Vas Crabb 2021-10-25 01:57:07 +11:00
parent 328b103fbc
commit 4601e60391
15 changed files with 22 additions and 14 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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' } }

View File

@ -1,3 +1,7 @@
-- license:BSD-3-Clause
-- copyright-holders:Vas Crabb
-- Constants
local MENU_TYPES = { MACROS = 0, ADD = 1, EDIT = 2, INPUT = 3 }

View File

@ -1,3 +1,7 @@
-- license:BSD-3-Clause
-- copyright-holders:Vas Crabb
-- Helpers
local function settings_path()

View File

@ -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

View File

@ -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

View File

@ -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