Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 772f5982 authored by stefan-niedermann's avatar stefan-niedermann
Browse files

Fix #630 Note list widget now missing "+" button

parent d8700a28
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 {
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ public class ServerResponse {
    }

    protected String getContent() {
        return response.getContent();
        return response == null ? null : response.getContent();
    }

    public String getETag() {
+4 −5
Original line number Diff line number Diff line
<?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"
+1 −2
Original line number Diff line number Diff line
@@ -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"
+1 −0
Original line number Diff line number Diff line
@@ -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

Loading