summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Stiletto <stilett0@users.noreply.github.com>2019-01-10 17:01:26 -0500
committer GitHub <noreply@github.com>2019-01-10 17:01:26 -0500
commita5461d9d6bf214cb5e348c892c72f528a7d237b9 (patch)
tree8c4266035921a9350e1973674f8b04ea418f9987
parentdd15e89a8673cded2fc25f2351e31bc87eb5075c (diff)
2018 -> 2019 changes (nw)
* 2018 -> 2019 changes (nw)
-rw-r--r--LICENSE.md2
-rw-r--r--README.md2
-rw-r--r--docs/source/license.rst2
-rw-r--r--docs/source/techspecs/luaengine.rst4
-rw-r--r--docs/source/whatis.rst2
-rw-r--r--src/lib/netlist/prg/nltool.cpp2
-rw-r--r--src/lib/netlist/prg/nlwav.cpp2
-rw-r--r--src/osd/modules/render/bgfx/shaders/shader.mk2
-rw-r--r--uismall.bdf2
9 files changed, 10 insertions, 10 deletions
diff --git a/LICENSE.md b/LICENSE.md
index c1add6e5bca..b039d9596fd 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -4,7 +4,7 @@ MAME is a registered trademark of Gregory Ember.
The text of version 2 of the GNU General Public License follows.
- Copyright (C) 1997-2017 MAMEDev and contributors
+ Copyright (C) 1997-2019 MAMEDev and contributors
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/README.md b/README.md
index 22d62f68ace..100fe401a78 100644
--- a/README.md
+++ b/README.md
@@ -93,7 +93,7 @@ Please note that MAME is a registered trademark of Gregory Ember, and permission
<img align="right" src="http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">
</a>
- Copyright (C) 1997-2018 MAMEDev and contributors
+ Copyright (C) 1997-2019 MAMEDev and contributors
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/docs/source/license.rst b/docs/source/license.rst
index 9e61b9ca349..db2eb2f41d0 100644
--- a/docs/source/license.rst
+++ b/docs/source/license.rst
@@ -6,7 +6,7 @@ The MAME project as a whole is distributed under the terms of the `GNU General P
Please note that MAME is a registered trademark of Gregory Ember, and permission is required to use the "MAME" name, logo, or wordmark.
- Copyright (C) 1997-2018 MAMEDev and contributors
+ Copyright (C) 1997-2019 MAMEDev and contributors
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/docs/source/techspecs/luaengine.rst b/docs/source/techspecs/luaengine.rst
index fa1c04cdb10..26d6da6a253 100644
--- a/docs/source/techspecs/luaengine.rst
+++ b/docs/source/techspecs/luaengine.rst
@@ -53,7 +53,7 @@ Let's first run MAME in a terminal to reach the LUA console:
_/ _/ _/ _/_/_/_/ _/ _/ _/ _/_/_/
_/ _/ _/ _/ _/ _/ _/
_/ _/ _/ _/ _/ _/ _/_/_/_/
- mame v0.195
+ mame v0.205
Copyright (C) Nicola Salmoria and the MAME team
Lua 5.3
@@ -77,7 +77,7 @@ You can check at runtime which version of MAME you are running, with:
::
[MAME]> print(emu.app_name() .. " " .. emu.app_version())
- mame 0.195
+ mame 0.205
We now start exploring screen related methods. First, let's enumerate available screens:
diff --git a/docs/source/whatis.rst b/docs/source/whatis.rst
index fb5dffe497b..51f9d244226 100644
--- a/docs/source/whatis.rst
+++ b/docs/source/whatis.rst
@@ -7,7 +7,7 @@ MAME's purpose is to preserve decades of software history. As electronic technol
|
| **MAME®**
-| **Copyright © 1997-2018 by Nicola Salmoria and the MAME team**
+| **Copyright © 1997-2019 by Nicola Salmoria and the MAME team**
| **MAME is a registered trademark owned by Gregory Ember**
|
diff --git a/src/lib/netlist/prg/nltool.cpp b/src/lib/netlist/prg/nltool.cpp
index 4395bd3bd17..ef45195ce67 100644
--- a/src/lib/netlist/prg/nltool.cpp
+++ b/src/lib/netlist/prg/nltool.cpp
@@ -696,7 +696,7 @@ int tool_app_t::execute()
{
pout(
"nltool (netlist) 0.1\n"
- "Copyright (C) 2018 Couriersud\n"
+ "Copyright (C) 2019 Couriersud\n"
"License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>.\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n\n"
diff --git a/src/lib/netlist/prg/nlwav.cpp b/src/lib/netlist/prg/nlwav.cpp
index a1f14692364..17d385f2c1a 100644
--- a/src/lib/netlist/prg/nlwav.cpp
+++ b/src/lib/netlist/prg/nlwav.cpp
@@ -379,7 +379,7 @@ int nlwav_app::execute()
{
pout(
"nlwav (netlist) 0.1\n"
- "Copyright (C) 2018 Couriersud\n"
+ "Copyright (C) 2019 Couriersud\n"
"License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>.\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n\n"
diff --git a/src/osd/modules/render/bgfx/shaders/shader.mk b/src/osd/modules/render/bgfx/shaders/shader.mk
index 84035e255fa..e7db3cdc242 100644
--- a/src/osd/modules/render/bgfx/shaders/shader.mk
+++ b/src/osd/modules/render/bgfx/shaders/shader.mk
@@ -1,5 +1,5 @@
#
-# Copyright 2011-2018 Branimir Karadzic. All rights reserved.
+# Copyright 2011-2019 Branimir Karadzic. All rights reserved.
# License: http://www.opensource.org/licenses/BSD-2-Clause
#
diff --git a/uismall.bdf b/uismall.bdf
index 3a62b0b9987..7897c0ae6c5 100644
--- a/uismall.bdf
+++ b/uismall.bdf
@@ -1,5 +1,5 @@
STARTFONT 2.1
-COMMENT Copyright (C) 1997-2018 MAMEDev and contributors
+COMMENT Copyright (C) 1997-2019 MAMEDev and contributors
FONT -mamedev-uismall-Medium-R-Normal--16-120-96-96-P-100-ISO10646-1
SIZE 12 96 96
FONTBOUNDINGBOX 8 11 0 -2