Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
Release 3.0.1
Browse files Browse the repository at this point in the history
* Added Properties, Files and Trackers in torrent's details
* Added Swedish translation
* Added all icon resolutions (mdpi, hdpi, xhdpi, xxhdpi)
  • Loading branch information
lgallard committed Dec 27, 2014
1 parent 4264e77 commit b874389
Show file tree
Hide file tree
Showing 19 changed files with 1,287 additions and 1,061 deletions.
4 changes: 2 additions & 2 deletions qBittorrentClient/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lgallardo.qbittorrentclient"
android:versionCode="290"
android:versionName="2.9.0" >
android:versionCode="301"
android:versionName="3.0.1" >

<uses-sdk
android:minSdkVersion="14"
Expand Down
338 changes: 107 additions & 231 deletions qBittorrentClient/res/layout-large/torrent_details.xml

Large diffs are not rendered by default.

338 changes: 107 additions & 231 deletions qBittorrentClient/res/layout-sw600dp/torrent_details.xml

Large diffs are not rendered by default.

70 changes: 70 additions & 0 deletions qBittorrentClient/res/layout/contentfile_row.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2014 Luis M. Gallardo D..
All rights reserved. This program and the accompanying materials
are made available under the terms of the GNU Public License v3.0
which accompanies this distribution, and is available at
http://www.gnu.org/licenses/gpl.html
Contributors:
Luis M. Gallardo D.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >

<TextView
android:id="@+id/file"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="file"
android:textSize="15sp"
/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<TextView
android:id="@+id/info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="info"
android:textSize="13sp" />
</LinearLayout>
</LinearLayout>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TextView
android:id="@+id/percentage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:text="35%"
android:textSize="15sp"
android:textStyle="bold" />

<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="start"
android:indeterminate="false"
android:max="100"
android:progress="1" />
</LinearLayout>

</LinearLayout>
34 changes: 34 additions & 0 deletions qBittorrentClient/res/layout/property_row.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2014 Luis M. Gallardo D..
All rights reserved. This program and the accompanying materials
are made available under the terms of the GNU Public License v3.0
which accompanies this distribution, and is available at
http://www.gnu.org/licenses/gpl.html
Contributors:
Luis M. Gallardo D.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/property" >

<TextView
android:id="@+id/label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Label"
android:textSize="15sp" />

<TextView
android:id="@+id/value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Value"
android:textSize="15sp" />

</LinearLayout>
Loading

0 comments on commit b874389

Please sign in to comment.