mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-06 09:08:52 -06:00
Merge tag 'v1.3.2' into dev
Version 1.3.2
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
### 1.3.2 (March 18, 2016)
|
||||
|
||||
* Arabic, Italian, Polish, Russian and Swedish translations
|
||||
* Minor fixes to German and French translations
|
||||
* Minor bug fixes
|
||||
|
||||
### 1.3.1 (March 15, 2016)
|
||||
|
||||
* Fixes crash on devices with large screen, such as the Nexus 10
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
<manifest
|
||||
package="org.isoron.uhabits"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:versionCode="11"
|
||||
android:versionName="1.3.1">
|
||||
android:versionCode="12"
|
||||
android:versionName="1.3.2">
|
||||
|
||||
<uses-permission android:name="android.permission.VIBRATE"/>
|
||||
|
||||
|
||||
@@ -251,8 +251,10 @@ public class EditHabitFragment extends DialogFragment
|
||||
{
|
||||
modifiedHabit.name = tvName.getText().toString().trim();
|
||||
modifiedHabit.description = tvDescription.getText().toString().trim();
|
||||
modifiedHabit.freqNum = Integer.parseInt(tvFreqNum.getText().toString());
|
||||
modifiedHabit.freqDen = Integer.parseInt(tvFreqDen.getText().toString());
|
||||
String freqNum = tvFreqNum.getText().toString();
|
||||
String freqDen = tvFreqDen.getText().toString();
|
||||
if(!freqNum.isEmpty()) modifiedHabit.freqNum = Integer.parseInt(freqNum);
|
||||
if(!freqDen.isEmpty()) modifiedHabit.freqDen = Integer.parseInt(freqDen);
|
||||
|
||||
if (!validate()) return;
|
||||
|
||||
|
||||
@@ -147,7 +147,7 @@
|
||||
|
||||
<TextView
|
||||
style="@style/aboutItemStyle"
|
||||
android:text="dalecarlian (Svenska)"/>
|
||||
android:text="Dalecarlian (Svenska)"/>
|
||||
|
||||
<TextView
|
||||
style="@style/aboutItemStyle"
|
||||
|
||||
Reference in New Issue
Block a user