diff --git a/ChangeLog b/ChangeLog index 08c599f..88d0e83 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Version 0.12.0: + * Revert CEF version to 125 since 1st page may not be displayed. + * build script: cleaning code and allow downloading GDCEF releases on GitHub. + * Removing some CEF warnings and fix possible issue with cache folder. + * Breaking API: fix possible infinite loop callback on_page_failed. Update demos. + Version 0.11.0: * Update CEF version to 128. * Update script to use by default Godot version 4.3. diff --git a/VERSION b/VERSION index 78bc1ab..ac454c6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.10.0 +0.12.0 diff --git a/addons/gdcef/build.py b/addons/gdcef/build.py index c469d34..b249c97 100755 --- a/addons/gdcef/build.py +++ b/addons/gdcef/build.py @@ -52,7 +52,7 @@ # desired version (without 'v' and without godot version). You cannot choose # neither Godot version not CEF version. # If unset, then compile GCEF sources. -GITHUB_GDCEF_RELEASE = None # or "0.11.0" +GITHUB_GDCEF_RELEASE = None # or "0.12.0" # The hard-coded name of the folder that will hold all CEF built artifacts. # /!\ BEWARE /!\ diff --git a/addons/gdcef/plugin.cfg b/addons/gdcef/plugin.cfg index 5817c09..36a4d6b 100644 --- a/addons/gdcef/plugin.cfg +++ b/addons/gdcef/plugin.cfg @@ -3,5 +3,5 @@ name="GDCEF" description="Chromium Embedded Framework Webview for Godot >= 4.2" author="Quentin QUADRAT " -version="0.11.0" +version="0.12.0" script="plugin.gd" diff --git a/addons/gdcef/plugin.gd b/addons/gdcef/plugin.gd index ef2f207..5af87f6 100644 --- a/addons/gdcef/plugin.gd +++ b/addons/gdcef/plugin.gd @@ -1,10 +1,2 @@ @tool extends EditorPlugin - -func _enter_tree(): - # Initialization of the plugin goes here. - pass - -func _exit_tree(): - # Clean-up of the plugin goes here. - pass