Skip to content

Commit

Permalink
upload 2.0.0-beta3 release. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Muyangmin committed Apr 27, 2017
1 parent efab50e commit 08ddced
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 61 deletions.
51 changes: 0 additions & 51 deletions CHANGELOG.md

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
@@ -1,12 +1,12 @@
[ ![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Android--PLog-brightgreen.svg?style=flat) ](https://android-arsenal.com/details/1/4884)[![](https://jitpack.io/v/Muyangmin/Android-PLog.svg)](https://jitpack.io/#Muyangmin/Android-PLog)[ ![Download](https://api.bintray.com/packages/muyangmin/org.mym/Android-PLog/images/download.svg) ](https://bintray.com/muyangmin/org.mym/Android-PLog/_latestVersion)

#Android-PLog [![Build Status](https://travis-ci.org/Muyangmin/Android-PLog.svg?branch=master)](https://travis-ci.org/Muyangmin/Android-PLog)![[](http://www.methodscount.com/?lib=org.mym.plog%3Aplog-core%3A2.0.0-beta2)](https://img.shields.io/badge/Methods and size-200 | 21 KB-e91e63.svg)
# PLog = Pure, Pretty, Powerful logging tool [![Build Status](https://travis-ci.org/Muyangmin/Android-PLog.svg?branch=master)](https://travis-ci.org/Muyangmin/Android-PLog)

![logo](./app/src/main/res/mipmap-xxhdpi/ic_launcher.png)

[English Version](README_EN.md)

## PLog 2.0 beta2已经发布,欢迎试用!([迁移指南](https://github.com/Muyangmin/Android-PLog/wiki/Migrating))
## 2.0.0 beta3 已经发布,欢迎试用!([迁移指南](https://github.com/Muyangmin/Android-PLog/wiki/Migrating))

## Summary / Features
PLog是一个Android专用的日志封装库,具备以下特性:
Expand Down
2 changes: 1 addition & 1 deletion README_EN.md
@@ -1,4 +1,4 @@
#Android-PLog [![Build Status](https://travis-ci.org/Muyangmin/Android-PLog.svg?branch=master)](https://travis-ci.org/Muyangmin/Android-PLog)[ ![Download](https://api.bintray.com/packages/muyangmin/org.mym/Android-PLog/images/download.svg) ](https://bintray.com/muyangmin/org.mym/Android-PLog/_latestVersion)<a href="http://www.methodscount.com/?lib=org.mym.plog%3Aandroid-plog%3A1.5.0"><img src="https://img.shields.io/badge/Methods and size-201 | 20 KB-e91e63.svg"/></a>
#Android-PLog [![Build Status](https://travis-ci.org/Muyangmin/Android-PLog.svg?branch=master)](https://travis-ci.org/Muyangmin/Android-PLog)[ ![Download](https://api.bintray.com/packages/muyangmin/org.mym/Android-PLog/images/download.svg) ](https://bintray.com/muyangmin/org.mym/Android-PLog/_latestVersion)

#### [中文版文档](./README.md)

Expand Down
7 changes: 1 addition & 6 deletions app/src/main/java/org/mym/prettylog/CrashPrinter.java
Expand Up @@ -25,7 +25,6 @@
*/
public class CrashPrinter extends FilePrinter {

// public static final Category CRASH = new SimpleCategory("crash");
public static final String CAT_CRASH = "crash";

private static volatile CrashPrinter sInstance = null;
Expand All @@ -36,15 +35,11 @@ private CrashPrinter(Context mContext) {
//Assume not null
//noinspection ConstantConditions
// super(getCrashFileDir(mContext).getAbsolutePath(),
super(mContext, DIR_EXT_ROOT + "/crash",
super(mContext, DIR_EXT_FILES + "/crash",
new TimingFileNameGenerator(), 1024 * 1024L);
mApplicationContext = mContext.getApplicationContext();
}

// private CrashPrinter(){
//
// }
//
public static CrashPrinter getInstance(Context context) {
//create a temp variable to improve performance for reading volatile field.
CrashPrinter instance = sInstance;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -18,7 +18,7 @@
# org.gradle.parallel=true

#Add jcenter upload support
VERSION_NAME=2.0.0-beta2
VERSION_NAME=2.0.0-beta3
BINTRAY_REPO=org.mym
GROUP=org.mym.plog
POM_NAME=Android-PLog
Expand Down

0 comments on commit 08ddced

Please sign in to comment.