From 401b55350d04200323605a74a7ab039c116d27dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Fri, 30 Nov 2018 09:11:06 +0100 Subject: [PATCH 1/7] Create LICENSE.md --- LICENSE.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 00000000..ded62bc6 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,31 @@ +# CEF4Delphi + +CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based +browser in Delphi applications. + +The original license of DCEF3 still applies to CEF4Delphi. + +For more information about CEF4Delphi visit : + https://www.briskbard.com/index.php?lang=en&pageid=cef + + Copyright © 2018 Salvador Diaz Fau. All rights reserved. + + +## Original DCEF3 license + +## Delphi Chromium Embedded 3 + + Usage allowed under the restrictions of the Lesser GNU General Public License + or alternatively the restrictions of the Mozilla Public License 1.1 + + Software distributed under the License is distributed on an "AS IS" basis, + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for + the specific language governing rights and limitations under the License. + + Unit owner : Henri Gourvest + Web site : http://www.progdigy.com + Repository : http://code.google.com/p/delphichromiumembedded/ + Group : http://groups.google.com/group/delphichromiumembedded + + Embarcadero Technologies, Inc is not permitted to use or redistribute + this source code without explicit permission. From bc19071005f60360f0ff3968404838bb8fcf923a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Fri, 30 Nov 2018 09:16:39 +0100 Subject: [PATCH 2/7] Update text formatting --- LICENSE.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index ded62bc6..b9ce3da8 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -13,7 +13,7 @@ For more information about CEF4Delphi visit : ## Original DCEF3 license -## Delphi Chromium Embedded 3 +### Delphi Chromium Embedded 3 Usage allowed under the restrictions of the Lesser GNU General Public License or alternatively the restrictions of the Mozilla Public License 1.1 @@ -22,10 +22,12 @@ For more information about CEF4Delphi visit : WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. - Unit owner : Henri Gourvest - Web site : http://www.progdigy.com - Repository : http://code.google.com/p/delphichromiumembedded/ - Group : http://groups.google.com/group/delphichromiumembedded +
+
Unit owner :
Henri Gourvest
+
Web site :
http://www.progdigy.com
+
Repository :
http://code.google.com/p/delphichromiumembedded/
+
Group :
http://groups.google.com/group/delphichromiumembedded
+
Embarcadero Technologies, Inc is not permitted to use or redistribute this source code without explicit permission. From 01dd1bfb6487ff359bee02b4dba50abc1af8df0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Fri, 30 Nov 2018 10:12:24 +0100 Subject: [PATCH 3/7] Create Delphinus.Info.json --- Delphinus.Info.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Delphinus.Info.json diff --git a/Delphinus.Info.json b/Delphinus.Info.json new file mode 100644 index 00000000..d84a6808 --- /dev/null +++ b/Delphinus.Info.json @@ -0,0 +1,24 @@ +{ + "id": "{45F23B07-EB18-4F94-B753-CDAA46B6B6D4}", + "name": "", + "picture": "packages\\res\\tchromium.png", + "licenses": + [ + { + "type": "LGPL-2.1-only", + "file": "LICENSE.md" + } + { + "type": "MPL-1.1", + "file": "LICENSE.md" + } + ], + "platforms": "Win32;Win64", + "package_compiler_min": , + "package_compiler_max": , + "compiler_min": , + "compiler_max": , + "first_version": "v70.0.3538.102", + "report_url": "", + "dependencies": [] +} From 8b655ef68cf60b3f1901a7c011a055037664e278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Fri, 30 Nov 2018 10:32:07 +0100 Subject: [PATCH 4/7] Create Delphinus.Install.json --- Delphinus.Install.json | 44 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Delphinus.Install.json diff --git a/Delphinus.Install.json b/Delphinus.Install.json new file mode 100644 index 00000000..807c73df --- /dev/null +++ b/Delphinus.Install.json @@ -0,0 +1,44 @@ +{ + "search_pathes": + [ + { + "pathes": "source", + "platforms": "Win32;Win64" + } + ], + "browsing_pathes": + [ + { + "pathes": "source", + "platforms": "Win32;Win64" + } + ], + + "source_folders": + [ + { + "folder": "\\", + "base": "\\", + "recursive": true, + "filter": "*;*.*" + } + ], + + "raw_folders": [], + + "projects": + [ + { + "project": "packages\\CEF4Delphi.dproj", + "compiler_min": 22, + "compiler_max": 31, + } + { + "project": "packages\\CEF4Delphi_FMX.dproj", + "compiler_min": 32, + "compiler_max": , + } + ], + + "experts": [] +} From 063f7f9d42be24e57f2c4e20430b5582bc4482a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Fri, 30 Nov 2018 10:36:16 +0100 Subject: [PATCH 5/7] Added the Delphinus-Support tag --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index dea4b895..86640ce9 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,6 @@ CEF4Delphi was developed and tested on Delphi 10.2 Tokyo and it has been tested If you find this project useful, please consider making a donation. [![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FTSD2CCGXTD86) + +Additional: +Delphinus-Support From 6214f4d7ae0c34d73fd5019dd5ce6d7a8a69781f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Fri, 30 Nov 2018 10:38:59 +0100 Subject: [PATCH 6/7] Removed empty property --- Delphinus.Install.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Delphinus.Install.json b/Delphinus.Install.json index 807c73df..9bc914fd 100644 --- a/Delphinus.Install.json +++ b/Delphinus.Install.json @@ -35,8 +35,7 @@ } { "project": "packages\\CEF4Delphi_FMX.dproj", - "compiler_min": 32, - "compiler_max": , + "compiler_min": 32 } ], From d0d85d65ad015331beff4bc4402c767cdc38af74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Fri, 30 Nov 2018 10:40:07 +0100 Subject: [PATCH 7/7] Removed empty properties --- Delphinus.Info.json | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Delphinus.Info.json b/Delphinus.Info.json index d84a6808..43ef2307 100644 --- a/Delphinus.Info.json +++ b/Delphinus.Info.json @@ -1,6 +1,5 @@ { "id": "{45F23B07-EB18-4F94-B753-CDAA46B6B6D4}", - "name": "", "picture": "packages\\res\\tchromium.png", "licenses": [ @@ -14,11 +13,5 @@ } ], "platforms": "Win32;Win64", - "package_compiler_min": , - "package_compiler_max": , - "compiler_min": , - "compiler_max": , - "first_version": "v70.0.3538.102", - "report_url": "", "dependencies": [] }