diff options
author | Allan Wang <me@allanwang.ca> | 2017-12-21 20:55:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-21 20:55:51 -0500 |
commit | f1e1aec8487fd148eb8e75fe016a8438958989ad (patch) | |
tree | c4d614e6a3e7d6ef9fa7c04452c357d06bc50279 /app/src/main/res | |
parent | d683cae6ffe644a9f63eea6cf3b7e59d2bde617b (diff) | |
download | frost-f1e1aec8487fd148eb8e75fe016a8438958989ad.tar.gz frost-f1e1aec8487fd148eb8e75fe016a8438958989ad.tar.bz2 frost-f1e1aec8487fd148eb8e75fe016a8438958989ad.zip |
misc (#566)
* Fix click validator
* Update tests
* Feature/fb requests (#567)
* Add initial requesting interface
* Update unit tests and dependencies
* Resolve lint
* Fix lint 2
* Fix toolbar location, closes #439
* Add prev version code, closes #551
* Clear test val
* Update changelog
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/view_content_recycler.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/layout/view_content_web.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/layout/view_main_toolbar.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/xml/frost_changelog.xml | 19 |
4 files changed, 15 insertions, 8 deletions
diff --git a/app/src/main/res/layout/view_content_recycler.xml b/app/src/main/res/layout/view_content_recycler.xml index 511cfe5d..811df9a0 100644 --- a/app/src/main/res/layout/view_content_recycler.xml +++ b/app/src/main/res/layout/view_content_recycler.xml @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <com.pitchedapps.frost.views.FrostContentRecycler xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/frost_content_recycler" android:layout_width="match_parent" android:layout_height="match_parent" />
\ No newline at end of file diff --git a/app/src/main/res/layout/view_content_web.xml b/app/src/main/res/layout/view_content_web.xml index 1a51b136..32f97891 100644 --- a/app/src/main/res/layout/view_content_web.xml +++ b/app/src/main/res/layout/view_content_web.xml @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <com.pitchedapps.frost.views.FrostContentWeb xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/frost_content_web" android:layout_width="match_parent" android:layout_height="match_parent" />
\ No newline at end of file diff --git a/app/src/main/res/layout/view_main_toolbar.xml b/app/src/main/res/layout/view_main_toolbar.xml index b0a4de7c..b4572af3 100644 --- a/app/src/main/res/layout/view_main_toolbar.xml +++ b/app/src/main/res/layout/view_main_toolbar.xml @@ -4,5 +4,5 @@ android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" - app:layout_scrollFlags="scroll|enterAlways" + app:layout_scrollFlags="scroll|enterAlways|snap" app:popupTheme="@style/AppTheme.PopupOverlay" />
\ No newline at end of file diff --git a/app/src/main/res/xml/frost_changelog.xml b/app/src/main/res/xml/frost_changelog.xml index 7c61b789..fe35fcdc 100644 --- a/app/src/main/res/xml/frost_changelog.xml +++ b/app/src/main/res/xml/frost_changelog.xml @@ -6,15 +6,20 @@ <item text="" /> --> + + <version title="v1.7.0" /> + <item text="Fix launching messages in new overlay" /> + <item text="Fix some errors in launching pages" /> + <item text="Redid base design to prepare for native views" /> + <item text="Automatically bring toolbar up when keyboard is shown" /> + <item text="" /> + <version title="v1.6.8" /> <item text="Fully customize your tabs! Check out settings > appearance > main activity tabs" /> <item text="Optimize scripts" /> <item text="Add more theme components" /> <item text="Fixed issue with deleting posts" /> <item text="Automatically close video player if url cannot be loaded" /> - <item text="" /> - <item text="" /> - <item text="" /> <version title="v1.6.7" /> <item text="Fix icons in tablets" /> @@ -22,16 +27,16 @@ <item text="Add Galician translations" /> <item text="Remove generic translations" /> - <version title="v1.6.5" /> + <version title="v1.6.5" /> <item text="Allow for truly full screen videos" /> <item text="Support pip video everywhere" /> <item text="Support gifs (auto loop)" /> <item text="Add Italian translations" /> <item text="Add Korean translations" /> <item text="Add Vietnamese translations" /> - <item text="Fix bad date param for videos and images" /> - <item text="Allow for explicit intent launches" /> - <item text="Updated all dependencies" /> + <item text="Fix bad date param for videos and images" /> + <item text="Allow for explicit intent launches" /> + <item text="Updated all dependencies" /> <version title="v1.6.2" /> <item text="Fix search update from Facebook" /> |