Browse Source

Updated manifest and changelog for new 2.1.0 release.

pull/82/head v2.1.0
Eric Kok 11 years ago
parent
commit
027f4def7c
  1. 1
      .gitignore
  2. 6
      core/AndroidManifest.xml
  3. 2
      core/build.xml
  4. 10
      core/local.properties
  5. 11
      core/res/values/changelog.xml
  6. 5
      core/src/org/transdroid/core/widget/ListWidgetProvider.java
  7. 2
      external/ActionBar-PullToRefresh-actionbarsherlock/project.properties
  8. 2
      external/ActionBar-PullToRefresh/project.properties
  9. 2
      external/ColorPickerPreference/build.xml
  10. 10
      external/ColorPickerPreference/local.properties
  11. 10
      external/Crouton/library/local.properties
  12. 10
      external/JakeWharton-ActionBarSherlock/library/local.properties
  13. 6
      full/AndroidManifest.xml
  14. 2
      full/ant.properties
  15. 2
      full/build.xml
  16. 10
      full/local.properties
  17. 6
      lite/AndroidManifest.xml
  18. 2
      lite/ant.properties
  19. 2
      lite/build.xml

1
.gitignore vendored

@ -20,3 +20,4 @@ local.properties @@ -20,3 +20,4 @@ local.properties
.classpath
.project
.settings/
.local.properties

6
core/AndroidManifest.xml

@ -17,11 +17,11 @@ @@ -17,11 +17,11 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.transdroid.core"
android:versionCode="208"
android:versionName="2.0.2" >
android:versionCode="209"
android:versionName="2.1.0" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
android:targetSdkVersion="19" />
</manifest>

2
core/build.xml

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="TransdroidCore" default="help">
<project name="Transdroid Core" default="help">
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into

10
core/local.properties

@ -1,10 +0,0 @@ @@ -1,10 +0,0 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
# location of the SDK. This is only used by Ant
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=/home/eric/Dev/android-sdk

11
core/res/values/changelog.xml

@ -17,6 +17,17 @@ @@ -17,6 +17,17 @@
-->
<resources>
<string name="system_changelog">
Transdroid 2.1.0\n
- uTorrent and Transmission connection stability improvements\n
- uTorrent and Deluge force data recheck\n
- Sort by download speed\n
- Server stats and pause/resume all actions on widget\n
- Option to treat formant (0KB/s) torrents as inactive\n
- Option for local port setting\n
- Fix for Torrentflux-b4rt installs in root\n
- Torrent and file selection improvements\n
- Many other small bug fixes\n
\n
Transdroid 2.0.2\n
- Connection improvements for Bitflu and rTorrent\n
- Option to disable authentication\n

5
core/src/org/transdroid/core/widget/ListWidgetProvider.java

@ -19,10 +19,9 @@ package org.transdroid.core.widget; @@ -19,10 +19,9 @@ package org.transdroid.core.widget;
import org.androidannotations.annotations.Bean;
import org.androidannotations.annotations.EReceiver;
import org.transdroid.core.R;
import org.transdroid.core.app.settings.ApplicationSettings;
import org.transdroid.core.app.settings.ApplicationSettings_;
import org.transdroid.core.app.settings.*;
import org.transdroid.core.app.settings.ServerSetting;
import org.transdroid.core.gui.TorrentsActivity_;
import org.transdroid.core.gui.*;
import org.transdroid.core.gui.log.Log;
import org.transdroid.core.service.ControlService;

2
external/ActionBar-PullToRefresh-actionbarsherlock/project.properties vendored

@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
# Project target.
target=android-18
target=android-19
android.library=true
android.library.reference.1=../ActionBar-PullToRefresh
android.library.reference.2=../JakeWharton-ActionBarSherlock/library

2
external/ActionBar-PullToRefresh/project.properties vendored

@ -11,5 +11,5 @@ @@ -11,5 +11,5 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
# Project target.
target=android-18
target=android-19
android.library=true

2
external/ColorPickerPreference/build.xml vendored

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="ActionBar-PullToRefresh" default="help">
<project name="ColorPickerPreference" default="help">
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into

10
external/ColorPickerPreference/local.properties vendored

@ -1,10 +0,0 @@ @@ -1,10 +0,0 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
# location of the SDK. This is only used by Ant
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=/home/eric/Dev/android-sdk

10
external/Crouton/library/local.properties vendored

@ -1,10 +0,0 @@ @@ -1,10 +0,0 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
# location of the SDK. This is only used by Ant
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=/home/eric/Dev/android-sdk

10
external/JakeWharton-ActionBarSherlock/library/local.properties vendored

@ -1,10 +0,0 @@ @@ -1,10 +0,0 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
# location of the SDK. This is only used by Ant
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=/home/eric/Dev/android-sdk

6
full/AndroidManifest.xml

@ -18,12 +18,12 @@ @@ -18,12 +18,12 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.transdroid.full"
android:versionCode="208"
android:versionName="2.0.2" >
android:versionCode="209"
android:versionName="2.1.0" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
android:targetSdkVersion="19" />
<supports-screens
android:anyDensity="true"

2
full/ant.properties

@ -1,2 +1,2 @@ @@ -1,2 +1,2 @@
key.store=/home/eric/Dev/erickok.keystore
key.store=../..//erickok.keystore
key.alias=transdroid

2
full/build.xml

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="TransdroidFull" default="help">
<project name="Transdroid Full" default="help">
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into

10
full/local.properties

@ -1,10 +0,0 @@ @@ -1,10 +0,0 @@
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
# location of the SDK. This is only used by Ant
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=/home/eric/Dev/android-sdk

6
lite/AndroidManifest.xml

@ -18,12 +18,12 @@ @@ -18,12 +18,12 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.transdroid.lite"
android:versionCode="208"
android:versionName="2.0.2" >
android:versionCode="209"
android:versionName="2.1.0" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
android:targetSdkVersion="19" />
<supports-screens
android:anyDensity="true"

2
lite/ant.properties

@ -1,2 +1,2 @@ @@ -1,2 +1,2 @@
key.store=/home/eric/Dev/erickok.keystore
key.store=../../erickok.keystore
key.alias=transdroid

2
lite/build.xml

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="Transdrone" default="help">
<project name="Transdroid Lite" default="help">
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into

Loading…
Cancel
Save