Skip to content

Commit

Permalink
Prepare release 2.5.21
Browse files Browse the repository at this point in the history
  • Loading branch information
erickok committed Dec 8, 2021
1 parent d20d200 commit 3869be4
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 14 deletions.
9 changes: 4 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 30
buildToolsVersion '30.0.3'
compileSdkVersion 31

defaultConfig {
minSdkVersion 15
targetSdkVersion 30
versionCode 240
versionName '2.5.20'
targetSdkVersion 31
versionCode 241
versionName '2.5.21'

javaCompileOptions {
annotationProcessorOptions {
Expand Down
15 changes: 10 additions & 5 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
android:label="@string/app_name"
android:launchMode="singleTop"
android:theme="@style/TransdroidTheme"
android:windowSoftInputMode="stateHidden">
android:windowSoftInputMode="stateHidden"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down Expand Up @@ -245,7 +246,8 @@
android:icon="@drawable/ic_launcher"
android:label="@string/search_torrentsearch"
android:launchMode="singleTask"
android:theme="@style/TransdroidTheme">
android:theme="@style/TransdroidTheme"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />

Expand Down Expand Up @@ -283,7 +285,8 @@
android:label="@string/rss_feeds"
android:theme="@style/TransdroidTheme" />

<receiver android:name="org.transdroid.core.service.BootReceiver_">
<receiver android:name="org.transdroid.core.service.BootReceiver_"
android:exported="true">
<intent-filter>
<action
android:name="android.intent.action.BOOT_COMPLETED"
Expand All @@ -307,7 +310,8 @@
<!-- Home screen widget -->
<activity
android:name="org.transdroid.core.widget.ListWidgetConfigActivity_"
android:theme="@style/TransdroidTheme.WidgetConfig">
android:theme="@style/TransdroidTheme.WidgetConfig"
android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
Expand All @@ -318,7 +322,8 @@
android:exported="false"
android:permission="android.permission.BIND_REMOTEVIEWS" />

<receiver android:name="org.transdroid.core.widget.ListWidgetProvider_">
<receiver android:name="org.transdroid.core.widget.ListWidgetProvider_"
android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ private void applyAllFilters() {
// Sort the list of filtered torrents
Collections.sort(filteredTorrents, new TorrentsComparator(daemonType, this.currentSortOrder, this.currentSortDescending));

if (torrentsList.getAdapter() != null) {
if (torrentsList != null && torrentsList.getAdapter() != null) {
((TorrentsAdapter) torrentsList.getAdapter()).update(filteredTorrents);
}
updateViewVisibility();
Expand Down
4 changes: 4 additions & 0 deletions app/src/main/res/values/changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
-->
<resources>
<string name="system_changelog">
Transdroid 2.5.21\n
- Improved connection stability (thanks ImperatorPrime!)\n
- Fixed qBittorrent path parsing\n
\n
Transdroid 2.5.20\n
- Add Xirvik servers via QR code\n
\n
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath 'com.android.tools.build:gradle:7.0.3'
}
}

Expand Down
2 changes: 1 addition & 1 deletion latest-app.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
240|2.5.20
241|2.5.21
2 changes: 1 addition & 1 deletion latest-search.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
37|4.1
38|4.3

0 comments on commit 3869be4

Please sign in to comment.