From 31271b4914f3a1730674fd5c7349539489f6d664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ChillingVan=E2=80=9D?= Date: Mon, 16 Jan 2023 17:05:42 +0800 Subject: [PATCH] v1.5.4 --- README-en.md | 3 ++- README.md | 3 ++- canvasgl/build.gradle | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README-en.md b/README-en.md index 41bb5c6..e7967bf 100644 --- a/README-en.md +++ b/README-en.md @@ -43,7 +43,7 @@ allprojects { // module build.gradle dependencies { - implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.3.0' + implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.4.0' } ``` @@ -130,6 +130,7 @@ It has sync and async modes. * The CanvasGL doesn't support drawPath or drawText. You can try IAndroidCanvasHelper but this just uses Android canvas to generate a Bitmap. So heed the performance. ## Latest Update +* Add GaussianBlurFilter & Fix FilterGroup ViewPort Issue (1.5.4, Thanks to [@iffly](https://github.com/feiyin0719)) * Add record screen demo * Add clearTextureCache to help clear cache faster than WeakHashMap. (1.5.2) * Can operate bitmap when using AndroidCanvasHelper (1.5.2) diff --git a/README.md b/README.md index 1c882fe..48302c7 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ allprojects { // module build.gradle dependencies { - implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.3.0' + implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.4.0' } ``` @@ -140,6 +140,7 @@ public class MyGLView extends GLView { ## 最近更新 +* 添加高斯模糊 & 修复FilterGroup ViewPort 宽高问题(1.5.4 感谢[@iffly](https://github.com/feiyin0719))) * 添加录屏demo * 添加clearTextureCache,比弱引用更快释放内存 (1.5.2) * AndroidCanvasHelper能直接操作Canvas里的bitmap了 (1.5.2) diff --git a/canvasgl/build.gradle b/canvasgl/build.gradle index 20b1c11..c87cfe7 100644 --- a/canvasgl/build.gradle +++ b/canvasgl/build.gradle @@ -22,7 +22,7 @@ apply plugin: 'com.android.library' apply plugin: 'maven-publish' def NAMESPACE="com.github.ChillingVan" group = NAMESPACE -def VERSION_NAME="1.5.3.0" +def VERSION_NAME="1.5.4.0" android { namespace = NAMESPACE @@ -30,7 +30,7 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 32 - versionCode 105030 + versionCode 105040 versionName VERSION_NAME testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' }