Skip to content

Commit

Permalink
LCD and Camera enhancements release
Browse files Browse the repository at this point in the history
  • Loading branch information
Saadroid committed Jun 26, 2014
1 parent 0d95fa5 commit 23b29a1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions OneSheeld/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.integreight.onesheeld"
android:versionCode="140602"
android:versionName="1.002" >
android:versionCode="140626"
android:versionName="1.003" >

<uses-sdk android:minSdkVersion="9" />

Expand Down Expand Up @@ -65,7 +65,7 @@
android:name="com.integreight.onesheeld.OneSheeldApplication"
android:allowBackup="true"
android:allowClearUserData="true"
android:debuggable="true"
android:debuggable="false"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
Expand Down Expand Up @@ -119,7 +119,7 @@
<!--
<intent-filter>
<action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" />
</intent-filter>
</intent-filter>
-->
</activity>
<activity
Expand Down
6 changes: 3 additions & 3 deletions OneSheeld/src/com/integreight/onesheeld/Log.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

public class Log {
public static void d(String tag, String msg) {
android.util.Log.d(tag, msg);
// android.util.Log.d(tag, msg);
}

public static void i(String tag, String msg) {
// android.util.Log.d(tag, msg);
}

public static void e(String tag, String msg, Throwable tr) {
tr.printStackTrace();
android.util.Log.d(tag, msg);
// tr.printStackTrace();
// android.util.Log.d(tag, msg);
}

public static void e(String tag, String msg) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void write(char ch) {
}

public void changeCursor(int indx) {
if (!isAutoScroll) {
if (!isAutoScroll && indx > -1 && indx < rows * columns) {
if (eventHandler != null)
eventHandler.noBlink();
currIndx = indx;
Expand Down

0 comments on commit 23b29a1

Please sign in to comment.