diff --git a/README.rst b/README.rst index b5dd59cfe..c5a1b4f93 100644 --- a/README.rst +++ b/README.rst @@ -24,16 +24,16 @@ Javet If you like my work, please **Star** this project. And, you may follow me `@sjtucaocao `_, or visit http://caoccao.blogspot.com/. And the official support channel is at `discord `_. -๐Ÿ’– If you use Mac OS (x86_64), please be aware that the Mac OS (x86_64) build will discontinue anytime because my `MacBook Air mid-2012 `_ will be soon deprecated by new version of V8. Please `donate `_ to support me purchasing a new Mac OS (x86_64) device. Or, if you have a retired Mac OS (x86_64) device and are fine with mailing it to me, that will also be great. Thank you for supporting Javet. +๐Ÿ’– If you use Mac OS (x86_64), please be aware that the Mac OS (x86_64) build will discontinue anytime because my `MacBook Air mid-2012 `_ will be soon deprecated by new version of V8. Please `donate `_ to support me purchasing a new Mac OS (x86_64) device. Or, if you have a retired Mac OS (x86_64) device and are fine with mailing it to me, that will also be great. Thank you for supporting Javet. There is no new official releases after v1.1.0. Please contact the maintainer for the new private releases. -๐Ÿ’– If you use Mac OS (arm64), please thank `@longwa `_ for building the M1 version. However, that's a temporary solution because I don't have any Mac OS (arm64) device, so there is no support. Please `donate `_ to support me purchasing a new Mac OS (arm64) device. +๐Ÿ’– If you use Mac OS (arm64), there is no new releases after v1.1.0. That's because I don't have any Mac OS (arm64) device to produce any new builds. Please `donate `_ to support me purchasing a new Mac OS (arm64) device. Major Features ============== * Linux (x86_64) + Mac OS (x86_64, arm64) + ๏ธWindows (x86_64) * Android (arm, arm64, x86 and x86_64) -* Node.js ``v16.14.0`` + V8 ``v9.9.115.9`` +* Node.js ``v16.14.2`` + V8 ``v10.0.139.6`` * Dynamic switch between Node.js and V8 mode (`Which mode do you prefer? `_) * Polyfill V8 mode with `Javenode `_ * V8 API exposure in JVM @@ -58,14 +58,14 @@ Maven com.caoccao.javet javet - 1.1.1 + 1.1.2 com.caoccao.javet javet-macos - 1.1.1 + 1.1.0 Gradle Kotlin DSL @@ -73,18 +73,18 @@ Gradle Kotlin DSL .. code-block:: kotlin - implementation("com.caoccao.javet:javet:1.1.1") // Linux and Windows (x86_64) - implementation("com.caoccao.javet:javet-macos:1.1.1") // Mac OS (x86_64 and arm64) - implementation("com.caoccao.javet:javet-android:1.1.1") // Android (arm, arm64, x86 and x86_64) + implementation("com.caoccao.javet:javet:1.1.2") // Linux and Windows (x86_64) + implementation("com.caoccao.javet:javet-macos:1.1.0") // Mac OS (x86_64 and arm64) + implementation("com.caoccao.javet:javet-android:1.1.2") // Android (arm, arm64, x86 and x86_64) Gradle Groovy DSL ^^^^^^^^^^^^^^^^^ .. code-block:: groovy - implementation 'com.caoccao.javet:javet:1.1.1' // Linux and Windows (x86_64) - implementation 'com.caoccao.javet:javet-macos:1.1.1' // Mac OS (x86_64 and arm64) - implementation 'com.caoccao.javet:javet-android:1.1.1' // Android (arm, arm64, x86 and x86_64) + implementation 'com.caoccao.javet:javet:1.1.2' // Linux and Windows (x86_64) + implementation 'com.caoccao.javet:javet-macos:1.1.0' // Mac OS (x86_64 and arm64) + implementation 'com.caoccao.javet:javet-android:1.1.2' // Android (arm, arm64, x86 and x86_64) Hello Javet ----------- diff --git a/android/javet-android/build.gradle.kts b/android/javet-android/build.gradle.kts index 40c0ded4f..62540e427 100644 --- a/android/javet-android/build.gradle.kts +++ b/android/javet-android/build.gradle.kts @@ -21,7 +21,7 @@ plugins { id("com.android.library") } -version = "1.1.1" +version = "1.1.2" android { compileSdk = 30 diff --git a/android/javet-android/src/main/AndroidManifest.xml b/android/javet-android/src/main/AndroidManifest.xml index 24e4aeed8..0d7d1b28e 100644 --- a/android/javet-android/src/main/AndroidManifest.xml +++ b/android/javet-android/src/main/AndroidManifest.xml @@ -2,7 +2,7 @@ \ No newline at end of file diff --git a/android/pom.xml b/android/pom.xml index 57e464c5c..8eb857c85 100644 --- a/android/pom.xml +++ b/android/pom.xml @@ -3,7 +3,7 @@ com.caoccao.javet javet-android - 1.1.1 + 1.1.2 javet aar Javet is Java + V8 (JAVa + V + EighT). It is an awesome way of embedding V8 in Java. @@ -29,7 +29,7 @@ scm:git:git://github.com/caoccao/Javet.git scm:git:git@github.com:caoccao/caoccao.git https://github.com/caoccao/Javet - 1.1.1 + 1.1.2 diff --git a/build.gradle.kts b/build.gradle.kts index 585145103..7cfa905a4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,18 +1,17 @@ /* - * Copyright 2021. caoccao.com Sam Cao + * Copyright (c) 2021-2022. caoccao.com Sam Cao * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * http://www.apache.org/licenses/LICENSE-2.0 * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ plugins { @@ -26,7 +25,7 @@ repositories { } group = "com.caoccao.javet" -version = "1.1.1" +version = "1.1.2" dependencies { testImplementation("org.eclipse.jetty.websocket:websocket-server:9.4.44.v20210927") diff --git a/cpp/build-android.sh b/cpp/build-android.sh index 5ed38f920..b89e6a69b 100755 --- a/cpp/build-android.sh +++ b/cpp/build-android.sh @@ -2,7 +2,7 @@ # Usage for V8: sh build-android.sh -DV8_DIR=${HOME}/v8 -DCMAKE_ANDROID_NDK=${HOME}/android -DCMAKE_ANDROID_ARCH=arm64 # Usage for Node: sh build-android.sh -DNODE_DIR=${HOME}/node -DCMAKE_ANDROID_NDK=${HOME}/android -DCMAKE_ANDROID_ARCH=arm64 -JAVET_VERSION=1.1.1 +JAVET_VERSION=1.1.2 rm -rf build mkdir build cd build diff --git a/cpp/build-linux.sh b/cpp/build-linux.sh index 592dfc6af..95ce1d8ef 100755 --- a/cpp/build-linux.sh +++ b/cpp/build-linux.sh @@ -2,7 +2,7 @@ # Usage for V8: sh build-linux.sh -DV8_DIR=${HOME}/v8 # Usage for Node: sh build-linux.sh -DNODE_DIR=${HOME}/node -JAVET_VERSION=1.1.1 +JAVET_VERSION=1.1.2 rm -rf build mkdir build cd build diff --git a/cpp/build-macos.sh b/cpp/build-macos.sh index e41e2a1c0..9bf48826d 100755 --- a/cpp/build-macos.sh +++ b/cpp/build-macos.sh @@ -2,7 +2,7 @@ # Usage for V8: sh build-macos.sh -DV8_DIR=${HOME}/v8 # Usage for Node: sh build-macos.sh -DNODE_DIR=${HOME}/node -JAVET_VERSION=1.1.1 +JAVET_VERSION=1.1.2 rm -rf build mkdir build cd build diff --git a/cpp/build-windows.cmd b/cpp/build-windows.cmd index 11320ded6..838106c8a 100644 --- a/cpp/build-windows.cmd +++ b/cpp/build-windows.cmd @@ -1,7 +1,7 @@ @echo off REM Usage for V8: build -DV8_DIR=C:\v8 REM Usage for Node: build -DNODE_DIR=C:\node -SET JAVET_VERSION=1.1.1 +SET JAVET_VERSION=1.1.2 rd /s/q build mkdir build cd build diff --git a/cpp/jni/javet_callbacks.cpp b/cpp/jni/javet_callbacks.cpp index 9fb64ca9b..6d31f5399 100644 --- a/cpp/jni/javet_callbacks.cpp +++ b/cpp/jni/javet_callbacks.cpp @@ -236,6 +236,7 @@ namespace Javet { void JavetCallbackContextReference::CallFunction(const v8::FunctionCallbackInfo& args) { FETCH_JNI_ENV(GlobalJavaVM); + Javet::Exceptions::ClearJNIException(jniEnv); v8::Isolate* v8Isolate = args.GetIsolate(); V8IsolateScope v8IsolateScope(v8Isolate); V8HandleScope v8HandleScope(v8Isolate); diff --git a/cpp/jni/javet_converter.cpp b/cpp/jni/javet_converter.cpp index 7edaa3560..25fb51df0 100644 --- a/cpp/jni/javet_converter.cpp +++ b/cpp/jni/javet_converter.cpp @@ -417,15 +417,16 @@ namespace Javet { std::unique_ptr ToV8ScriptOringinPointer(JNIEnv* jniEnv, const V8LocalContext& v8Context, jstring& mResourceName, jint& mResourceLineOffset, jint& mResourceColumnOffset, jint& mScriptId, jboolean& mIsWASM, jboolean& mIsModule) { return std::make_unique( + v8Context->GetIsolate(), ToV8String(jniEnv, v8Context, mResourceName), - ToV8Integer(v8Context, mResourceLineOffset), - ToV8Integer(v8Context, mResourceColumnOffset), - V8LocalBoolean(), - ToV8Integer(v8Context, mScriptId), + (int)mResourceLineOffset, + (int)mResourceColumnOffset, + false, + (int)mScriptId, V8LocalValue(), - V8LocalBoolean(), - ToV8Boolean(v8Context, mIsWASM), - ToV8Boolean(v8Context, mIsModule), + false, + (bool)mIsWASM, + (bool)mIsModule, V8LocalPrimitiveArray()); } diff --git a/cpp/jni/javet_resource_node.rc b/cpp/jni/javet_resource_node.rc index 07c9946f3..41a292423 100644 --- a/cpp/jni/javet_resource_node.rc +++ b/cpp/jni/javet_resource_node.rc @@ -61,8 +61,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,1,1,0 - PRODUCTVERSION 1,1,1,0 + FILEVERSION 1,1,2,0 + PRODUCTVERSION 1,1,2,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -79,12 +79,12 @@ BEGIN BEGIN VALUE "CompanyName", "caoccao.com" VALUE "FileDescription", "caoccao.com" - VALUE "FileVersion", "1.1.1.0" - VALUE "InternalName", "libjavet-node-windows-x86_64.v.1.1.1.dll" + VALUE "FileVersion", "1.1.2.0" + VALUE "InternalName", "libjavet-node-windows-x86_64.v.1.1.2.dll" VALUE "LegalCopyright", "Copyright (C) 2021" - VALUE "OriginalFilename", "libjavet-node-windows-x86_64.v.1.1.1.dll" + VALUE "OriginalFilename", "libjavet-node-windows-x86_64.v.1.1.2.dll" VALUE "ProductName", "Javet Windows" - VALUE "ProductVersion", "1.1.1.0" + VALUE "ProductVersion", "1.1.2.0" END END BLOCK "VarFileInfo" diff --git a/cpp/jni/javet_resource_v8.rc b/cpp/jni/javet_resource_v8.rc index db7294c96..31918fcb2 100644 --- a/cpp/jni/javet_resource_v8.rc +++ b/cpp/jni/javet_resource_v8.rc @@ -61,8 +61,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,1,1,0 - PRODUCTVERSION 1,1,1,0 + FILEVERSION 1,1,2,0 + PRODUCTVERSION 1,1,2,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -79,12 +79,12 @@ BEGIN BEGIN VALUE "CompanyName", "caoccao.com" VALUE "FileDescription", "caoccao.com" - VALUE "FileVersion", "1.1.1.0" - VALUE "InternalName", "libjavet-v8-windows-x86_64.v.1.1.1.dll" + VALUE "FileVersion", "1.1.2.0" + VALUE "InternalName", "libjavet-v8-windows-x86_64.v.1.1.2.dll" VALUE "LegalCopyright", "Copyright (C) 2021" - VALUE "OriginalFilename", "libjavet-v8-windows-x86_64.v.1.1.1.dll" + VALUE "OriginalFilename", "libjavet-v8-windows-x86_64.v.1.1.2.dll" VALUE "ProductName", "Javet Windows" - VALUE "ProductVersion", "1.1.1.0" + VALUE "ProductVersion", "1.1.2.0" END END BLOCK "VarFileInfo" diff --git a/docker/linux-x86_64/base.Dockerfile b/docker/linux-x86_64/base.Dockerfile index d696b41f8..f31110ca6 100644 --- a/docker/linux-x86_64/base.Dockerfile +++ b/docker/linux-x86_64/base.Dockerfile @@ -13,14 +13,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Usage: docker build -t sjtucaocao/javet:1.1.1 -f docker/linux-x86_64/base.Dockerfile . +# Usage: docker build -t sjtucaocao/javet:1.1.2 -f docker/linux-x86_64/base.Dockerfile . FROM ubuntu:20.04 WORKDIR / # Update Ubuntu ENV DEBIAN_FRONTEND=noninteractive -RUN echo Cache V4 +RUN echo Cache V5 RUN apt-get update RUN apt-get install --upgrade -qq -y --no-install-recommends git curl wget build-essential software-properties-common patchelf maven sudo zip unzip execstack cmake RUN apt-get install --upgrade -qq -y --no-install-recommends python3 python python3-pip python3-distutils python3-testresources @@ -46,7 +46,7 @@ ENV PATH=/google/depot_tools:$PATH WORKDIR /google RUN fetch v8 WORKDIR /google/v8 -RUN git checkout 9.9.115.9 +RUN git checkout 10.0.139.6 RUN sed -i 's/snapcraft/nosnapcraft/g' ./build/install-build-deps.sh RUN ./build/install-build-deps.sh RUN sed -i 's/nosnapcraft/snapcraft/g' ./build/install-build-deps.sh @@ -67,7 +67,7 @@ RUN echo V8 build is completed. WORKDIR / RUN git clone https://github.com/nodejs/node.git WORKDIR /node -RUN git checkout v16.14.0 +RUN git checkout v16.14.2 RUN echo Node.js preparation is completed. # Build Node.js diff --git a/docker/linux-x86_64/build.Dockerfile b/docker/linux-x86_64/build.Dockerfile index 5fd76f47a..69448ff21 100644 --- a/docker/linux-x86_64/build.Dockerfile +++ b/docker/linux-x86_64/build.Dockerfile @@ -15,7 +15,7 @@ # Usage: docker build -t javet:local -f docker/linux-x86_64/build.Dockerfile . -FROM sjtucaocao/javet:1.1.1 +FROM sjtucaocao/javet:1.1.2 WORKDIR / # Copy Javet diff --git a/docker/windows-x86_64/base.Dockerfile b/docker/windows-x86_64/base.Dockerfile index 272952736..7462060ae 100644 --- a/docker/windows-x86_64/base.Dockerfile +++ b/docker/windows-x86_64/base.Dockerfile @@ -25,7 +25,7 @@ # 2. Restart WSL2 # 3. Restart docker -# Usage: docker build -t sjtucaocao/javet-windows:1.1.1 -m 4G -f docker/windows-x86_64/base.Dockerfile . +# Usage: docker build -t sjtucaocao/javet-windows:1.1.2 -m 4G -f docker/windows-x86_64/base.Dockerfile . # https://hub.docker.com/_/microsoft-windows FROM mcr.microsoft.com/windows:20H2-amd64 @@ -60,7 +60,7 @@ ENV DEPOT_TOOLS_WIN_TOOLCHAIN=0 WORKDIR /google RUN fetch v8 WORKDIR /google/v8 -RUN git checkout 9.9.115.9 +RUN git checkout 10.0.139.6 WORKDIR /google RUN gclient sync RUN echo V8 preparation is completed. @@ -103,7 +103,7 @@ RUN powershell -ExecutionPolicy Bypass -c "iex(New-Object Net.WebClient).Downloa RUN choco install -y nasm RUN git clone https://github.com/nodejs/node.git WORKDIR /node -RUN git checkout v16.14.0 +RUN git checkout v16.14.2 RUN echo Node.js preparation is completed. # Build Node.js diff --git a/docker/windows-x86_64/build.Dockerfile b/docker/windows-x86_64/build.Dockerfile index 07ab4e26c..50a324886 100644 --- a/docker/windows-x86_64/build.Dockerfile +++ b/docker/windows-x86_64/build.Dockerfile @@ -15,7 +15,7 @@ # Usage: docker build -t javet:local -f docker/windows-x86_64/build.Dockerfile . -FROM sjtucaocao/javet-windows:1.1.0.1 +FROM sjtucaocao/javet-windows:1.1.2 SHELL ["cmd", "/S", "/C"] WORKDIR / diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index 691c31573..3db6736d2 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '1.1.1', + VERSION: '1.1.2', LANGUAGE: 'en, zh-CN', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/conf.py b/docs/conf.py index b6f77ff7e..9b51d74ae 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Sam Cao' # The full version, including alpha/beta/rc tags -release = '1.1.1' +release = '1.1.2' # -- General configuration --------------------------------------------------- diff --git a/docs/development/build.html b/docs/development/build.html index 4d9b6da67..2bebf1c74 100644 --- a/docs/development/build.html +++ b/docs/development/build.html @@ -5,7 +5,7 @@ - Build Javet - Javet 1.1.1 documentation + Build Javet - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/development/build_javet_with_docker.html b/docs/development/build_javet_with_docker.html index b58e9766f..db961d4d2 100644 --- a/docs/development/build_javet_with_docker.html +++ b/docs/development/build_javet_with_docker.html @@ -5,7 +5,7 @@ - Build Javet with Docker - Javet 1.1.1 documentation + Build Javet with Docker - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/development/build_javet_with_pre_built_binaries.html b/docs/development/build_javet_with_pre_built_binaries.html index b5beb09c9..513073504 100644 --- a/docs/development/build_javet_with_pre_built_binaries.html +++ b/docs/development/build_javet_with_pre_built_binaries.html @@ -5,7 +5,7 @@ - Build Javet with Pre-built Binaries - Javet 1.1.1 documentation + Build Javet with Pre-built Binaries - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/development/debug_with_chrome_developer_tools.html b/docs/development/debug_with_chrome_developer_tools.html index dbc831195..a9cd1d9bf 100644 --- a/docs/development/debug_with_chrome_developer_tools.html +++ b/docs/development/debug_with_chrome_developer_tools.html @@ -5,7 +5,7 @@ - Debug with Chrome Developer Tools - Javet 1.1.1 documentation + Debug with Chrome Developer Tools - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/development/design.html b/docs/development/design.html index 1b070ee71..2a90238d1 100644 --- a/docs/development/design.html +++ b/docs/development/design.html @@ -5,7 +5,7 @@ - Javet Design - Javet 1.1.1 documentation + Javet Design - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/development/index.html b/docs/development/index.html index 64ef7439e..08b246b6e 100644 --- a/docs/development/index.html +++ b/docs/development/index.html @@ -5,7 +5,7 @@ - Development - Javet 1.1.1 documentation + Development - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/development/test.html b/docs/development/test.html index 8d2c0ddc8..e09b58e33 100644 --- a/docs/development/test.html +++ b/docs/development/test.html @@ -5,7 +5,7 @@ - Test Javet - Javet 1.1.1 documentation + Test Javet - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/development/tools.html b/docs/development/tools.html index 57c512c85..5cfd483b3 100644 --- a/docs/development/tools.html +++ b/docs/development/tools.html @@ -5,7 +5,7 @@ - Development Tools - Javet 1.1.1 documentation + Development Tools - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/background/history_with_j2v8.html b/docs/faq/background/history_with_j2v8.html index 424d3dce5..0b2a857ba 100644 --- a/docs/faq/background/history_with_j2v8.html +++ b/docs/faq/background/history_with_j2v8.html @@ -5,7 +5,7 @@ - History with J2V8 - Javet 1.1.1 documentation + History with J2V8 - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/background/index.html b/docs/faq/background/index.html index aa6ce80f7..53e619931 100644 --- a/docs/faq/background/index.html +++ b/docs/faq/background/index.html @@ -5,7 +5,7 @@ - Background - Javet 1.1.1 documentation + Background - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/background/what_is_the_motivation.html b/docs/faq/background/what_is_the_motivation.html index 7e2218902..88023a982 100644 --- a/docs/faq/background/what_is_the_motivation.html +++ b/docs/faq/background/what_is_the_motivation.html @@ -5,7 +5,7 @@ - What is the Motivation? - Javet 1.1.1 documentation + What is the Motivation? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/development/how_to_think_in_javet.html b/docs/faq/development/how_to_think_in_javet.html index 66e2b7cc6..ed6ae8798 100644 --- a/docs/faq/development/how_to_think_in_javet.html +++ b/docs/faq/development/how_to_think_in_javet.html @@ -5,7 +5,7 @@ - How to Think in Javet? - Javet 1.1.1 documentation + How to Think in Javet? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/development/index.html b/docs/faq/development/index.html index 8a3ed5745..fb5d92582 100644 --- a/docs/faq/development/index.html +++ b/docs/faq/development/index.html @@ -5,7 +5,7 @@ - Development - Javet 1.1.1 documentation + Development - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/development/where_are_es6_api_in_v8_mode.html b/docs/faq/development/where_are_es6_api_in_v8_mode.html index e5bb688ad..c422d8d82 100644 --- a/docs/faq/development/where_are_es6_api_in_v8_mode.html +++ b/docs/faq/development/where_are_es6_api_in_v8_mode.html @@ -5,7 +5,7 @@ - Where are ES6 API in V8 Mode? - Javet 1.1.1 documentation + Where are ES6 API in V8 Mode? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/development/where_are_the_examples.html b/docs/faq/development/where_are_the_examples.html index 81ff11d20..4e3014e6d 100644 --- a/docs/faq/development/where_are_the_examples.html +++ b/docs/faq/development/where_are_the_examples.html @@ -5,7 +5,7 @@ - Where are the Examples? - Javet 1.1.1 documentation + Where are the Examples? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/development/why_is_the_inspector_disabled_in_node_js_mode.html b/docs/faq/development/why_is_the_inspector_disabled_in_node_js_mode.html index 4b806e05d..6b93c101a 100644 --- a/docs/faq/development/why_is_the_inspector_disabled_in_node_js_mode.html +++ b/docs/faq/development/why_is_the_inspector_disabled_in_node_js_mode.html @@ -5,7 +5,7 @@ - Why is the Inspector Disabled in Node.js Mode? - Javet 1.1.1 documentation + Why is the Inspector Disabled in Node.js Mode? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/environment/can_javet_support_legacy_linux.html b/docs/faq/environment/can_javet_support_legacy_linux.html index 1a75988e9..f03ee0e9e 100644 --- a/docs/faq/environment/can_javet_support_legacy_linux.html +++ b/docs/faq/environment/can_javet_support_legacy_linux.html @@ -5,7 +5,7 @@ - Can Javet Support Legacy Linux? - Javet 1.1.1 documentation + Can Javet Support Legacy Linux? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/environment/can_javet_support_mac.html b/docs/faq/environment/can_javet_support_mac.html index 796d95112..d9223f78d 100644 --- a/docs/faq/environment/can_javet_support_mac.html +++ b/docs/faq/environment/can_javet_support_mac.html @@ -5,7 +5,7 @@ - Can Javet Support Mac? - Javet 1.1.1 documentation + Can Javet Support Mac? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/environment/index.html b/docs/faq/environment/index.html index 8bfb169d3..82a1248cc 100644 --- a/docs/faq/environment/index.html +++ b/docs/faq/environment/index.html @@ -5,7 +5,7 @@ - Environment - Javet 1.1.1 documentation + Environment - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/index.html b/docs/faq/index.html index cad97d271..13aba1cf5 100644 --- a/docs/faq/index.html +++ b/docs/faq/index.html @@ -5,7 +5,7 @@ - FAQ - Javet 1.1.1 documentation + FAQ - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/troubleshooting/a_dynamic_link_library_dll_initialization_routine_failed.html b/docs/faq/troubleshooting/a_dynamic_link_library_dll_initialization_routine_failed.html index 151120ae5..894ca2062 100644 --- a/docs/faq/troubleshooting/a_dynamic_link_library_dll_initialization_routine_failed.html +++ b/docs/faq/troubleshooting/a_dynamic_link_library_dll_initialization_routine_failed.html @@ -5,7 +5,7 @@ - A dynamic link library (DLL) initialization routine failed - Javet 1.1.1 documentation + A dynamic link library (DLL) initialization routine failed - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/troubleshooting/can_i_debug_javet_in_chrome_dev_tools.html b/docs/faq/troubleshooting/can_i_debug_javet_in_chrome_dev_tools.html index 030dfb7a0..af62d1397 100644 --- a/docs/faq/troubleshooting/can_i_debug_javet_in_chrome_dev_tools.html +++ b/docs/faq/troubleshooting/can_i_debug_javet_in_chrome_dev_tools.html @@ -5,7 +5,7 @@ - Can I Debug Javet in Chrome DevTools? - Javet 1.1.1 documentation + Can I Debug Javet in Chrome DevTools? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/troubleshooting/index.html b/docs/faq/troubleshooting/index.html index 302fcfaed..427447956 100644 --- a/docs/faq/troubleshooting/index.html +++ b/docs/faq/troubleshooting/index.html @@ -5,7 +5,7 @@ - Troubleshooting - Javet 1.1.1 documentation + Troubleshooting - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/faq/troubleshooting/why_node_js_crashes_when_being_closed.html b/docs/faq/troubleshooting/why_node_js_crashes_when_being_closed.html index 9adee9e50..8d8c693a9 100644 --- a/docs/faq/troubleshooting/why_node_js_crashes_when_being_closed.html +++ b/docs/faq/troubleshooting/why_node_js_crashes_when_being_closed.html @@ -5,7 +5,7 @@ - Why Node.js Crashes When being Closed? - Javet 1.1.1 documentation + Why Node.js Crashes When being Closed? - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/genindex.html b/docs/genindex.html index 0aff4f492..2ec7bdefd 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -4,7 +4,7 @@ - Index - Javet 1.1.1 documentation + Index - Javet 1.1.2 documentation @@ -123,7 +123,7 @@
@@ -149,7 +149,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/index.html b/docs/index.html index b865ffc53..4db188aae 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,7 +5,7 @@ - Javet 1.1.1 documentation + Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation @@ -295,15 +295,15 @@

Javet

Linux Build Android Build

Javet is Java + V8 (JAVa + V + EighT). It is an awesome way of embedding Node.js and V8 in Java.

If you like my work, please Star this project. And, you may follow me @sjtucaocao, or visit http://caoccao.blogspot.com/. And the official support channel is at discord.

-

๐Ÿ’– If you use Mac OS (x86_64), please be aware that the Mac OS (x86_64) build will discontinue anytime because my MacBook Air mid-2012 will be soon deprecated by new version of V8. Please donate to support me purchasing a new Mac OS (x86_64) device. Or, if you have a retired Mac OS (x86_64) device and are fine with mailing it to me, that will also be great. Thank you for supporting Javet.

-

๐Ÿ’– If you use Mac OS (arm64), please thank @longwa for building the M1 version. However, that's a temporary solution because I don't have any Mac OS (arm64) device, so there is no support. Please donate to support me purchasing a new Mac OS (arm64) device.

+

๐Ÿ’– If you use Mac OS (x86_64), please be aware that the Mac OS (x86_64) build will discontinue anytime because my MacBook Air mid-2012 will be soon deprecated by new version of V8. Please donate to support me purchasing a new Mac OS (x86_64) device. Or, if you have a retired Mac OS (x86_64) device and are fine with mailing it to me, that will also be great. Thank you for supporting Javet. There is no new official releases after v1.1.0. Please contact the maintainer for the new private releases.

+

๐Ÿ’– If you use Mac OS (arm64), there is no new releases after v1.1.0. That's because I don't have any Mac OS (arm64) device to produce any new builds. Please donate to support me purchasing a new Mac OS (arm64) device.

Major Featuresยถ

Gradle Kotlin DSLยถ

-
implementation("com.caoccao.javet:javet:1.1.1") // Linux and Windows (x86_64)
-implementation("com.caoccao.javet:javet-macos:1.1.1") // Mac OS (x86_64 and arm64)
-implementation("com.caoccao.javet:javet-android:1.1.1") // Android (arm, arm64, x86 and x86_64)
+
implementation("com.caoccao.javet:javet:1.1.2") // Linux and Windows (x86_64)
+implementation("com.caoccao.javet:javet-macos:1.1.0") // Mac OS (x86_64 and arm64)
+implementation("com.caoccao.javet:javet-android:1.1.2") // Android (arm, arm64, x86 and x86_64)
 

Gradle Groovy DSLยถ

-
implementation 'com.caoccao.javet:javet:1.1.1' // Linux and Windows (x86_64)
-implementation 'com.caoccao.javet:javet-macos:1.1.1' // Mac OS (x86_64 and arm64)
-implementation 'com.caoccao.javet:javet-android:1.1.1' // Android (arm, arm64, x86 and x86_64)
+
implementation 'com.caoccao.javet:javet:1.1.2' // Linux and Windows (x86_64)
+implementation 'com.caoccao.javet:javet-macos:1.1.0' // Mac OS (x86_64 and arm64)
+implementation 'com.caoccao.javet:javet-android:1.1.2' // Android (arm, arm64, x86 and x86_64)
 
diff --git a/docs/reference/converters/bridge_converter.html b/docs/reference/converters/bridge_converter.html index 1a59c08b5..9491efcbc 100644 --- a/docs/reference/converters/bridge_converter.html +++ b/docs/reference/converters/bridge_converter.html @@ -5,7 +5,7 @@ - Bridge Converter - Javet 1.1.1 documentation + Bridge Converter - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/reference/converters/custom_converter.html b/docs/reference/converters/custom_converter.html index 4db940935..7b53e3d79 100644 --- a/docs/reference/converters/custom_converter.html +++ b/docs/reference/converters/custom_converter.html @@ -5,7 +5,7 @@ - Custom Converter - Javet 1.1.1 documentation + Custom Converter - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/reference/converters/index.html b/docs/reference/converters/index.html index 6211d6f7e..02e960abc 100644 --- a/docs/reference/converters/index.html +++ b/docs/reference/converters/index.html @@ -5,7 +5,7 @@ - Converters - Javet 1.1.1 documentation + Converters - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/reference/converters/object_converter.html b/docs/reference/converters/object_converter.html index fb12801fa..5308a7b96 100644 --- a/docs/reference/converters/object_converter.html +++ b/docs/reference/converters/object_converter.html @@ -5,7 +5,7 @@ - Object Converter - Javet 1.1.1 documentation + Object Converter - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/reference/converters/primitive_converter.html b/docs/reference/converters/primitive_converter.html index 7f88eef24..2dead4f23 100644 --- a/docs/reference/converters/primitive_converter.html +++ b/docs/reference/converters/primitive_converter.html @@ -5,7 +5,7 @@ - Primitive Converter - Javet 1.1.1 documentation + Primitive Converter - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/reference/converters/proxy_converter.html b/docs/reference/converters/proxy_converter.html index 7abaf17b0..ed5b2124a 100644 --- a/docs/reference/converters/proxy_converter.html +++ b/docs/reference/converters/proxy_converter.html @@ -5,7 +5,7 @@ - Proxy Converter - Javet 1.1.1 documentation + Proxy Converter - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/reference/index.html b/docs/reference/index.html index 8df393571..f8732f848 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -5,7 +5,7 @@ - Reference - Javet 1.1.1 documentation + Reference - Javet 1.1.2 documentation @@ -124,7 +124,7 @@
@@ -150,7 +150,7 @@
- Javet 1.1.1 documentation + Javet 1.1.2 documentation diff --git a/docs/reference/javadoc/allclasses-frame.html b/docs/reference/javadoc/allclasses-frame.html index f5719443f..6deba6c6a 100644 --- a/docs/reference/javadoc/allclasses-frame.html +++ b/docs/reference/javadoc/allclasses-frame.html @@ -3,7 +3,7 @@ -All Classes (javet 1.1.1 API) +All Classes (javet 1.1.2 API) diff --git a/docs/reference/javadoc/allclasses-noframe.html b/docs/reference/javadoc/allclasses-noframe.html index 709d828aa..007fa257d 100644 --- a/docs/reference/javadoc/allclasses-noframe.html +++ b/docs/reference/javadoc/allclasses-noframe.html @@ -3,7 +3,7 @@ -All Classes (javet 1.1.1 API) +All Classes (javet 1.1.2 API) diff --git a/docs/reference/javadoc/com/caoccao/javet/annotations/CheckReturnValue.html b/docs/reference/javadoc/com/caoccao/javet/annotations/CheckReturnValue.html index 526633d47..42de7c303 100644 --- a/docs/reference/javadoc/com/caoccao/javet/annotations/CheckReturnValue.html +++ b/docs/reference/javadoc/com/caoccao/javet/annotations/CheckReturnValue.html @@ -3,7 +3,7 @@ -CheckReturnValue (javet 1.1.1 API) +CheckReturnValue (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/annotations/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/annotations/package-summary.html index 2e8643859..a121005ac 100644 --- a/docs/reference/javadoc/com/caoccao/javet/annotations/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/annotations/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.annotations (javet 1.1.1 API) +com.caoccao.javet.annotations (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/entities/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/entities/package-summary.html index fb66a3e73..bd6e5a55e 100644 --- a/docs/reference/javadoc/com/caoccao/javet/entities/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/entities/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.entities (javet 1.1.1 API) +com.caoccao.javet.entities (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/enums/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/enums/package-summary.html index 126d3044a..7bc8b4f76 100644 --- a/docs/reference/javadoc/com/caoccao/javet/enums/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/enums/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.enums (javet 1.1.1 API) +com.caoccao.javet.enums (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/exceptions/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/exceptions/package-summary.html index 0c787e7b1..fd8e8e934 100644 --- a/docs/reference/javadoc/com/caoccao/javet/exceptions/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/exceptions/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.exceptions (javet 1.1.1 API) +com.caoccao.javet.exceptions (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interception/logging/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interception/logging/package-summary.html index 92be2fb0a..327507dab 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interception/logging/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interception/logging/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interception.logging (javet 1.1.1 API) +com.caoccao.javet.interception.logging (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interception/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interception/package-summary.html index 8499daf0b..69a441944 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interception/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interception/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interception (javet 1.1.1 API) +com.caoccao.javet.interception (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interfaces/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interfaces/package-summary.html index 9257939ca..dc064e8f8 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interfaces/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interfaces/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interfaces (javet 1.1.1 API) +com.caoccao.javet.interfaces (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/binding/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/binding/package-summary.html index a91cc2685..0d3aa1d39 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/binding/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/binding/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.binding (javet 1.1.1 API) +com.caoccao.javet.interop.binding (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/callback/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/callback/package-summary.html index b645353f9..310271b07 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/callback/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/callback/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.callback (javet 1.1.1 API) +com.caoccao.javet.interop.callback (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/converters/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/converters/package-summary.html index 204e8754a..e235bc34e 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/converters/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/converters/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.converters (javet 1.1.1 API) +com.caoccao.javet.interop.converters (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/engine/observers/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/engine/observers/package-summary.html index 49bca392c..0383b78a6 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/engine/observers/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/engine/observers/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.engine.observers (javet 1.1.1 API) +com.caoccao.javet.interop.engine.observers (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/engine/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/engine/package-summary.html index 69c31a183..7f8168f02 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/engine/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/engine/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.engine (javet 1.1.1 API) +com.caoccao.javet.interop.engine (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/executors/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/executors/package-summary.html index 7ae6e608f..393c0dd5f 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/executors/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/executors/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.executors (javet 1.1.1 API) +com.caoccao.javet.interop.executors (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/loader/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/loader/package-summary.html index 95d27cea5..314857ae5 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/loader/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/loader/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.loader (javet 1.1.1 API) +com.caoccao.javet.interop.loader (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/monitoring/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/monitoring/package-summary.html index b834f205e..6b388fc88 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/monitoring/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/monitoring/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.monitoring (javet 1.1.1 API) +com.caoccao.javet.interop.monitoring (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/options/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/options/package-summary.html index 6068ad6a5..c5bca2236 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/options/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/options/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.options (javet 1.1.1 API) +com.caoccao.javet.interop.options (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/package-summary.html index 0344d5692..fcb23105a 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop (javet 1.1.1 API) +com.caoccao.javet.interop (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/interop/proxy/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/interop/proxy/package-summary.html index 52b729bf3..344569b18 100644 --- a/docs/reference/javadoc/com/caoccao/javet/interop/proxy/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/interop/proxy/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.interop.proxy (javet 1.1.1 API) +com.caoccao.javet.interop.proxy (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/node/modules/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/node/modules/package-summary.html index 99b013dbd..a200547ac 100644 --- a/docs/reference/javadoc/com/caoccao/javet/node/modules/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/node/modules/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.node.modules (javet 1.1.1 API) +com.caoccao.javet.node.modules (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/utils/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/utils/package-summary.html index 4902d1939..94aec876c 100644 --- a/docs/reference/javadoc/com/caoccao/javet/utils/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/utils/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.utils (javet 1.1.1 API) +com.caoccao.javet.utils (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/utils/receivers/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/utils/receivers/package-summary.html index a0fe616f5..ec8703761 100644 --- a/docs/reference/javadoc/com/caoccao/javet/utils/receivers/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/utils/receivers/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.utils.receivers (javet 1.1.1 API) +com.caoccao.javet.utils.receivers (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/values/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/values/package-summary.html index cf3ab345e..73b141532 100644 --- a/docs/reference/javadoc/com/caoccao/javet/values/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/values/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.values (javet 1.1.1 API) +com.caoccao.javet.values (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/values/primitive/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/values/primitive/package-summary.html index 4cad62a1a..cd5c1f1b4 100644 --- a/docs/reference/javadoc/com/caoccao/javet/values/primitive/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/values/primitive/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.values.primitive (javet 1.1.1 API) +com.caoccao.javet.values.primitive (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/values/reference/builtin/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/values/reference/builtin/package-summary.html index 206623ddb..3fbc7a33e 100644 --- a/docs/reference/javadoc/com/caoccao/javet/values/reference/builtin/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/values/reference/builtin/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.values.reference.builtin (javet 1.1.1 API) +com.caoccao.javet.values.reference.builtin (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/values/reference/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/values/reference/package-summary.html index d5b608203..ba36b88db 100644 --- a/docs/reference/javadoc/com/caoccao/javet/values/reference/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/values/reference/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.values.reference (javet 1.1.1 API) +com.caoccao.javet.values.reference (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/com/caoccao/javet/values/virtual/package-summary.html b/docs/reference/javadoc/com/caoccao/javet/values/virtual/package-summary.html index 361dc53f7..4fed751b8 100644 --- a/docs/reference/javadoc/com/caoccao/javet/values/virtual/package-summary.html +++ b/docs/reference/javadoc/com/caoccao/javet/values/virtual/package-summary.html @@ -3,7 +3,7 @@ -com.caoccao.javet.values.virtual (javet 1.1.1 API) +com.caoccao.javet.values.virtual (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ diff --git a/docs/reference/javadoc/overview-summary.html b/docs/reference/javadoc/overview-summary.html index d5c69eeaa..96414beaa 100644 --- a/docs/reference/javadoc/overview-summary.html +++ b/docs/reference/javadoc/overview-summary.html @@ -3,7 +3,7 @@ -Overview (javet 1.1.1 API) +Overview (javet 1.1.2 API) @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@