Skip to content

Commit

Permalink
Preparing 2.1.4 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
erickok committed May 15, 2014
1 parent 4361d17 commit fe33de2
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
4 changes: 2 additions & 2 deletions core/AndroidManifest.xml
Expand Up @@ -17,8 +17,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.transdroid.core"
android:versionCode="212"
android:versionName="2.1.3" >
android:versionCode="213"
android:versionName="2.1.4" >

<uses-sdk
android:minSdkVersion="7"
Expand Down
13 changes: 13 additions & 0 deletions core/res/values/changelog.xml
Expand Up @@ -17,6 +17,19 @@
-->
<resources>
<string name="system_changelog">
Transdroid 2.1.4\n
- Show separate seeders and leechers counts\n
- qBittorrent 2.1.8+ fixes\n
- Xirvik shared seedbox support\n
- Remember the last-used filter (label or status type) between sessions\n
- Fixes label support and other small issues\n
\n
Transdroid 2.1.3\n
- Support for new Torrent Search\'s private sites\n
- Added optional auto refresh\n
- Allow larger .torrent file uploads with rTorrent\n
- Fix setting download location with Transmission\n
\n
Transdroid 2.1.2\n
- Fixed labeling from details screen\n
- Fixed qBittorrent support\n
Expand Down
4 changes: 2 additions & 2 deletions full/AndroidManifest.xml
Expand Up @@ -18,8 +18,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.transdroid.full"
android:versionCode="212"
android:versionName="2.1.3" >
android:versionCode="213"
android:versionName="2.1.4" >

<uses-sdk
android:minSdkVersion="7"
Expand Down
6 changes: 5 additions & 1 deletion lib/src/org/transdroid/daemon/Daemon.java
Expand Up @@ -241,7 +241,11 @@ public static int getDefaultPortNumber(Daemon type, boolean ssl) {
case Deluge:
return 8112;
case Synology:
return 5000;
if (ssl) {
return 5001;
} else {
return 5000;
}
case Transmission:
return 9091;
case Bitflu:
Expand Down
4 changes: 2 additions & 2 deletions lite/AndroidManifest.xml
Expand Up @@ -18,8 +18,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.transdroid.lite"
android:versionCode="212"
android:versionName="2.1.3" >
android:versionCode="213"
android:versionName="2.1.4" >

<uses-sdk
android:minSdkVersion="7"
Expand Down

0 comments on commit fe33de2

Please sign in to comment.