From 8f0709d5b1bef03ef4e877c3674982ff746eabfe Mon Sep 17 00:00:00 2001 From: Philippe G Date: Mon, 4 May 2020 18:40:48 -0700 Subject: [PATCH] clarify our licensing intention --- components/codecs/inc/alac/alac_wrapper.h | 22 ++++++------------- components/config/config.c | 20 +++++------------ components/display/core/gds_draw.h | 8 +++++++ components/display/core/gds_image.c | 8 +++++++ components/display/core/gds_image.h | 8 +++++++ components/display/core/gds_private.h | 8 +++++++ components/display/core/gds_text.c | 17 +++----------- components/display/core/gds_text.h | 16 +++----------- components/display/display.c | 15 ++----------- components/display/display.h | 14 ++---------- components/raop/platform.h | 14 ++---------- components/raop/raop.c | 16 +++----------- components/raop/raop.h | 16 +++----------- components/raop/util.c | 18 ++++----------- components/raop/util.h | 15 ++----------- components/services/audio_controls.c | 14 ++---------- components/services/audio_controls.h | 14 ++---------- components/services/buttons.c | 14 ++---------- components/services/buttons.h | 14 ++---------- components/services/globdefs.h | 14 ++---------- components/services/led.h | 14 ++---------- components/services/monitor.h | 14 ++---------- components/squeezelite/adac.h | 14 ++---------- components/squeezelite/controls.c | 14 ++---------- components/squeezelite/decode_external.c | 14 ++---------- components/squeezelite/display.c | 15 ++----------- components/squeezelite/embedded.c | 14 ++---------- components/squeezelite/equalizer.c | 14 ++---------- components/squeezelite/equalizer.h | 14 ++---------- .../squeezelite/external/dac_external.c | 14 ++---------- components/squeezelite/output_bt.c | 14 ++---------- components/squeezelite/output_embedded.c | 14 ++---------- components/squeezelite/output_i2s.c | 14 ++---------- components/squeezelite/tas57xx/dac_57xx.c | 14 ++---------- components/tools/perf_trace.h | 14 ++---------- components/tools/tools.h | 14 ++---------- components/tools/trace.h | 14 ++---------- main/esp_app_main.c | 14 ++---------- main/platform_esp32.h | 14 ++---------- 39 files changed, 116 insertions(+), 436 deletions(-) diff --git a/components/codecs/inc/alac/alac_wrapper.h b/components/codecs/inc/alac/alac_wrapper.h index 5f014839..e2ff7b8f 100644 --- a/components/codecs/inc/alac/alac_wrapper.h +++ b/components/codecs/inc/alac/alac_wrapper.h @@ -1,22 +1,14 @@ /***************************************************************************** * alac_wrapper.h: ALAC coder wrapper * - * Copyright (C) 2016 Philippe + /* + * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. - *****************************************************************************/ + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + * + */ + #ifndef __ALAC_WRAPPER_H_ #define __ALAC_WRAPPER_H_ diff --git a/components/config/config.c b/components/config/config.c index 74c22f0f..65ee41ab 100644 --- a/components/config/config.c +++ b/components/config/config.c @@ -2,21 +2,11 @@ * Squeezelite for esp32 * * (c) Sebastien 2019 - * Philippe G. 2019, philippe_44@outlook.com - * - * 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 3 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 . - * + * (c) Philippe G. 2019, philippe_44@outlook.com + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + * */ //#define LOG_LOCAL_LEVEL ESP_LOG_VERBOSE #include "config.h" diff --git a/components/display/core/gds_draw.h b/components/display/core/gds_draw.h index e98f958c..2405f571 100644 --- a/components/display/core/gds_draw.h +++ b/components/display/core/gds_draw.h @@ -1,3 +1,11 @@ +/* + * (c) Philippe G. 2019, philippe_44@outlook.com + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + * + */ + #ifndef _GDS_DRAW_H_ #define _GDS_DRAW_H_ diff --git a/components/display/core/gds_image.c b/components/display/core/gds_image.c index 1be2089f..a1898bbb 100644 --- a/components/display/core/gds_image.c +++ b/components/display/core/gds_image.c @@ -1,3 +1,11 @@ +/* + * (c) Philippe G. 2019, philippe_44@outlook.com + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + * + */ + #include #include "math.h" #include "esp32/rom/tjpgd.h" diff --git a/components/display/core/gds_image.h b/components/display/core/gds_image.h index b1f15c0c..2017ba38 100644 --- a/components/display/core/gds_image.h +++ b/components/display/core/gds_image.h @@ -1,3 +1,11 @@ +/* + * (c) Philippe G. 2019, philippe_44@outlook.com + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + * + */ + #pragma once #include diff --git a/components/display/core/gds_private.h b/components/display/core/gds_private.h index 42fa1a82..674df87c 100644 --- a/components/display/core/gds_private.h +++ b/components/display/core/gds_private.h @@ -1,3 +1,11 @@ +/* + * (c) Philippe G. 2019, philippe_44@outlook.com + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + * + */ + #ifndef _GDS_PRIVATE_H_ #define _GDS_PRIVATE_H_ diff --git a/components/display/core/gds_text.c b/components/display/core/gds_text.c index 34e07d23..10d8b30b 100644 --- a/components/display/core/gds_text.c +++ b/components/display/core/gds_text.c @@ -1,20 +1,9 @@ /* - * (c) 2004,2006 Richard Titmuss for SlimProtoLib - * (c) Philippe G. 2019, philippe_44@outlook.com + * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 of the License, or - * (at your option) any later version. + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * - * 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 . - * */ #include diff --git a/components/display/core/gds_text.h b/components/display/core/gds_text.h index 50652938..3b888157 100644 --- a/components/display/core/gds_text.h +++ b/components/display/core/gds_text.h @@ -1,19 +1,9 @@ /* - * (c) Philippe G. 2019, philippe_44@outlook.com + * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 of the License, or - * (at your option) any later version. + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * - * 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 . - * */ #pragma once diff --git a/components/display/display.c b/components/display/display.c index 82110397..db508552 100644 --- a/components/display/display.c +++ b/components/display/display.c @@ -1,19 +1,8 @@ /* - * (c) 2004,2006 Richard Titmuss for SlimProtoLib * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/display/display.h b/components/display/display.h index e1b809e5..eb6e2392 100644 --- a/components/display/display.h +++ b/components/display/display.h @@ -1,18 +1,8 @@ /* * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/raop/platform.h b/components/raop/platform.h index b901117d..b6cc2062 100644 --- a/components/raop/platform.h +++ b/components/raop/platform.h @@ -3,18 +3,8 @@ * * (c) Philippe, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/raop/raop.c b/components/raop/raop.c index 2d989a86..16db4b54 100644 --- a/components/raop/raop.c +++ b/components/raop/raop.c @@ -1,19 +1,9 @@ /* * - * (c) Philippe 2019, philippe_44@outlook.com + * (c) Philippe 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/raop/raop.h b/components/raop/raop.h index 5009be09..86879f71 100644 --- a/components/raop/raop.h +++ b/components/raop/raop.h @@ -1,20 +1,10 @@ /* * AirCast: Chromecast to AirPlay * - * (c) Philippe 2016-2017, philippe_44@outlook.com + * (c) Philippe 2016-2017, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/raop/util.c b/components/raop/util.c index f2a9be77..341d5bf5 100644 --- a/components/raop/util.c +++ b/components/raop/util.c @@ -1,20 +1,10 @@ /* - * AirConnect: Chromecast & UPnP to AirPlay + * AirConnect: Chromecast & UPnP to AirPlay * - * (c) Philippe 2016-2017, philippe_44@outlook.com + * (c) Philippe 2016-2017, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/raop/util.h b/components/raop/util.h index 40b57704..d788f4b2 100644 --- a/components/raop/util.h +++ b/components/raop/util.h @@ -1,21 +1,10 @@ /* * Misc utilities * - * (c) Adrian Smith 2012-2014, triode1@btinternet.com * (c) Philippe 2016-2017, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/services/audio_controls.c b/components/services/audio_controls.c index 8bcd9887..88577dfe 100644 --- a/components/services/audio_controls.c +++ b/components/services/audio_controls.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ //#define LOG_LOCAL_LEVEL ESP_LOG_DEBUG diff --git a/components/services/audio_controls.h b/components/services/audio_controls.h index 58f0f6f8..7f249105 100644 --- a/components/services/audio_controls.h +++ b/components/services/audio_controls.h @@ -1,18 +1,8 @@ /* * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/services/buttons.c b/components/services/buttons.c index 424c6c65..3e097a1b 100644 --- a/components/services/buttons.c +++ b/components/services/buttons.c @@ -3,18 +3,8 @@ * * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/services/buttons.h b/components/services/buttons.h index 92b00b61..f8996733 100644 --- a/components/services/buttons.h +++ b/components/services/buttons.h @@ -1,18 +1,8 @@ /* * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/services/globdefs.h b/components/services/globdefs.h index 8faf2d48..3d1217aa 100644 --- a/components/services/globdefs.h +++ b/components/services/globdefs.h @@ -3,18 +3,8 @@ * * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/services/led.h b/components/services/led.h index ff53e3b1..89d06cc1 100644 --- a/components/services/led.h +++ b/components/services/led.h @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/services/monitor.h b/components/services/monitor.h index c0bb8f68..0b5c966e 100644 --- a/components/services/monitor.h +++ b/components/services/monitor.h @@ -3,18 +3,8 @@ * * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/adac.h b/components/squeezelite/adac.h index a8251cbc..1b1a2668 100644 --- a/components/squeezelite/adac.h +++ b/components/squeezelite/adac.h @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/controls.c b/components/squeezelite/controls.c index a58ee2ab..db4b54a2 100644 --- a/components/squeezelite/controls.c +++ b/components/squeezelite/controls.c @@ -1,18 +1,8 @@ /* * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/decode_external.c b/components/squeezelite/decode_external.c index 6d718e5a..9749a0f3 100644 --- a/components/squeezelite/decode_external.c +++ b/components/squeezelite/decode_external.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/display.c b/components/squeezelite/display.c index 49ba7534..86d2d316 100644 --- a/components/squeezelite/display.c +++ b/components/squeezelite/display.c @@ -1,19 +1,8 @@ /* - * (c) 2004,2006 Richard Titmuss for SlimProtoLib * (c) Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/embedded.c b/components/squeezelite/embedded.c index 44637ebb..92b1b2fe 100644 --- a/components/squeezelite/embedded.c +++ b/components/squeezelite/embedded.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ #include "squeezelite.h" diff --git a/components/squeezelite/equalizer.c b/components/squeezelite/equalizer.c index fb119fd4..ac038ef9 100644 --- a/components/squeezelite/equalizer.c +++ b/components/squeezelite/equalizer.c @@ -3,18 +3,8 @@ * * (c) Philippe G. 2020, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/equalizer.h b/components/squeezelite/equalizer.h index c67ac328..9de46671 100644 --- a/components/squeezelite/equalizer.h +++ b/components/squeezelite/equalizer.h @@ -3,18 +3,8 @@ * * (c) Philippe G. 2020, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/external/dac_external.c b/components/squeezelite/external/dac_external.c index 49c5bf69..10f7239e 100644 --- a/components/squeezelite/external/dac_external.c +++ b/components/squeezelite/external/dac_external.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/output_bt.c b/components/squeezelite/output_bt.c index 2def7c9c..8890280c 100644 --- a/components/squeezelite/output_bt.c +++ b/components/squeezelite/output_bt.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/output_embedded.c b/components/squeezelite/output_embedded.c index d66e2284..c9cc29cc 100644 --- a/components/squeezelite/output_embedded.c +++ b/components/squeezelite/output_embedded.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ #include "squeezelite.h" diff --git a/components/squeezelite/output_i2s.c b/components/squeezelite/output_i2s.c index e57a6abf..66ebc4b3 100644 --- a/components/squeezelite/output_i2s.c +++ b/components/squeezelite/output_i2s.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/squeezelite/tas57xx/dac_57xx.c b/components/squeezelite/tas57xx/dac_57xx.c index 7d30af94..ee5e391f 100644 --- a/components/squeezelite/tas57xx/dac_57xx.c +++ b/components/squeezelite/tas57xx/dac_57xx.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/tools/perf_trace.h b/components/tools/perf_trace.h index 1cd93859..ca7bccc8 100644 --- a/components/tools/perf_trace.h +++ b/components/tools/perf_trace.h @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/tools/tools.h b/components/tools/tools.h index 00da007d..5a76150e 100644 --- a/components/tools/tools.h +++ b/components/tools/tools.h @@ -3,18 +3,8 @@ * * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/components/tools/trace.h b/components/tools/trace.h index ae24c70a..0703061e 100644 --- a/components/tools/trace.h +++ b/components/tools/trace.h @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ diff --git a/main/esp_app_main.c b/main/esp_app_main.c index eb995eeb..083a6a3f 100644 --- a/main/esp_app_main.c +++ b/main/esp_app_main.c @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */ #define LOG_LOCAL_LEVEL ESP_LOG_DEBUG diff --git a/main/platform_esp32.h b/main/platform_esp32.h index 0291154c..25c42cb0 100644 --- a/main/platform_esp32.h +++ b/main/platform_esp32.h @@ -4,18 +4,8 @@ * (c) Sebastien 2019 * Philippe G. 2019, philippe_44@outlook.com * - * 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 3 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 . + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT * */