Skip to content

Commit 7316ebe

Browse files
committed
see 10/25 log
1 parent 3d481a6 commit 7316ebe

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

README-CN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ getComments : 获取压缩文件中的注释链表
612612

613613
Gradle:
614614
``` groovy
615-
compile 'com.blankj:utilcode:1.9.3'
615+
compile 'com.blankj:utilcode:1.9.4'
616616
```
617617

618618

@@ -635,7 +635,7 @@ Utils.init(application);
635635

636636
[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
637637

638-
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.9.3-brightgreen.svg
638+
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.9.4-brightgreen.svg
639639
[auc]: https://github.com/Blankj/AndroidUtilCode
640640

641641
[apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ getComments
612612

613613
Gradle:
614614
``` groovy
615-
compile 'com.blankj:utilcode:1.9.3'
615+
compile 'com.blankj:utilcode:1.9.4'
616616
```
617617

618618

@@ -635,7 +635,7 @@ Utils.init(application);
635635

636636
[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png
637637

638-
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.9.3-brightgreen.svg
638+
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.9.4-brightgreen.svg
639639
[auc]: https://github.com/Blankj/AndroidUtilCode
640640

641641
[apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ ext {
2929
minSdkVersion = 14
3030
targetSdkVersion = 22
3131

32-
versionCode = 100900300
33-
versionName = '1.9.3'
32+
versionCode = 100900400
33+
versionName = '1.9.4'
3434

3535
// App dependencies
3636
supportVersion = '25.3.1'

update_log.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* 17/10/25 修复LogUtils边框
12
* 17/09/30 完善FragmentUtils,发布1.9.2
23
* 17/09/29 完善FragmentUtils和isInstallApp
34
* 17/09/28 完善FragmentUtils

utilcode/src/main/java/com/blankj/utilcode/util/LogUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ private static void printHead(final int type, final String tag, final String[] h
339339
for (String aHead : head) {
340340
Log.println(type, tag, sLogBorderSwitch ? LEFT_BORDER + aHead : aHead);
341341
}
342-
Log.println(type, tag, SPLIT_BORDER);
342+
if (sLogBorderSwitch) Log.println(type, tag, SPLIT_BORDER);
343343
}
344344
}
345345

0 commit comments

Comments
 (0)