Skip to content

Commit

Permalink
Release 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sepulzera committed Jun 5, 2019
0 parents commit ae4b5b6
Show file tree
Hide file tree
Showing 110 changed files with 6,269 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
*.iml
.gradle
gradle.properties
/local.properties
/.idea/gradle.xml
/.idea/misc.xml
/.idea/vcs.xml
/.idea/workspace.xml
/.idea/libraries
/.idea/codeStyles
/.idea/caches
/.idea/dictionaries
/.idea/inspectionProfiles
.DS_Store
/build
/captures
.externalNativeBuild
22 changes: 22 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License

Copyright (c) 2019 Frank H.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

56 changes: 56 additions & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# NOTES

## Overview

Notes is a simple Text-App. It ships with a very simple and intuitive User-Interface.
With Notes, you can finally focus on your thoughts and daily tasks.

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. See LICENSE for full license text including copyright information.

The installation is done in under a minute, it is ready to rock out of the box.
No need to read heavy weighted manuals!
And the best part: we take care of your privacy. No ads, no big data analysis,
and no backdoors. Your notes, your privacy.

The main activity is the list, fully searchable of course.

![Screenshot list with light theme](https://camo.githubusercontent.com/14100c0060f294481564527cce7ad48db1ac6f83/68747470733a2f2f667261737062657272792e646564796e2e696f2f6769742f6174746163686d656e74732f30386263396538302d393739342d343863312d393030332d313339343538303533373663)

From here, you can create notes, or open existing ones.

![Screenshot of a new Note](https://camo.githubusercontent.com/d5050e9579b8335a7e0f65d82c576021b45b7c7f/68747470733a2f2f667261737062657272792e646564796e2e696f2f6769742f6174746163686d656e74732f36666137346331372d616463372d346234382d396133662d346565613539356263623964)
![Screenshot of the note viewer](https://camo.githubusercontent.com/d0154483961e65e58dd399a19d942c4b4342628a/68747470733a2f2f667261737062657272792e646564796e2e696f2f6769742f6174746163686d656e74732f32343732353138372d663064362d346233392d623362622d663363623234356564323563)

You don't need a note anymore? Just delete it without worry.
We keep it in our trash, in case you want to restore it later.

![Screenshot trash](https://camo.githubusercontent.com/8c9ce32a6a61f33554c2e955090f7ae0aef54173/68747470733a2f2f667261737062657272792e646564796e2e696f2f6769742f6174746163686d656e74732f30363962343561302d303738322d343065352d393666612d643733346333353964346661)

This app fits your needs. Doesn't? Change it right to your needs.

![Screenshot list with dark theme](https://camo.githubusercontent.com/c6dd71cf61c48f8ff9de0638ddbec1653a4bfb01/68747470733a2f2f667261737062657272792e646564796e2e696f2f6769742f6174746163686d656e74732f61356461646165352d383832392d343338632d613664632d613738373935643762626464)

## Specification

**System Requirements**

* OS: Android 6.0
* Display: 480x800, hdpi
* Touch Input

**License**

This project is licensed under MIT. See LICENSE for further information.

## Installation

1. Download the [latest version](https://github.com/sepulzera/Notes/releases) to the target device. You can also build your own .apk, you will find the required steps under [Hacking The Source](https://github.com/sepulzera/Notes#hacking-the-source).
2. On the target device, eventually activate the Setting "Security" > "Unknown sources".
3. Install the .apk.
4. Eventually deactivate the Setting "Security" > "Unknown sources" again.

## Hacking The Source

Simply checkout this repository and import the project into your IDE of choice.
Run "Build" > "Rebuild Project" to make sure that everything is working.
You may need to download required dependencies.
1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
39 changes: 39 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
applicationId "de.sepulzera.notes"
minSdkVersion 23
targetSdkVersion 27
versionCode 20
versionName "2.4-SNAPSHOT"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
applicationVariants.all { variant ->
variant.resValue "string", "app_version", variant.versionName
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
testOptions {
unitTests.returnDefaultValues = true
}
}

dependencies {
implementation 'com.android.support:support-v4:27.1.1'
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
testImplementation 'junit:junit:4.12'
testImplementation 'org.robolectric:robolectric:3.5.1'
}
17 changes: 17 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /home/sepulzera/Android/Sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
62 changes: 62 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="de.sepulzera.notes">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppThemeNoActionBar"
tools:ignore="GoogleAppIndexingWarning">

<activity
android:name=".ui.activity.note.MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable">
</meta-data>
</activity>

<activity
android:name=".ui.activity.note.NoteTabViewerActivity"
android:parentActivityName=".ui.activity.note.MainActivity"
android:windowSoftInputMode="adjustResize">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".ui.activity.note.MainActivity"/>
</activity>

<activity
android:name=".ui.activity.note.NoteTrashActivity"
android:label="@string/note_trash_title"
android:parentActivityName=".ui.activity.note.MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".ui.activity.note.MainActivity"/>
</activity>
<activity
android:name=".ui.activity.note.NoteViewDeletedActivity"
android:parentActivityName=".ui.activity.note.NoteTrashActivity"
android:windowSoftInputMode="adjustResize">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".ui.activity.note.NoteTrashActivity"/>
</activity>
<activity
android:name=".ui.activity.pref.SettingsActivity"
android:label="@string/title_activity_note_preference"
android:theme="@style/AppThemeActionBar">
</activity>
</application>

</manifest>
Loading

0 comments on commit ae4b5b6

Please sign in to comment.