Skip to content

Commit

Permalink
Version 0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mlopatkin committed Oct 24, 2011
1 parent ea2bac4 commit bc2eef2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
8 changes: 8 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
version 0.17.3
[*] Fixed classpath issue if the path to the bat file contains spaces
[*] Fixed exception when viewing logs after the device was disconnected
[*] Fixed app hanging if the emulator becomes unresponsive
[*] Fixed app hanging when connecting to the running emulator
[*] Fixed incorrect log output for DDMS errors and warnings
[*] Started emulator now is added to the "Select device" dialog correctly

version 0.17.2
[*] Ordering of the lines was reworked to be as natural as possible
[*] Logs are now saved in native adb format
Expand Down
5 changes: 2 additions & 3 deletions src/org/bitbucket/mlopatkin/android/logviewer/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
public class Main {
private static final Logger logger = Logger.getLogger(Main.class);

public static final String APP_VERSION = "0.17.2";
public static final String APP_VERSION = "0.17.3";

private DataSource initialSource;
private MainFrame window;
Expand Down Expand Up @@ -129,8 +129,7 @@ public void run() {
public void uncaughtException(Thread t, Throwable e) {
try {
logger.error("Uncaught exception in " + t.getName(), e);
ErrorDialogsHelper.showError(
null,
ErrorDialogsHelper.showError(null,
"<html>Unhandled exception occured. Please collect log file at<br>"
+ MyStringUtils.joinPath(System.getProperty("java.io.tmpdir"),
"logview.log") + "<br>and send it to the authors, "
Expand Down

0 comments on commit bc2eef2

Please sign in to comment.