1.add CHANGELOG.md
2.package.json add keyword & tag 'glide' Signed-off-by: zhoulisheng <635547767@qq.com>
This commit is contained in:
parent
f5ad585f1c
commit
ddfdfc3d0d
|
@ -0,0 +1,12 @@
|
|||
## 1.0.1
|
||||
- hvigor工程结构整改
|
||||
|
||||
## 1.0.0
|
||||
专门为OpenHarmony打造的一款图像加载缓存库,致力于更高效、更轻便、更简单
|
||||
- 支持内存缓存,使用LRUCache算法,对图片数据进行内存缓存
|
||||
- 支持磁盘缓存,对于下载图片会保存一份至磁盘当中
|
||||
- 支持进行图片变换
|
||||
- 支持用户配置参数使用:(例如:配置是否开启第一级内存缓存,配置磁盘缓存策略,配置仅使用缓存加载数据,配置图片变换效果,配置占位图,配置加载失败占位图等)
|
||||
- 推荐使用ImageKnifeComponent组件配合ImageKnifeOption参数来实现功能
|
||||
- 支持用户自定义配置实现能力参考ImageKnifeComponent组件中对于入参ImageKnifeOption的处理
|
||||
|
|
@ -2,7 +2,8 @@
|
|||
"types": "",
|
||||
"keywords": [
|
||||
"OpenHarmony",
|
||||
"imageknife"
|
||||
"imageknife",
|
||||
"glide"
|
||||
],
|
||||
"author": "ohos_tpc",
|
||||
"description": "专门为OpenHarmony打造的一款图像加载缓存库,致力于更高效、更轻便、更简单",
|
||||
|
@ -17,7 +18,8 @@
|
|||
},
|
||||
"tags": [
|
||||
"OpenHarmony",
|
||||
"imageknife"
|
||||
"imageknife",
|
||||
"glide"
|
||||
],
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {},
|
||||
|
|
28
package.json
28
package.json
|
@ -1,18 +1,18 @@
|
|||
{
|
||||
"license":"ISC",
|
||||
"devDependencies":{},
|
||||
"name":"imageknifegiteepro",
|
||||
"ohos":{
|
||||
"org":"huawei",
|
||||
"directoryLevel":"project",
|
||||
"buildTool":"hvigor"
|
||||
"license": "ISC",
|
||||
"devDependencies": {},
|
||||
"name": "imageknifegiteepro",
|
||||
"ohos": {
|
||||
"org": "huawei",
|
||||
"directoryLevel": "project",
|
||||
"buildTool": "hvigor"
|
||||
},
|
||||
"description":"example description",
|
||||
"repository":{},
|
||||
"version":"1.0.0",
|
||||
"dependencies":{
|
||||
"@ohos/hvigor-ohos-plugin":"1.0.6",
|
||||
"hypium":"^1.0.0",
|
||||
"@ohos/hvigor":"1.0.6"
|
||||
"description": "example description",
|
||||
"repository": {},
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"@ohos/hvigor-ohos-plugin": "1.0.6",
|
||||
"hypium": "^1.0.0",
|
||||
"@ohos/hvigor": "1.0.6"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue