forked from floraachy/ImageKnife
1.imageknife的oh_package.json更新版本为2.0.1
2.CHANGELOG.md文件对2.0.1版本 修复问题进行说明 Signed-off-by: zhoulisheng1 <zhoulisheng1@huawei.com>
This commit is contained in:
parent
eeb25ae8d1
commit
ce32a3d937
39
CHANGELOG.md
39
CHANGELOG.md
|
@ -1,12 +1,23 @@
|
||||||
## 2.0.0
|
## 2.0.1
|
||||||
- 包管理工具由npm切换为ohpm
|
|
||||||
- 适配DevEco Studio: 3.1Beta2(3.1.0.400)
|
|
||||||
- 适配SDK: API9 Release(3.2.11.9)
|
|
||||||
- 新增开发者可对图片缓存进行全局配置能力
|
|
||||||
- 新增对OpenHarmony图库的Uri数据加载的能力(需要申请图库访问权限和文件读取权限,动态申请图库访问权限)
|
|
||||||
- 修复若干问题:
|
- 修复若干问题:
|
||||||
|
|
||||||
1.ImageKnifeOption的loadSrc为undefined,导致的crash问题
|
1.修复ImageKnifeDrawFactory中的setOval和setRect的中心点取值错误问题。
|
||||||
|
|
||||||
|
2.修复因重复下载导致的漏加载的问题。
|
||||||
|
|
||||||
|
- 新增用例看护已修复的问题
|
||||||
|
|
||||||
|
## 2.0.0
|
||||||
|
|
||||||
|
- 包管理工具由npm切换为ohpm。
|
||||||
|
- 适配DevEco Studio: 3.1Beta2(3.1.0.400)。
|
||||||
|
- 适配SDK: API9 Release(3.2.11.9)。
|
||||||
|
- 新增开发者可对图片缓存进行全局配置能力。
|
||||||
|
- 新增对OpenHarmony图库的Uri数据加载的能力(需要申请图库访问权限和文件读取权限,动态申请图库访问权限)。
|
||||||
|
- 修复若干问题:
|
||||||
|
|
||||||
|
1.ImageKnifeOption的loadSrc为undefined,导致的crash问题。
|
||||||
|
|
||||||
2.ImageKnifeComponent直接绘制GIF图片格式第几帧的时候,无法绘制问题。
|
2.ImageKnifeComponent直接绘制GIF图片格式第几帧的时候,无法绘制问题。
|
||||||
|
|
||||||
|
@ -42,11 +53,11 @@
|
||||||
|
|
||||||
支持装饰滤波器
|
支持装饰滤波器
|
||||||
## 1.0.5
|
## 1.0.5
|
||||||
- 自定义组件已支持通用属性和通用事件绑定,因此ImageKnifeComponent将删除相关内容,相关内容由用户自定义实现,提高扩展能力
|
- 自定义组件已支持通用属性和通用事件绑定,因此ImageKnifeComponent将删除相关内容,相关内容由用户自定义实现,提高扩展能力。
|
||||||
|
|
||||||
- ImageKnifeOption 支持列表绑定
|
- ImageKnifeOption 支持列表绑定。
|
||||||
|
|
||||||
- ImageKnifeOption
|
- ImageKnifeOption 。
|
||||||
|
|
||||||
新增
|
新增
|
||||||
|
|
||||||
|
@ -60,13 +71,13 @@
|
||||||
- 4.margin 组件外间距 等属性,删除的属性将由通用属性提供支持,可支持在ImageKnifeComponent自定义组件上链式调用
|
- 4.margin 组件外间距 等属性,删除的属性将由通用属性提供支持,可支持在ImageKnifeComponent自定义组件上链式调用
|
||||||
## 1.0.4
|
## 1.0.4
|
||||||
|
|
||||||
- 渲染显示部分使用Canvas组件替代Image组件
|
- 渲染显示部分使用Canvas组件替代Image组件。
|
||||||
|
|
||||||
- 重构渲染封装层ImageKnifeComponent自定义组件
|
- 重构渲染封装层ImageKnifeComponent自定义组件。
|
||||||
|
|
||||||
- 新增GIF图片解析能力
|
- 新增GIF图片解析能力。
|
||||||
|
|
||||||
- 新增SVG图片解析能力
|
- 新增SVG图片解析能力。
|
||||||
|
|
||||||
## 1.0.3
|
## 1.0.3
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"main": "index.ets",
|
"main": "index.ets",
|
||||||
"repository": "https://gitee.com/openharmony-tpc/ImageKnife",
|
"repository": "https://gitee.com/openharmony-tpc/ImageKnife",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ohos/disklrucache": "^2.0.0",
|
"@ohos/disklrucache": "^2.0.0",
|
||||||
"@ohos/svg": "^2.0.0",
|
"@ohos/svg": "^2.0.0",
|
||||||
|
|
Loading…
Reference in New Issue