Skip to content

Commit 0137f46

Browse files
committed
Version 10.8.0
1 parent e82870a commit 0137f46

7 files changed

Lines changed: 10 additions & 8 deletions

File tree

src/com/dtmilano/android/adb/adbclient.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
'''
1919
import threading
2020

21-
__version__ = '10.7.5'
21+
__version__ = '10.8.0'
2222

2323
import sys
2424
import warnings
@@ -48,7 +48,7 @@
4848
obtainVwVh, profileStart, profileEnd
4949
from com.dtmilano.android.adb.androidkeymap import KEY_MAP
5050

51-
DEBUG = False
51+
DEBUG = True
5252
DEBUG_SHELL = DEBUG and False
5353
DEBUG_TOUCH = DEBUG and False
5454
DEBUG_LOG = DEBUG and False
@@ -89,6 +89,8 @@ class Device:
8989
def factory(_str):
9090
if DEBUG:
9191
print >> sys.stderr, "Device.factory(", _str, ")"
92+
print >> sys.stderr, " _str=", repr(_str)
93+
print >> sys.stderr, " _str=", _str.replace(' ', '_')
9294
values = _str.split(None, 2)
9395
if DEBUG:
9496
print >> sys.stderr, "values=", values

src/com/dtmilano/android/concertina.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import time
2626

2727
__author__ = 'diego'
28-
__version__ = '10.7.5'
28+
__version__ = '10.8.0'
2929

3030
DEBUG = True
3131

src/com/dtmilano/android/controlpanel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@author: Ahmed Kasem
2020
'''
2121

22-
__version__ = '10.7.5'
22+
__version__ = '10.8.0'
2323

2424
import sys, os
2525
import Tkinter, tkFileDialog, ttk

src/com/dtmilano/android/culebron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from com.dtmilano.android.common import profileEnd
2626
from com.dtmilano.android.concertina import Concertina
2727

28-
__version__ = '10.7.5'
28+
__version__ = '10.8.0'
2929

3030
import sys
3131
import threading

src/com/dtmilano/android/viewclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
@author: Diego Torres Milano
1919
'''
2020

21-
__version__ = '10.7.5'
21+
__version__ = '10.8.0'
2222

2323
import sys
2424
import warnings

tools/culebra

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ___________________/ /__/ /__/ /__/ /________________________________
2020
2121
'''
2222

23-
__version__ = '10.7.5'
23+
__version__ = '10.8.0'
2424

2525
import re
2626
import sys

tools/dump

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Created on Feb 3, 2012
66
@author: diego
77
'''
88

9-
__version__ = '10.7.5'
9+
__version__ = '10.8.0'
1010

1111
import sys
1212
import os

0 commit comments

Comments
 (0)