Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.owncloud.android"
android:versionCode="10010099"
android:versionName="1.1.0">
android:versionCode="10020001"
android:versionName="1.2.0 RC1">

<uses-sdk
android:minSdkVersion="14"
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 1.2.0 (2016)

- Multi select capabilities
- confirmation dialog on account removal
- offline available filter in main menu
- sorting capability when choosing files to be uploaded
- video thumbnails if activated on server
- thumbnails during upload
- fixed user agent for file firewalling
- showing server side folder sizes
- text in test preview can now be selected
- search suggestions fixed for user/group search during sharing
- minor bugfixes

## 1.1.0 (July 6, 2016)

- New main menu to switch accounts easily
Expand Down
3 changes: 2 additions & 1 deletion res/layout/edit_box_dialog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="clip_horizontal"
android:orientation="vertical" >
android:orientation="vertical"
android:padding="@dimen/standard_padding">

<EditText
android:id="@+id/user_input"
Expand Down
18 changes: 16 additions & 2 deletions res/layout/files_folder_picker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,34 @@
android:layout_height="0dip"
android:layout_weight="1"
android:id="@+id/fragment_container" />

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

<ImageView
android:layout_width="match_parent"
android:layout_height="1dp"
android:src="@drawable/uploader_list_separator"/>

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal" >
android:orientation="horizontal"
android:padding="@dimen/standard_padding">

<android.support.v7.widget.AppCompatButton
android:id="@+id/folder_picker_btn_cancel"
android:theme="@style/Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/common_cancel" />
android:text="@string/common_cancel"
android:layout_marginRight="@dimen/standard_half_margin"/>

<android.support.v7.widget.AppCompatButton
android:id="@+id/folder_picker_btn_choose"
Expand Down
3 changes: 2 additions & 1 deletion res/layout/upload_files_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/common_cancel" />
android:text="@string/common_cancel"
android:layout_marginRight="@dimen/standard_half_margin"/>

<android.support.v7.widget.AppCompatButton
android:id="@+id/upload_files_btn_upload"
Expand Down
3 changes: 2 additions & 1 deletion res/layout/uploader_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_weight="1"
android:text="@string/common_cancel" />
android:text="@string/common_cancel"
android:layout_marginRight="@dimen/standard_half_margin" />

<android.support.v7.widget.AppCompatButton
android:id="@+id/uploader_choose_folder"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,12 @@ private void onGetUserNameFinish(RemoteOperationResult result) {
mWaitingForOpId = Long.MAX_VALUE;
if (result.isSuccess()) {
boolean success = false;
String username = (String) result.getData().get(0);
String username;
if (result.getData().get(0) instanceof GetRemoteUserInfoOperation.UserInfo) {
username = ((GetRemoteUserInfoOperation.UserInfo) result.getData().get(0)).mDisplayName;
} else {
username = (String) result.getData().get(0);
}

if ( mAction == ACTION_CREATE) {
mUsernameInput.setText(username);
Expand Down