Skip to content

Commit

Permalink
Release Patch 1.2.5
Browse files Browse the repository at this point in the history
### Enhancements & Bug Fixes
☆ Swedish language added

✓ Fixed notification crashes caused by latest AniList update
  • Loading branch information
wax911 committed Dec 6, 2018
2 parents f0ecf83 + 4660123 commit e885a06
Show file tree
Hide file tree
Showing 12 changed files with 969 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AniTrend v1.2.4   [![license](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square)](https://github.com/AniTrend/anitrend-app/blob/master/LICENSE.md)
# AniTrend v1.2.5   [![license](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square)](https://github.com/AniTrend/anitrend-app/blob/master/LICENSE.md)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/30a8f983c55541cbb504671ecc32786c)](https://www.codacy.com/app/wax911/anitrend-app?utm_source=github.com&utm_medium=referral&utm_content=wax911/anitrend-app&utm_campaign=Badge_Grade)   [![Build Status](https://travis-ci.org/AniTrend/anitrend-app.svg?branch=master)](https://travis-ci.org/AniTrend/anitrend-app)   [![Waffle.io - Columns and their card count](https://badge.waffle.io/AniTrend/anitrend-app.svg?columns=all)](https://waffle.io/AniTrend/anitrend-app)

Discover anime or manga with AniTrend which is a free [AniList](https://anilist.co) android client written in java.(AniTrend does not offer streaming capabilities, but official website links such as Hulu, Chrunchyroll, Netflix will be provided if available)
Expand Down
4 changes: 2 additions & 2 deletions app/.meta/version.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"code": 94,
"code": 95,
"migration": false,
"releaseNotes": "",
"version": "1.2.4",
"version": "1.2.5",
"appId": "com.mxt.anitrend"
}
2 changes: 1 addition & 1 deletion app/release/output.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":94,"versionName":"1.2.4","enabled":true,"outputFile":"anitrend_v1.2.4_rc_94.apk","fullName":"release","baseName":"release"},"path":"anitrend_v1.2.4_rc_94.apk","properties":{}}]
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":95,"versionName":"1.2.5","enabled":true,"outputFile":"anitrend_v1.2.5_rc_95.apk","fullName":"release","baseName":"release"},"path":"anitrend_v1.2.5_rc_95.apk","properties":{}}]
7 changes: 5 additions & 2 deletions app/src/main/assets/changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
__Anitrend v2.0 development is about to start__
__Anitrend v2.0 Coming Soon [WIP]__

#### Enhancements
- New portuguese translation
- New swedish translations
- New portuguese translations
- Updated italian translations

#### Bug Fixes
- Crunchyroll link detection issues
- Notification crashes after latest anilist update

#### Current Issues
- Clicking on @username shows mixed feed
- Notifications are still a hit or miss issue on some devices
- Sometimes image slide count doesn't change when you scroll slowly in feeds
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public RecyclerViewHolder<Notification> onCreateViewHolder(@NonNull ViewGroup pa
@Override
public int getItemViewType(int position) {
final Notification notification = data.get(position);
if (!notification.getType().equals(KeyUtil.AIRING) && notification.getUser() == null)
if (!CompatUtil.equals(notification.getType(), KeyUtil.AIRING) && notification.getUser() == null)
return KeyUtil.RECYCLER_TYPE_ERROR;
return KeyUtil.RECYCLER_TYPE_CONTENT;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public CommentWidget(Context context, AttributeSet attrs, int defStyleAttr) {
public void onInit() {
final int padding = getResources().getDimensionPixelSize(R.dimen.spacing_small);
setPadding(padding, padding, padding, padding);
setTypeface(Typeface.create(Typeface.DEFAULT_BOLD, Typeface.BOLD));
setCompoundDrawablesWithIntrinsicBounds(CompatUtil.getDrawableTintAttr(getContext(), R.drawable.ic_mode_comment_grey_600_18dp,
R.attr.colorAccent),null, null, null);
}
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/adapter_feed_message.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
android:layout_marginStart="@dimen/lg_margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:clickable="true"
android:focusable="true"
android:foreground="?selectableItemBackground"
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/adapter_feed_progress.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
android:layout_marginStart="@dimen/lg_margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:clickable="true"
android:focusable="true"
android:foreground="?selectableItemBackground"
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/layout/adapter_feed_status.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
android:layout_marginStart="@dimen/lg_margin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:clickable="true"
android:focusable="true"
android:foreground="?selectableItemBackground"
Expand Down
Loading

0 comments on commit e885a06

Please sign in to comment.