Skip to content

Commit 31271b4

Browse files
committed
v1.5.4
1 parent 39d41cf commit 31271b4

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README-en.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ allprojects {
4343
4444
// module build.gradle
4545
dependencies {
46-
implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.3.0'
46+
implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.4.0'
4747
}
4848
```
4949

@@ -130,6 +130,7 @@ It has sync and async modes.
130130
* 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.
131131

132132
## Latest Update
133+
* Add GaussianBlurFilter & Fix FilterGroup ViewPort Issue (1.5.4, Thanks to [@iffly](https://github.com/feiyin0719))
133134
* Add record screen demo
134135
* Add clearTextureCache to help clear cache faster than WeakHashMap. (1.5.2)
135136
* Can operate bitmap when using AndroidCanvasHelper (1.5.2)

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ allprojects {
4848
4949
// module build.gradle
5050
dependencies {
51-
implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.3.0'
51+
implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.4.0'
5252
}
5353
```
5454

@@ -140,6 +140,7 @@ public class MyGLView extends GLView {
140140

141141

142142
## 最近更新
143+
* 添加高斯模糊 & 修复FilterGroup ViewPort 宽高问题(1.5.4 感谢[@iffly](https://github.com/feiyin0719)))
143144
* 添加录屏demo
144145
* 添加clearTextureCache,比弱引用更快释放内存 (1.5.2)
145146
* AndroidCanvasHelper能直接操作Canvas里的bitmap了 (1.5.2)

canvasgl/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ apply plugin: 'com.android.library'
2222
apply plugin: 'maven-publish'
2323
def NAMESPACE="com.github.ChillingVan"
2424
group = NAMESPACE
25-
def VERSION_NAME="1.5.3.0"
25+
def VERSION_NAME="1.5.4.0"
2626

2727
android {
2828
namespace = NAMESPACE
2929
compileSdkVersion 32
3030
defaultConfig {
3131
minSdkVersion 14
3232
targetSdkVersion 32
33-
versionCode 105030
33+
versionCode 105040
3434
versionName VERSION_NAME
3535
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
3636
}

0 commit comments

Comments
 (0)