Skip to content

Commit

Permalink
Merge pull request #25 from PhilKes/rename-project
Browse files Browse the repository at this point in the history
Rename project to NotallyX
  • Loading branch information
PhilKes authored Oct 8, 2024
2 parents 7b8cc21 + 8217966 commit 7deaf23
Show file tree
Hide file tree
Showing 196 changed files with 1,606 additions and 1,496 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

5 changes: 0 additions & 5 deletions CONTRIBUTING.md

This file was deleted.

41 changes: 24 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
### Background
Notally was created because I wanted to make something that was beautiful and at the same time, useful. It's extremely light, there are minimal dependencies and lines of code.
## NotallyX

### Features
[Notally](https://github.com/OmGodse/Notally), but eXtended.

<img src="fastlane/metadata/android/en-US/images/phoneScreenshots/1.png" width="250"/><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/2.png" width="250"/><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/3.png" width="250"/>

### Additional Features
* Order Tasks with Subtasks
* Attach any file to a note (also included in backups)
* Many minor improvements such as removing all checked tasks from the context menu, smoother navigation

### Included Features from the original Notally App
* Widgets
* Auto backup
* Adjustable text size
Expand All @@ -13,23 +21,22 @@ Notally was created because I wanted to make something that was beautiful and at
* Create rich text notes with support for bold, italics, mono space and strike-through
* Add clickable links to notes with support for phone numbers, email addresses and web urls

[<img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png" alt="Get it on Google Play" height="70"/>](https://play.google.com/store/apps/details?id=com.omgodse.notally)
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="70"/>](https://f-droid.org/packages/com.omgodse.notally/)
### Releases
Currently the App is only released on Github, see [NotallyX/Releases](https://github.com/PhilKes/NotallyX/releases)

In the future I might also publish new versions on the Google Play Store under the NotallyX name.

### Translations
All translations are crowd sourced. To contribute, follow these [guidelines](https://m2.material.io/design/communication/writing.html) and email me or open a pull request.
All translations are crowd sourced. To contribute, follow these [guidelines](https://m2.material.io/design/communication/writing.html) and open a pull request.

<img src="fastlane/metadata/android/en-US/images/phoneScreenshots/1.png" width="250"/><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/2.png" width="250"/><img src="fastlane/metadata/android/en-US/images/phoneScreenshots/3.png" width="250"/>

### Hall of fame
* [Top 20 Android Apps 2021!](https://www.youtube.com/watch?v=bwz13aM0qJk)
* [De-Googling Any Android Phone! (Google Apps Alternatives)](https://www.youtube.com/watch?v=RQUEgwgV99I)
* [The BEST Private Notetaking Apps Explained](https://www.youtube.com/watch?v=BJw5tKPP1PY)
* [Notally](https://www.noteapps.ca/notally/)
* [The 9 Best Simple Note-Taking Apps for Android](https://www.makeuseof.com/simple-note-apps-android/)
### Contributing
If you find any bugs or want to propose a new Feature/Enhancement, feel free to [create a new Issue](https://github.com/PhilKes/NotallyX/issues/new)

### Copycats
Clones of Notally keep popping up on the Play Store. They are not licensed under GPL3 and usually change a few colors, include ads, etc. Please [report them](https://support.google.com/googleplay/android-developer/contact/takedown) and [inform me](mailto:[email protected]) if you find a new one.
If you would like to contribute code yourself, just grab any open issue (that has no other developer assigned yet) and start working.
The project is a default Android project written in Kotlin.
Before submitting your proposed changes as a Pull-Request, make sure all tests are still working, and run `./gradlew ktfmtFormat` for common formatting.

* https://play.google.com/store/apps/details?id=com.sladjan.notes
* https://play.google.com/store/apps/details?id=com.sladjan.notespro
### Attribution
The original Notally project was developed by [OmGodse](https://github.com/OmGodse) under the [GPL 3.0 License](https://github.com/OmGodse/Notally/blob/master/LICENSE.md)
In accordance to GPL 3.0, this project is licensed under the same [GPL 3.0 License](https://github.com/PhilKes/NotallyX/blob/master/LICENSE.md)
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ plugins {

android {
compileSdk 34
namespace 'com.omgodse.notally'
namespace 'com.philkes.notallyx'

defaultConfig {
applicationId 'com.omgodse.notally'
applicationId 'com.philkes.notallyx'
minSdk 21
targetSdk 33
versionCode 56
Expand Down
32 changes: 16 additions & 16 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
<uses-permission android:name="android.permission.RECORD_AUDIO" />

<application
android:name=".NotallyApplication"
android:name=".NotallyXApplication"
android:allowBackup="true"
android:appCategory="productivity"
android:dataExtractionRules="@xml/data_rules"
android:fullBackupContent="@xml/backup_content"
android:icon="@mipmap/notally"
android:icon="@mipmap/notallyx"
android:label="@string/app_name"
android:localeConfig="@xml/locales"
android:roundIcon="@mipmap/notally_round"
android:roundIcon="@mipmap/notallyx_round"
android:theme="@style/AppTheme">

<provider
Expand All @@ -36,7 +36,7 @@
</provider>

<activity
android:name=".activities.MainActivity"
android:name=".presentation.activity.main.MainActivity"
android:exported="true"
android:theme="@style/MainActivity">

Expand All @@ -52,11 +52,11 @@
</activity>

<activity
android:name=".activities.MakeList"
android:name=".presentation.activity.note.EditListActivity"
android:windowSoftInputMode="adjustResize" />

<activity
android:name=".activities.TakeNote"
android:name=".presentation.activity.note.EditNoteActivity"
android:exported="true"
android:windowSoftInputMode="adjustResize">

Expand All @@ -68,18 +68,18 @@

</activity>

<activity android:name=".activities.ViewImage" />
<activity android:name=".presentation.activity.note.ViewImageActivity" />

<activity android:name=".activities.SelectLabels" />
<activity android:name=".presentation.activity.note.SelectLabelsActivity" />

<activity
android:name=".activities.RecordAudio"
android:name=".presentation.activity.note.RecordAudioActivity"
android:launchMode="singleTask" />

<activity android:name=".activities.PlayAudio" />
<activity android:name=".presentation.activity.note.PlayAudioActivity" />

<activity
android:name=".activities.ConfigureWidget"
android:name=".presentation.activity.ConfigureWidgetActivity"
android:exported="false">

<intent-filter>
Expand All @@ -89,7 +89,7 @@
</activity>

<receiver
android:name=".widget.WidgetProvider"
android:name=".presentation.widget.WidgetProvider"
android:exported="false"
android:label="@string/single_note_or_list">

Expand All @@ -104,21 +104,21 @@
</receiver>

<service
android:name=".widget.WidgetService"
android:name=".presentation.widget.WidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS" />

<service
android:name=".AttachmentDeleteService"
android:name=".data.AttachmentDeleteService"
android:exported="false"
android:foregroundServiceType="dataSync" />

<service
android:name=".audio.AudioRecordService"
android:name=".utils.audio.AudioRecordService"
android:exported="false"
android:foregroundServiceType="microphone" />

<service
android:name=".audio.AudioPlayService"
android:name=".utils.audio.AudioPlayService"
android:exported="false" />

</application>
Expand Down
8 changes: 0 additions & 8 deletions app/src/main/java/com/omgodse/notally/Cache.kt

This file was deleted.

135 changes: 0 additions & 135 deletions app/src/main/java/com/omgodse/notally/audio/AudioRecordService.kt

This file was deleted.

10 changes: 0 additions & 10 deletions app/src/main/java/com/omgodse/notally/fragments/Archived.kt

This file was deleted.

5 changes: 0 additions & 5 deletions app/src/main/java/com/omgodse/notally/image/FileError.kt

This file was deleted.

3 changes: 0 additions & 3 deletions app/src/main/java/com/omgodse/notally/model/Item.kt

This file was deleted.

This file was deleted.

Loading

0 comments on commit 7deaf23

Please sign in to comment.