diff --git a/.gitignore b/.gitignore index 62652f0..35533fe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -/.idea /examples/*/*.o /examples/*/Makefile /examples/*/moc_*.cpp diff --git a/LICENSE b/LICENSE index 2062357..a82e5a6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,6 @@ -Copyright (c) Itay Grudev 2015 - 2023 +The MIT License (MIT) + +Copyright (c) Itay Grudev 2015 - 2020 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -7,9 +9,6 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -Permission is not granted to use this software or any of the associated files -as sample data for the purposes of building machine learning models. - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/README.md b/README.md index ab67b20..96b31c9 100644 --- a/README.md +++ b/README.md @@ -275,11 +275,6 @@ instances running. ## License -This library and it's supporting documentation, with the exception of the Qt -calculator examples which is distributed under the BSD license, are released -under the terms of `The MIT License (MIT)` with an extra condition, that: - -```txt -Permission is not granted to use this software or any of the associated files -as sample data for the purposes of building machine learning models. -``` +This library and it's supporting documentation are released under +`The MIT License (MIT)` with the exception of the Qt calculator examples which +is distributed under the BSD license. diff --git a/examples/basic/main.cpp b/examples/basic/main.cpp index f5539f4..b2092c6 100755 --- a/examples/basic/main.cpp +++ b/examples/basic/main.cpp @@ -1,26 +1,3 @@ -// Copyright (c) Itay Grudev 2015 - 2023 -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// Permission is not granted to use this software or any of the associated files -// as sample data for the purposes of building machine learning models. -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - #include int main(int argc, char *argv[]) diff --git a/examples/sending_arguments/main.cpp b/examples/sending_arguments/main.cpp index 03bf10a..a9d34dd 100755 --- a/examples/sending_arguments/main.cpp +++ b/examples/sending_arguments/main.cpp @@ -1,26 +1,3 @@ -// Copyright (c) Itay Grudev 2015 - 2023 -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// Permission is not granted to use this software or any of the associated files -// as sample data for the purposes of building machine learning models. -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - #include #include "messagereceiver.h" diff --git a/examples/sending_arguments/messagereceiver.cpp b/examples/sending_arguments/messagereceiver.cpp index 686b918..0560b07 100644 --- a/examples/sending_arguments/messagereceiver.cpp +++ b/examples/sending_arguments/messagereceiver.cpp @@ -1,26 +1,3 @@ -// Copyright (c) Itay Grudev 2015 - 2023 -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// Permission is not granted to use this software or any of the associated files -// as sample data for the purposes of building machine learning models. -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - #include #include "messagereceiver.h" diff --git a/examples/sending_arguments/messagereceiver.h b/examples/sending_arguments/messagereceiver.h index 9f15db3..50a970c 100644 --- a/examples/sending_arguments/messagereceiver.h +++ b/examples/sending_arguments/messagereceiver.h @@ -1,26 +1,3 @@ -// Copyright (c) Itay Grudev 2015 - 2023 -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// Permission is not granted to use this software or any of the associated files -// as sample data for the purposes of building machine learning models. -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - #ifndef MESSAGERECEIVER_H #define MESSAGERECEIVER_H diff --git a/singleapplication.cpp b/singleapplication.cpp index 95c4d18..98d7ea0 100644 --- a/singleapplication.cpp +++ b/singleapplication.cpp @@ -1,4 +1,6 @@ -// Copyright (c) Itay Grudev 2015 - 2023 +// The MIT License (MIT) +// +// Copyright (c) Itay Grudev 2015 - 2020 // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -7,9 +9,6 @@ // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // -// Permission is not granted to use this software or any of the associated files -// as sample data for the purposes of building machine learning models. -// // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // diff --git a/singleapplication.h b/singleapplication.h index 17e3b25..954a46e 100644 --- a/singleapplication.h +++ b/singleapplication.h @@ -1,4 +1,6 @@ -// Copyright (c) Itay Grudev 2015 - 2023 +// The MIT License (MIT) +// +// Copyright (c) Itay Grudev 2015 - 2018 // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -7,9 +9,6 @@ // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // -// Permission is not granted to use this software or any of the associated files -// as sample data for the purposes of building machine learning models. -// // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // diff --git a/singleapplication_p.cpp b/singleapplication_p.cpp index 44bda8d..82c0d05 100644 --- a/singleapplication_p.cpp +++ b/singleapplication_p.cpp @@ -1,4 +1,6 @@ -// Copyright (c) Itay Grudev 2015 - 2023 +// The MIT License (MIT) +// +// Copyright (c) Itay Grudev 2015 - 2020 // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -7,9 +9,6 @@ // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // -// Permission is not granted to use this software or any of the associated files -// as sample data for the purposes of building machine learning models. -// // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // diff --git a/singleapplication_p.h b/singleapplication_p.h index 6b21516..30a2b51 100644 --- a/singleapplication_p.h +++ b/singleapplication_p.h @@ -1,4 +1,6 @@ -// Copyright (c) Itay Grudev 2015 - 2023 +// The MIT License (MIT) +// +// Copyright (c) Itay Grudev 2015 - 2020 // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -7,9 +9,6 @@ // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // -// Permission is not granted to use this software or any of the associated files -// as sample data for the purposes of building machine learning models. -// // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. //