Preparing for Git snapshot build bot and updated copyright header to reference full lifespan of Supermodel repo

This commit is contained in:
Bart Trzynadlowski 2022-06-23 12:34:02 -07:00
parent 3803d6b705
commit 8c8cc3d32b
9 changed files with 429 additions and 436 deletions

View file

@ -1,7 +1,7 @@
<!--
Supermodel
A Sega Model 3 Arcade Emulator.
Copyright 2011-2017 Bart Trzynadlowski, Nik Henson, Ian Curtis
Copyright 2003-2022 The Supermodel Team
Games.xml

View file

@ -1,5 +1,5 @@
#### ### ###
## ## ## ##
### ## ## ## ### #### ## ### ## ## #### ## #### ##
@ -7,15 +7,15 @@
### ## ## ## ## ###### ## ## ####### ## ## ## ## ###### ##
## ## ## ## ##### ## ## ## # ## ## ## ## ## ## ##
#### ### ## ## #### #### ## ## #### ### ## #### ####
####
####
A Sega Model 3 Arcade Emulator.
Copyright 2011 Bart Trzynadlowski, Nik Henson
Copyright 2003-2022 The Supermodel Team
LICENSE AGREEMENT FOR SUPERMODEL VERSION 0.2A
LICENSE AGREEMENT FOR SUPERMODEL
Supermodel is distributed as free software under the terms of the GNU General
Public License, included below. See README.txt for additional documentation.
The source code may be obtained from the official Supermodel web site:

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,7 @@
##
## Supermodel
## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis,
## Harry Tuttle, and Spindizzi
## Copyright 2003-2022 The Supermodel Team
##
## This file is part of Supermodel.
##

View file

@ -1,8 +1,7 @@
##
## Supermodel
## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis,
## Harry Tuttle, and Spindizzi
## Copyright 2003-2022 The Supermodel Team
##
## This file is part of Supermodel.
##

View file

@ -1,8 +1,7 @@
##
## Supermodel
## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis,
## Harry Tuttle, and Spindizzi
## Copyright 2003-2022 The Supermodel Team
##
## This file is part of Supermodel.
##

View file

@ -1,8 +1,7 @@
##
## Supermodel
## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis,
## Harry Tuttle, and Spindizzi
## Copyright 2003-2022 The Supermodel Team
##
## This file is part of Supermodel.
##

View file

@ -1,8 +1,7 @@
##
## Supermodel
## A Sega Model 3 Arcade Emulator.
## Copyright 2011-2020 Bart Trzynadlowski, Nik Henson, Ian Curtis,
## Harry Tuttle, and Spindizzi
## Copyright 2003-2022 The Supermodel Team
##
## This file is part of Supermodel.
##
@ -218,7 +217,7 @@ INCLUDE_DIRS = $(sort $(foreach file,$(SRC_FILES),$(dir $(file))))
all: $(BIN_DIR)/$(OUTFILE)
#
# Release targets: used only to create official builds stamped with the SVN
# Release targets: used only to create official builds stamped with the Git
# version number. Double-colon rules should force ordered execution.
# The automated build script relies on these -- don't modify their output!
#
@ -230,7 +229,7 @@ release:: print_message
release:: clean
release:: all
set_version:
$(eval VERSION = 0.3a-svn-$(shell svnversion --no-newline))
$(eval VERSION = $(subst ',,0.3a-git-$(shell git rev-parse --short HEAD --sq)))
$(eval SUPERMODEL_BUILD_FLAGS += -DSUPERMODEL_VERSION=\"$(VERSION)\")
print_message:
$(info Building Supermodel Version $(VERSION))

View file

@ -1,8 +1,7 @@
/**
** Supermodel
** A Sega Model 3 Arcade Emulator.
** Copyright 2011-2021 Bart Trzynadlowski, Nik Henson, Ian Curtis,
** Harry Tuttle, and Spindizzi
** Copyright 2003-2022 The Supermodel Team
**
** This file is part of Supermodel.
**
@ -1497,8 +1496,7 @@ static Util::Config::Node DefaultConfig()
static void Title(void)
{
puts("Supermodel: A Sega Model 3 Arcade Emulator (Version " SUPERMODEL_VERSION ")");
puts("Copyright 2011-2022 by Bart Trzynadlowski, Nik Henson, Ian Curtis, Harry Tuttle,");
puts(" Spindizzi, gm_mathew, and njz3\n");
puts("Copyright 2003-2022 by The Supermodel Team");
}
static void Help(void)