Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Nov 18, 2012
1 parent 752605f commit 9394416
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 21 deletions.
2 changes: 1 addition & 1 deletion AndroidManifest.xml
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mariotaku.twidere"
android:installLocation="auto"
android:versionCode="52"
android:versionCode="53"
android:versionName="@string/app_version">

<uses-sdk
Expand Down
Binary file renamed dist/Twidere 0.2.3.apk → dist/Twidere 0.2.3.1.apk
Binary file not shown.
Binary file modified libs/twitter4j-android-core-2.2.6.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion res/layout/color_grid_item.xml
Expand Up @@ -10,13 +10,14 @@
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<TextView android:layerType="software"
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="#80000000"
android:gravity="center"
android:layerType="software"
android:text="@string/customize"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary"
Expand Down
5 changes: 2 additions & 3 deletions res/layout/search.xml
Expand Up @@ -2,7 +2,7 @@
<merge xmlns:android="http://schemas.android.com/apk/res/android">

<org.mariotaku.twidere.view.ExtendedViewPager
android:id="@+id/pager"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent">

Expand All @@ -11,7 +11,6 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top"/>

</org.mariotaku.twidere.view.ExtendedViewPager>

</merge>
</merge>
23 changes: 8 additions & 15 deletions res/layout/set_color.xml
@@ -1,17 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/colors_grid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">

<GridView
android:id="@+id/colors_grid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:gravity="center"
android:horizontalSpacing="2dp"
android:numColumns="auto_fit"
android:verticalSpacing="4dp"/>

</RelativeLayout>
android:layout_height="wrap_content"
android:gravity="center"
android:horizontalSpacing="2dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="4dp"/>
2 changes: 1 addition & 1 deletion res/values/strings_donttranslate.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">

<string name="app_version">0.2.3</string>
<string name="app_version">0.2.3.1</string>

</resources>

0 comments on commit 9394416

Please sign in to comment.