mirror of
https://github.com/holub/mame
synced 2025-07-06 18:39:28 +03:00
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:
parent
328b103fbc
commit
4601e60391
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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' } }
|
||||
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:Vas Crabb
|
||||
|
||||
|
||||
-- Constants
|
||||
|
||||
local MENU_TYPES = { MACROS = 0, ADD = 1, EDIT = 2, INPUT = 3 }
|
||||
|
@ -1,3 +1,7 @@
|
||||
-- license:BSD-3-Clause
|
||||
-- copyright-holders:Vas Crabb
|
||||
|
||||
|
||||
-- Helpers
|
||||
|
||||
local function settings_path()
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user