From 1d98389dea8d6b7c455f477711434a76288b4ee8 Mon Sep 17 00:00:00 2001 From: liangqingsong Date: Thu, 23 Sep 2021 10:13:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E6=AD=A3=E5=BC=8F=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 ++++- README.md | 6 +++--- build.gradle | 2 +- entry/build.gradle | 5 ++++- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff7f412..b092f6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ +## 1.0.0 +发布正式版本 + ## 0.0.1-SNAPSHOT ohos 第一个版本 * 实现了原库的大部分 api - *Window.setBoundRect(Rect boundRect)设置移动窗口的边界。因为鸿蒙没有提供 获取底部导航栏高度, + * Window.setBoundRect(Rect boundRect)设置移动窗口的边界。因为鸿蒙没有提供 获取底部导航栏高度, 底部导航栏是否显示等API导致计算Rect的时候有点偏差,所以导致window窗口在滑动的时候不能紧贴上下边界 \ No newline at end of file diff --git a/README.md b/README.md index e6d359c..1460bd7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -29,7 +29,7 @@ 2.在entry模块的build.gradle文件中, ```java dependencies { - implementation('com.gitee.chinasoft_ohos:FloatUtil:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:FloatUtil:1.0.0') ...... } ``` @@ -125,7 +125,7 @@ CloudTest代码测试无异常 ## 版本迭代 -- 0.0.1-SNAPSHOT +- 1.0.0 ## 版权和许可信息 ``` diff --git a/build.gradle b/build.gradle index e5c9476..5266bc6 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ buildscript { allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } maven { url 'https://repo.huaweicloud.com/repository/maven/' diff --git a/entry/build.gradle b/entry/build.gradle index ccfc193..4f95f56 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,8 +20,11 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200' + //本地依赖 // implementation project(':library') - implementation('com.gitee.chinasoft_ohos:FloatUtil:0.0.1-SNAPSHOT') + + //maven仓依赖 + implementation('com.gitee.chinasoft_ohos:FloatUtil:1.0.0') } decc { supportType = ['html', 'xml'] -- Gitee