mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-21 20:35:58 +03:00
Fix #630 Note list widget now missing "+" button
This commit is contained in:
parent
d8700a2872
commit
772f5982af
6 changed files with 9 additions and 10 deletions
|
@ -13,8 +13,8 @@ android {
|
|||
applicationId "it.niedermann.owncloud.notes"
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 28
|
||||
versionCode 54
|
||||
versionName "2.1.0"
|
||||
versionCode 55
|
||||
versionName "2.1.1"
|
||||
// vectorDrawables.useSupportLibrary = true
|
||||
}
|
||||
buildTypes {
|
||||
|
|
|
@ -51,7 +51,7 @@ public class ServerResponse {
|
|||
}
|
||||
|
||||
protected String getContent() {
|
||||
return response.getContent();
|
||||
return response == null ? null : response.getContent();
|
||||
}
|
||||
|
||||
public String getETag() {
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:orientation="vertical"
|
||||
android:background="@color/widget_background">
|
||||
android:background="@color/widget_background"
|
||||
android:orientation="vertical">
|
||||
|
||||
<!-- Widget header -->
|
||||
<RelativeLayout
|
||||
|
@ -50,7 +49,7 @@
|
|||
android:id="@+id/widget_note_list_create_icon"
|
||||
android:layout_width="@dimen/widget_note_list_icon_width"
|
||||
android:layout_height="match_parent"
|
||||
app:srcCompat="@drawable/ic_add_white_24dp"
|
||||
android:src="@drawable/ic_add_white_24dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:paddingStart="@dimen/widget_note_list_inner_padding"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:orientation="vertical"
|
||||
android:background="@color/widget_background_dark_theme">
|
||||
|
@ -50,7 +49,7 @@
|
|||
android:id="@+id/widget_note_list_create_icon_dark"
|
||||
android:layout_width="@dimen/widget_note_list_icon_width"
|
||||
android:layout_height="match_parent"
|
||||
app:srcCompat="@drawable/ic_add_white_24dp"
|
||||
android:src="@drawable/ic_add_white_24dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:paddingStart="@dimen/widget_note_list_inner_padding"
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
- #604 Crash upon cutting the last item of a bullet list
|
||||
- #613 Crash on start. shortLabel cannot be empty
|
||||
- #619 Skip dropping automatic indices (Thanks to @Unpublished)
|
||||
- #630 Note list widget now missing "+" button
|
||||
- Hide FAB when scrolling down
|
||||
- Translation updates
|
||||
|
||||
|
|
0
fastlane/metadata/android/en-US/changelogs/56.txt
Normal file
0
fastlane/metadata/android/en-US/changelogs/56.txt
Normal file
Loading…
Reference in a new issue