diff --git a/CHANGELOG.md b/CHANGELOG.md index ff7f412774ce68c1d8cd79c3c69cf891bf31f9af..b092f6a67ccc11d030f978f2cccb43a9c2be9326 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 e6d359cf848cf405b312c34bae9165a2fd2ba028..1460bd735c7735e490a70e964d47a9990d0ce6ad 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 e5c947654757e3cf47bdd47ea905041d3121b1df..5266bc674cce1472f33bdc1795d2eb0e168e87a0 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 ccfc1930d2355edf11b0831f9c114143b682ac39..4f95f56d9dfccd7943229b850add78f28a563ff8 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']