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

Commit fc5b5fc0 authored by Mohit Mali's avatar Mohit Mali Committed by Michael Enoma
Browse files

Updated about content

(cherry picked from commit 9b56bbd2)
parent 6fbce982
Loading
Loading
Loading
Loading
+13 −58
Original line number Diff line number Diff line
# Nextcloud Notes for Android
An android client for [Nextcloud Notes App](https://github.com/nextcloud/notes/).
# Notes
An android client for [Nextcloud Notes App](https://github.com/nextcloud/notes/)
Notes is forked from [Nextcloud Notes](https://github.com/stefan-niedermann/nextcloud-notes)

[![Android CI](https://github.com/stefan-niedermann/nextcloud-notes/workflows/Android%20CI/badge.svg)](https://github.com/stefan-niedermann/nextcloud-notes/actions)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/9f784826834042e8b512d531cab84711)](https://www.codacy.com/manual/info_147/nextcloud-notes?utm_source=github.com&utm_medium=referral&utm_content=stefan-niedermann/nextcloud-notes&utm_campaign=Badge_Grade)
[![GitHub issues](https://img.shields.io/github/issues/stefan-niedermann/nextcloud-notes.svg)](https://github.com/stefan-niedermann/nextcloud-notes/issues)
[![GitHub stars](https://img.shields.io/github/stars/stefan-niedermann/nextcloud-notes.svg)](https://github.com/stefan-niedermann/nextcloud-notes/stargazers)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
## Authors

## :arrow_forward: Access
[Authors](https://gitlab.e.foundation/e/apps/Notes/-/blob/master/AUTHORS)

[![Latest Release](https://img.shields.io/github/v/tag/stefan-niedermann/nextcloud-notes?label=latest+release&sort=semver)](https://github.com/stefan-niedermann/nextcloud-notes/tags)
[![F-Droid Release](https://img.shields.io/f-droid/v/it.niedermann.owncloud.notes)](https://f-droid.org/de/packages/it.niedermann.owncloud.notes/)
## Release Notes

[<img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png"
      alt="Get it on Play Store"
      height="80">](https://play.google.com/store/apps/details?id=it.niedermann.owncloud.notes)
[<img src="https://f-droid.org/badge/get-it-on.png"
      alt="Get it on F-Droid"
      height="80">](https://f-droid.org/repository/browse/?fdid=it.niedermann.owncloud.notes)
[<img src="https://raw.githubusercontent.com/stefan-niedermann/paypal-donate-button/master/paypal-donate-button.png"
      alt="Donate with PayPal"
      height="80">](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=K7HVLE6J7SXXA)
[<img src="https://raw.githubusercontent.com/stefan-niedermann/DonateButtons/master/LiberaPay.png"
      alt="Donate using Liberapay"
      height="80">](https://liberapay.com/stefan-niedermann/donate)
Check out the [Release Notes](https://gitlab.e.foundation/e/apps/Notes/-/releases) to find out what changed
in each version of Notes.

## :eyes: Screenshots
## Privacy Policy

| _ | _ | _ |
| :--: | :--: | :--: |
| ![Screenshot of list view](/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png) | ![Screenshot of edit mode](/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png) | ![Screenshot of preview](/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png) |
[Privacy Policy](https://e.foundation/legal-notice-privacy)
[Terms of service](https://e.foundation/legal-notice-privacy)

## :rocket: Features
  * Multiple accounts
  * List, create, edit, share, search and delete notes
  * Share text and links as new note into the app
  * Toggling checkboxes in view mode
  * Mark notes as favorite
  * Bulk delete
  * In-note search
  * Single note widget and note list widget
  * Render Markdown (using [Markwon](https://noties.io/Markwon))
  * Translated in many languages on [Transifex](https://www.transifex.com/nextcloud/nextcloud/android-notes/)
  * Context based formatting ([#363](https://github.com/stefan-niedermann/nextcloud-notes/issues/363))
  * Password protection ([#354](https://github.com/stefan-niedermann/nextcloud-notes/issues/354))
## License

## :checkered_flag: Planned features
  * Local accounts ([#615](https://github.com/stefan-niedermann/nextcloud-notes/issues/615))

## :family: Join the team
  * Test the app with different devices
  * Report issues in the [issue tracker](https://github.com/stefan-niedermann/nextcloud-notes/issues)
  * [Pick a good first issue](https://github.com/stefan-niedermann/nextcloud-notes/labels/Good%20first%20issue) :notebook:
  * Create a [Pull Request](https://opensource.guide/how-to-contribute/#opening-a-pull-request)
  * Help translating this app on [Transifex](https://www.transifex.com/nextcloud/nextcloud/android-notes/) 🌎
  * Buy this app on [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.owncloud.notes)
  * Send me a bottle of your favorite beer :beers: :wink:

## :link: Requirements
  * [Nextcloud](https://nextcloud.com/) instance running
  * [Nextcloud Android](https://github.com/nextcloud/android) app installed (≥ 3.9.0)
  * [Nextcloud Notes](https://github.com/nextcloud/notes) app enabled

## :notebook: License
This project is licensed under the [GNU GENERAL PUBLIC LICENSE](/LICENSE).
Notes is licensed under the [GNU General Public License v3.0](https://gitlab.e.foundation/e/apps/Notes/-/blob/master/LICENSE)
+26 −0
Original line number Diff line number Diff line
package it.niedermann.owncloud.notes.fragment.about;

import static android.os.Build.VERSION_CODES.R;

import android.os.Bundle;
import android.preference.PreferenceFragment;

import androidx.annotation.Nullable;

import it.niedermann.owncloud.notes.BuildConfig;
import it.niedermann.owncloud.notes.R;

public class AboutFragment extends PreferenceFragment {

    private static final String BUILD_VERSION = "build_version";

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        addPreferencesFromResource(it.niedermann.owncloud.notes.R.xml.about_preferences);

        findPreference(BUILD_VERSION).setSummary(BuildConfig.VERSION_NAME);

    }
}
+1 −1
Original line number Diff line number Diff line
@@ -310,7 +310,6 @@
    <string name="Other">Other</string>



    <string name="formatting_help_title" translatable="false"># %1$s</string>
    <string name="formatting_help_title_level_3" translatable="false">### %1$s</string>
    <string name="formatting_help_divider" translateable="false">---</string>
@@ -407,4 +406,5 @@
    <string name="progress_import_indeterminate">Importing notes…</string>
    <string name="progress_import">Importing note %1$d of %2$d…</string>
    <string name="account_imported">Account imported.</string>

</resources>
+55 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <Preference
        android:key="notes_info"
        android:summary="@string/preferences_app_info"
        android:title="@string/preferences_app_info_title" />

    <Preference
        android:key="build_version"
        android:title="@string/about_version_title">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://gitlab.e.foundation/e/apps/Notes/-/releases" />
    </Preference>

    <Preference
        android:key="about_app"
        android:title="@string/preferences_about_app">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://github.com/stefan-niedermann/nextcloud-notes" />
    </Preference>

    <Preference android:title="@string/about_license_tab_title">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://gitlab.e.foundation/e/apps/Notes/-/blob/master/LICENSE" />
    </Preference>

    <Preference android:title="@string/preferences_authors">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://gitlab.e.foundation/e/apps/Notes/-/blob/master/AUTHORS" />
    </Preference>

    <Preference android:title="@string/about_source_title">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://gitlab.e.foundation/e/apps/Notes" />
    </Preference>

    <Preference android:title="@string/preferences_privacy_policy">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://e.foundation/legal-notice-privacy/" />
    </Preference>

    <Preference android:title="@string/preferences_service_terms">
        <intent
            android:action="android.intent.action.VIEW"
            android:data="https://e.foundation/legal-notice-privacy/" />
    </Preference>

</PreferenceScreen>