diff options
author | Allan Wang <me@allanwang.ca> | 2017-07-19 00:28:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-19 00:28:56 -0700 |
commit | 495b1bd49835070ca43a523831caee0f70079604 (patch) | |
tree | 7b8d56aa22fcf3a9fd1bf566a17fe1997180288a /app/src/main/res | |
parent | e4679b1663fa78a99c6c8225e454595c6c6f4e38 (diff) | |
download | frost-495b1bd49835070ca43a523831caee0f70079604.tar.gz frost-495b1bd49835070ca43a523831caee0f70079604.tar.bz2 frost-495b1bd49835070ca43a523831caee0f70079604.zip |
Dev - minor updates (#73)v1.3.3
* Add lint
* Add new libs
* Update libs and add friends tab
* Aggressively hide nonrecent posts
* Update dependencies
* Add php to most recents
* Add full size image downloader
* Fix css cleaner
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/item_keyword.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/layout/web_context_menu.xml | 27 | ||||
-rw-r--r-- | app/src/main/res/transition/web_context_enter.xml | 23 | ||||
-rw-r--r-- | app/src/main/res/xml/frost_changelog.xml (renamed from app/src/main/res/xml/changelog.xml) | 11 |
4 files changed, 6 insertions, 56 deletions
diff --git a/app/src/main/res/layout/item_keyword.xml b/app/src/main/res/layout/item_keyword.xml index 2c24997f..3894fc7e 100644 --- a/app/src/main/res/layout/item_keyword.xml +++ b/app/src/main/res/layout/item_keyword.xml @@ -21,5 +21,4 @@ android:background="?android:attr/selectableItemBackground" android:scaleType="center" /> - </LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/web_context_menu.xml b/app/src/main/res/layout/web_context_menu.xml deleted file mode 100644 index d5f80c0f..00000000 --- a/app/src/main/res/layout/web_context_menu.xml +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:app="http://schemas.android.com/apk/res-auto" - android:id="@+id/menu_container" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:background="@color/kau_shadow_overlay" - android:gravity="center" - android:orientation="vertical" - android:visibility="gone" - android:padding="@dimen/kau_padding_normal"> - - <TextView - android:id="@+id/menu_url" - android:visibility="gone" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:padding="@dimen/kau_padding_normal" /> - - <android.support.v7.widget.RecyclerView - android:id="@+id/menu_recycler" - android:layout_width="match_parent" - android:visibility="gone" - android:layout_height="wrap_content" - app:layoutManager="android.support.v7.widget.LinearLayoutManager" /> - -</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/transition/web_context_enter.xml b/app/src/main/res/transition/web_context_enter.xml deleted file mode 100644 index 213ace90..00000000 --- a/app/src/main/res/transition/web_context_enter.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<transitionSet xmlns:android="http://schemas.android.com/apk/res/android" - android:interpolator="@android:interpolator/linear_out_slow_in" - android:transitionOrdering="together"> - - <fade android:duration="200"> - <targets> - <target android:targetId="@id/menu_container" /> - </targets> - </fade> - - <slide - android:duration="400" - android:slideEdge="bottom" - android:startDelay="1000"> - <targets> - <target android:excludeId="@android:id/navigationBarBackground" /> - <target android:excludeId="@android:id/statusBarBackground" /> - <target android:excludeId="@id/menu_container" /> - </targets> - </slide> - -</transitionSet>
\ No newline at end of file diff --git a/app/src/main/res/xml/changelog.xml b/app/src/main/res/xml/frost_changelog.xml index cb1f5f64..f608f70a 100644 --- a/app/src/main/res/xml/changelog.xml +++ b/app/src/main/res/xml/frost_changelog.xml @@ -9,17 +9,18 @@ --> <version title="Beta Updates" /> - <item text="Fix notification duplicates" /> - <item text="Fix long pressing album images" /> - <item text="" /> - <item text="" /> - <item text="" /> + + <item text="Add friend request tab in nav bar" /> + <item text="Aggressively filter nonrecent posts in recents mode" /> + <item text="Add download option for full sized images" /> <item text="" /> <version title="v1.4" /> <item text="Update IAB helper" /> <item text="Create image viewing and downloading; long press any image!" /> <item text="Start filtering out unnecessary loads" /> + <item text="Fix notification duplicates" /> + <item text="Fix long pressing album images" /> <version title="v1.3" /> <item text="Create toggle for notifications only from primary account" /> |