-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- New notification unread indicator - Using search functionality to filter through users media lists - Media, character, activity & staff link sharing - Media overview page text selection - Internal sorting for media titles on media lists - Several bug fixes
- Loading branch information
Showing
11 changed files
with
122 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"code": 79, | ||
"code": 80, | ||
"migration": false, | ||
"releaseNotes": "", | ||
"version": "1.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":79,"versionName":"1.1.0","enabled":true,"outputFile":"anitrend_v1.1.0_rc_79.apk","fullName":"release","baseName":"release"},"path":"anitrend_v1.1.0_rc_79.apk","properties":{}}] | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":80,"versionName":"1.1.0","enabled":true,"outputFile":"anitrend_v1.1.0_rc_80.apk","fullName":"release","baseName":"release"},"path":"anitrend_v1.1.0_rc_80.apk","properties":{}}] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
### Enhancements | ||
- Access privacy controls in __Settings__ and the privacy policy can be found: __Extras -> About__ | ||
- Searching anime or manga lists from the anime/manga lists page | ||
- Notifications sharing the same origin Id will marked as read as a whole | ||
- Sharing media, posts, studios, character and staff links | ||
- Revised media list manager dialog & added sorting media lists by title | ||
|
||
### Bug Fixes | ||
- Improved notification unread indicator | ||
- Media rank items applying invalid filters on media browse | ||
|
||
### Current Issues | ||
- Clicking on @username shows mixed feed | ||
- Emojis have been disabled. _New AniList site doesn't support them anymore_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,47 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.constraint.ConstraintLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" | ||
<LinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:orientation="vertical" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
</android.support.constraint.ConstraintLayout> | ||
<android.support.v7.widget.AppCompatImageView | ||
android:layout_width="match_parent" | ||
android:layout_height="@dimen/series_image_lg" | ||
app:srcCompat="@drawable/ic_emoji_announce"/> | ||
|
||
<Space | ||
android:layout_width="wrap_content" | ||
android:layout_height="@dimen/spacing_md" /> | ||
|
||
<com.mxt.anitrend.base.custom.view.text.SingleLineTextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center_horizontal" | ||
android:textAppearance="@style/TextAppearance.AppCompat.Headline" | ||
android:text="What's New AniTrend?" /> | ||
|
||
<Space | ||
android:layout_width="wrap_content" | ||
android:layout_height="@dimen/md_margin" /> | ||
|
||
<com.mxt.anitrend.base.custom.view.text.SingleLineTextView | ||
android:id="@+id/changelog_version" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center_horizontal" | ||
android:textAppearance="@style/TextAppearance.AppCompat.Subhead" | ||
tools:text="Version 1.1.0" /> | ||
|
||
<Space | ||
android:layout_width="wrap_content" | ||
android:layout_height="@dimen/spacing_sm" /> | ||
|
||
<com.mxt.anitrend.base.custom.view.text.RichMarkdownTextView | ||
android:id="@+id/changelog_information" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" /> | ||
|
||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters