From e63a373a4e54470dd08e6984e9da4bb2e2d9ea12 Mon Sep 17 00:00:00 2001 From: Marisa Kirisame Date: Fri, 13 May 2022 18:39:14 +0200 Subject: [PATCH] Personal rebranding. --- COPYING | 2 +- dtexdupes.c | 2 +- fuzz.c | 2 +- glfuzz.c | 2 +- iwad64ex.c | 2 +- lutconv2.c | 5 +---- lutflat.c | 5 +---- lutsmooth.c | 5 +---- mazestuff.c | 2 +- mkfont.c | 2 +- mkvolume.c | 2 +- mkwall.c | 2 +- schange.c | 2 +- soapstone.c | 2 +- startuptest.c | 2 +- udmfvis.c | 2 +- 16 files changed, 16 insertions(+), 25 deletions(-) diff --git a/COPYING b/COPYING index 4190e64..efd1907 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2020-2022 Marisa Kirisame, UnSX Team +Copyright (c) 2020-2022 Marisa the Magician, UnSX Team Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/dtexdupes.c b/dtexdupes.c index 518f129..5975f65 100644 --- a/dtexdupes.c +++ b/dtexdupes.c @@ -1,7 +1,7 @@ /* dtexdupes.c : Find textures with identical names in multiple doom mods. Supports wad, pk3 and folders. Handles TEXTURE1/2 and TEXTURES. - (C)2018 Marisa Kirisame, UnSX Team. + (C)2018 Marisa the Magician, UnSX Team. Released under the MIT license. Requires libarchive. Made for *nix platforms. */ diff --git a/fuzz.c b/fuzz.c index 2716aea..3bbd50b 100644 --- a/fuzz.c +++ b/fuzz.c @@ -1,7 +1,7 @@ /* fuzz.c : Fancy software filter. I was bored. - (C)2016 Marisa Kirisame, UnSX Team. + (C)2016 Marisa the Magician, UnSX Team. Released under the MIT license. */ #include diff --git a/glfuzz.c b/glfuzz.c index 803b54d..4dcbe10 100644 --- a/glfuzz.c +++ b/glfuzz.c @@ -1,7 +1,7 @@ /* glfuzz.c : Fancy hardware filter. I was bored. - (C)2016 Marisa Kirisame, UnSX Team. + (C)2016 Marisa the Magician, UnSX Team. Released under the MIT license. */ #include diff --git a/iwad64ex.c b/iwad64ex.c index 928eaed..6f1503a 100644 --- a/iwad64ex.c +++ b/iwad64ex.c @@ -1,7 +1,7 @@ /* iwad64ex.c : Extracts the embedded IWAD in Hexen 64. Currently does not decompress the data (or fix the endianness in data). - (C)2019 Marisa Kirisame, UnSX Team. + (C)2019 Marisa the Magician, UnSX Team. Released under the MIT license. */ #include diff --git a/lutconv2.c b/lutconv2.c index 891e6c7..9357891 100644 --- a/lutconv2.c +++ b/lutconv2.c @@ -1,7 +1,7 @@ /* lutconv2.c : Improved, general purpose LUT converter. Turns 2D LUT textures into DDS Volume Maps for convenience. - (C)2017 Marisa Kirisame, UnSX Team. + (C)2017 Marisa the Magician, UnSX Team. Released under the MIT license. */ #include @@ -570,9 +570,6 @@ int loadpng( const char *filename ) int main( int argc, char **argv ) { - printf("LUTCONV 2.1 - (C)2017 Marisa Kirisame, UnSX Team.\n" - "This program is free software under the GNU GPL v3.\n" - "See https://www.gnu.org/licenses/gpl.html for details.\n\n"); if ( argc < 2 ) { printf("No files have been passed for processing.\n"); diff --git a/lutflat.c b/lutflat.c index fffcb55..e5c77d4 100644 --- a/lutflat.c +++ b/lutflat.c @@ -1,7 +1,7 @@ /* lutflat.c : LUT flattener. Converts DDS Volume Map LUTs back into flat textures. - (C)2017 Marisa Kirisame, UnSX Team. + (C)2017 Marisa the Magician, UnSX Team. Released under the MIT license. */ #include @@ -194,9 +194,6 @@ int savepng( const char *filename ) int main( int argc, char **argv ) { - printf("LUTFLAT 1.0 - (C)2017 Marisa Kirisame, UnSX Team.\n" - "This program is free software under the GNU GPL v3.\n" - "See https://www.gnu.org/licenses/gpl.html for details.\n\n"); if ( argc < 2 ) { printf("No files have been passed for processing.\n"); diff --git a/lutsmooth.c b/lutsmooth.c index c5cd558..3ea25fb 100644 --- a/lutsmooth.c +++ b/lutsmooth.c @@ -1,7 +1,7 @@ /* lutsmooth.c : LUT smoothening. Softens Volume LUTs by applying gaussian blur across all three axes. - (C)2017 Marisa Kirisame, UnSX Team. + (C)2017 Marisa the Magician, UnSX Team. Released under the MIT license. */ #include @@ -111,9 +111,6 @@ int smoothenlut( void ) int main( int argc, char **argv ) { - printf("LUTSMOOTH 1.0 - (C)2017 Marisa Kirisame, UnSX Team.\n" - "This program is free software under the GNU GPL v3.\n" - "See https://www.gnu.org/licenses/gpl.html for details.\n\n"); FILE *fin, *fout; char fname[255] = {0}; ddsheader_t head; diff --git a/mazestuff.c b/mazestuff.c index 389c4f0..b75555c 100644 --- a/mazestuff.c +++ b/mazestuff.c @@ -1,7 +1,7 @@ /* A C implementation of some dungeon generator, or at least an attempt. Based mainly on http://journal.stuffwithstuff.com/2014/12/21/rooms-and-mazes - (C)2019 Marisa Kirisame, UnSX Team. + (C)2019 Marisa the Magician, UnSX Team. Released under the MIT license. */ #include diff --git a/mkfont.c b/mkfont.c index a9cc8cf..c3a826d 100644 --- a/mkfont.c +++ b/mkfont.c @@ -3,7 +3,7 @@ This code is a mess but I keep it here so people know how much I had to suffer to get this done. - Copyright (c) 2020-2022 Marisa Kirisame, UnSX Team + Copyright (c) 2020-2022 Marisa the Magician, UnSX Team Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/mkvolume.c b/mkvolume.c index 796726b..ab74d00 100644 --- a/mkvolume.c +++ b/mkvolume.c @@ -1,7 +1,7 @@ /* mkvolume.c : Hastily written program to turn 2D LUTs into volume maps. Reads raw RGB8 data and writes uncompressed RGB8 DDS because I'm lazy. - (C)2015 Marisa Kirisame, UnSX Team. + (C)2015 Marisa the Magician, UnSX Team. Released under the MIT License. */ diff --git a/mkwall.c b/mkwall.c index 701a038..0de2cdb 100644 --- a/mkwall.c +++ b/mkwall.c @@ -1,6 +1,6 @@ /* mkwall.c : The de-facto sayachan network wallpaper generator. - (C)2015-2017 Marisa Kirisame, UnSX Team. For personal use mostly. + (C)2015-2017 Marisa the Magician, UnSX Team. For personal use mostly. Released under the MIT license. */ #include diff --git a/schange.c b/schange.c index bff0959..9a9c8c3 100644 --- a/schange.c +++ b/schange.c @@ -1,6 +1,6 @@ /* schange.c : run command on crtc and output change events from RandR. - (C)2015-2017 Marisa Kirisame, UnSX Team. For personal use mostly. + (C)2015-2017 Marisa the Magician, UnSX Team. For personal use mostly. Released under the MIT license. */ #include diff --git a/soapstone.c b/soapstone.c index 9805900..7616b6e 100644 --- a/soapstone.c +++ b/soapstone.c @@ -1,6 +1,6 @@ /* soapstone.c : Random orange soapstone message generator. - (C)2016 Marisa Kirisame, UnSX Team. + (C)2016 Marisa the Magician, UnSX Team. Released under the MIT license. Dark Souls is (C)2011-2016 From Software. */ diff --git a/startuptest.c b/startuptest.c index f869b55..5208c5f 100644 --- a/startuptest.c +++ b/startuptest.c @@ -1,7 +1,7 @@ /* startuptest.c : Previews Hexen STARTUP screens for GZDoom mods. Requires SDL2 and SDL2_mixer. - (C)2021 Marisa Kirisame, UnSX Team. + (C)2021 Marisa the Magician, UnSX Team. Released under the MIT License. */ diff --git a/udmfvis.c b/udmfvis.c index 91a535f..7f20d90 100644 --- a/udmfvis.c +++ b/udmfvis.c @@ -1,6 +1,6 @@ /* UDMF map visualizer - Kinda like dmvis but for UDMF maps specifically. - (C)2018 Marisa Kirisame, UnSX Team. + (C)2018 Marisa the Magician, UnSX Team. Released under the MIT license. */ #include