Skip to content
This repository has been archived by the owner on Mar 19, 2020. It is now read-only.

Commit

Permalink
Closes #28
Browse files Browse the repository at this point in the history
  • Loading branch information
rock3r committed Jul 11, 2013
1 parent cd7818f commit c3a1581
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Released on 11th July 2013
- NEW: weather is now cached to reduce "???" messages while searching for a location
- FIX: removed 1 minute refresh interval (was only meant for debugging)
- FIX: removed buttons from loading layouts, they couldn't do anything anyway
- FIX: removed minor bug when switching from loading layout to "real" layout (could have caused issues to poorly written launchers)

### Version 1.1-beta2 ###
Released on 10th July 2013
Expand Down
4 changes: 2 additions & 2 deletions res/layout/loading_large.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
tools:ignore="UselessParent">

<ProgressBar
android:id="@+id/img_weathericon"
android:id="@+id/prg_loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
Expand All @@ -41,7 +41,7 @@
android:id="@+id/txt_weather"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/img_weathericon"
android:layout_below="@+id/prg_loading"
android:text="@string/loading_main"
android:bufferType="spannable"
style="@style/MainText.Medium"/>
Expand Down
4 changes: 2 additions & 2 deletions res/layout/loading_small.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
tools:ignore="UselessParent">

<ProgressBar
android:id="@+id/img_weathericon"
android:id="@+id/prg_loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
Expand All @@ -41,7 +41,7 @@
android:id="@+id/txt_weather"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/img_weathericon"
android:layout_below="@+id/prg_loading"
android:text="@string/loading_main"
android:bufferType="spannable"
style="@style/MainText.Small"/>
Expand Down

0 comments on commit c3a1581

Please sign in to comment.