diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-05-07 23:39:22 +0200 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-05-07 23:39:22 +0200 |
commit | 1b49c36a819f05ed64276642a16883c6e7c24a98 (patch) | |
tree | 8abaffeb0e6b71996e2f5490a9a2997b56b0dc0d /plugins/sid | |
parent | 7946384fab1acb23d3dd1a88fd370fcd1a3e68fe (diff) |
updated/improved/added licensing info in many plugins, added COPYING files, some plugins got upgraded from GPL to ZLIB
Diffstat (limited to 'plugins/sid')
-rw-r--r-- | plugins/sid/COPYING | 20 | ||||
-rw-r--r-- | plugins/sid/csid.cpp | 4 | ||||
-rw-r--r-- | plugins/sid/plugin.c | 22 |
3 files changed, 31 insertions, 15 deletions
diff --git a/plugins/sid/COPYING b/plugins/sid/COPYING new file mode 100644 index 00000000..82ad2941 --- /dev/null +++ b/plugins/sid/COPYING @@ -0,0 +1,20 @@ +SID plugin for DeaDBeeF Player +Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net> + +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 +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. + + + +Uses libsidplay2 with modifications. +The modifications (C) 2009-2014 Alexey Yakovenko. diff --git a/plugins/sid/csid.cpp b/plugins/sid/csid.cpp index c4b2744b..f2442f63 100644 --- a/plugins/sid/csid.cpp +++ b/plugins/sid/csid.cpp @@ -1,6 +1,6 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko <waker@users.sourceforge.net> + SID plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net> 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/plugins/sid/plugin.c b/plugins/sid/plugin.c index 2b33876b..03ea81cb 100644 --- a/plugins/sid/plugin.c +++ b/plugins/sid/plugin.c @@ -1,6 +1,6 @@ /* - DeaDBeeF - ultimate music player for GNU/Linux systems with X11 - Copyright (C) 2009-2013 Alexey Yakovenko <waker@users.sourceforge.net> + SID plugin for DeaDBeeF Player + Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net> 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 @@ -38,16 +38,13 @@ DB_decoder_t sid_plugin = { .plugin.id = "sidplay2", .plugin.descr = "SID player based on libsidplay2", .plugin.copyright = - "Copyright (C) 2009-2013 Alexey Yakovenko <waker@users.sourceforge.net>\n" + "SID plugin for DeaDBeeF Player\n" + "Copyright (C) 2009-2014 Alexey Yakovenko <waker@users.sourceforge.net>\n" "\n" - "Uses modified libsidplay2-2.1.0\n" - "Commodore 64 SID emulation library\n" - "Copyright (C) Simon White and other authors\n" - "\n" - "This program is free software; you can redistribute it and/or\n" - "modify it under the terms of the GNU General Public License\n" - "as published by the Free Software Foundation; either version 2\n" - "of the License, or (at your option) any later version.\n" + "This program is free software: you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation, either version 2 of the License, or\n" + "(at your option) any later version.\n" "\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" @@ -55,8 +52,7 @@ DB_decoder_t sid_plugin = { "GNU General Public License for more details.\n" "\n" "You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n" + "along with this program. If not, see <http://www.gnu.org/licenses/>.\n" , .plugin.website = "http://deadbeef.sf.net", .plugin.start = csid_start, |