version update, removed style colors, renamed strings

This commit is contained in:
nuclearfog 2019-11-16 15:58:33 +01:00
parent 5493732677
commit b91ce499f4
No known key found for this signature in database
GPG Key ID: ED35E22099354A64
6 changed files with 6 additions and 9 deletions

View File

@ -8,8 +8,8 @@ android {
applicationId 'org.nuclearfog.twidda'
minSdkVersion 16
targetSdkVersion 29
versionCode 5
versionName '1.5.7'
versionCode 6
versionName '1.6'
vectorDrawables.useSupportLibrary true
}

View File

@ -85,7 +85,7 @@ public class Tweet {
else
locationName = "";
if (geo != null)
locationCoordinates = geo.getLatitude() + "," + geo.getLongitude();
locationCoordinates = geo.getLatitude() + ", " + geo.getLongitude();
else
locationCoordinates = "";
if (status.getInReplyToScreenName() != null)

View File

@ -42,7 +42,7 @@
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:drawablePadding="@dimen/padding_drawable"
android:hint="@string/pin"
android:hint="@string/login_pin"
android:inputType="numberPassword"
android:singleLine="true"
android:textSize="@dimen/textsize_login_key"

View File

@ -102,7 +102,7 @@
<string name="proxy_settings">Proxy Einstellung</string>
<string name="verifierbutton">Login</string>
<string name="popup">Popup</string>
<string name="pin">PIN</string>
<string name="login_pin">PIN eingeben</string>
<string name="following">Following</string>
<string name="follower">Follower</string>
<string name="enter_proxy">Proxy IP oder Adresse</string>

View File

@ -2,7 +2,7 @@
<resources>
<string name="app_name">Shitter</string>
<string name="profile_image">profile image</string>
<string name="pin">PIN</string>
<string name="login_pin">Enter PIN</string>
<string name="verifierbutton">login</string>
<string name="tweet">Tweet</string>
<string name="settings">Settings</string>

View File

@ -2,10 +2,7 @@
<resources>
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="android:colorBackground">@android:color/black</item>
<item name="colorAccent">@android:color/white</item>
<item name="android:windowAnimationStyle">@style/TransactionPending</item>
<item name="android:textViewStyle">@style/RobotoTextView</item>
<item name="android:buttonStyle">@style/RobotoButton</item>