diff --git a/.gitignore b/.gitignore index 1ebeb7c53..689080dce 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ org.eclipse.ltk.core.refactoring.prefs gen local.properties ecbuild +astrid/bin dev lp-translations/ diff --git a/astrid/AndroidManifest.xml b/astrid/AndroidManifest.xml index 2497b6575..c4e9549b4 100644 --- a/astrid/AndroidManifest.xml +++ b/astrid/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionName="3.3.0 (Google Tasks! and bug fixes)" + android:versionCode="155"> diff --git a/astrid/antlib/ant-contrib-1.0b3.jar b/astrid/antlib/ant-contrib-1.0b3.jar new file mode 100644 index 000000000..062537661 Binary files /dev/null and b/astrid/antlib/ant-contrib-1.0b3.jar differ diff --git a/astrid/build.properties b/astrid/build.properties new file mode 100644 index 000000000..b6d26cddc --- /dev/null +++ b/astrid/build.properties @@ -0,0 +1,11 @@ +# Astrid build properties + +# output files and apk +out.dir=bin + +# source directory must be underneath output directory +# because we pull in from multiple source folders +source.dir=${out.dir}/source + +# Astrid source folders +astrid.sources=src,common-src,plugin-src,src-legacy \ No newline at end of file diff --git a/astrid/build.xml b/astrid/build.xml new file mode 100644 index 000000000..ff817d0eb --- /dev/null +++ b/astrid/build.xml @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/astrid/src/com/todoroo/astrid/activity/TaskEditActivity.java b/astrid/src/com/todoroo/astrid/activity/TaskEditActivity.java index 95d742038..326b6b930 100644 --- a/astrid/src/com/todoroo/astrid/activity/TaskEditActivity.java +++ b/astrid/src/com/todoroo/astrid/activity/TaskEditActivity.java @@ -671,7 +671,7 @@ public final class TaskEditActivity extends TabActivity { StringBuilder label = new StringBuilder(); if(ProducteevUtilities.INSTANCE.isLoggedIn()) - label.append(5 - i).append("\n★"); //$NON-NLS-1$ + label.append(5 - i).append("\n\u2605"); //$NON-NLS-1$ else { for(int j = importanceOffset; j >= i; j--) label.append('!');