Skip to content

Commit

Permalink
Merge pull request #1 from amberin/amberin-patch-1
Browse files Browse the repository at this point in the history
Amberin patch 1
  • Loading branch information
amberin authored Sep 25, 2023
2 parents 7c55404 + c486599 commit 1eeb65b
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 9 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build-and-publish-release-apk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build and publish release APK

on:
# Trigger by pushing a version tag (which are protected)
push:
tags:
- 'v*.*.*'
- '!v*.*.*-*'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build-and-publish-release-apk:
runs-on: ubuntu-latest
steps:
- name: Checkout code for app release
uses: actions/checkout@v2

- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'

- name: Generate release APK
run: ./gradlew assemblePremiumRelease --stacktrace

- name: Sign APK with keystore
uses: r0adkll/sign-android-release@v1
id: sign_app
with:
releaseDirectory: app/build/outputs/apk/premium/release
signingKeyBase64: ${{ secrets.RELEASE_SIGNING_KEY_STORE }}
alias: key0
keyStorePassword: ${{ secrets.KEY_STORE_PASS }}
keyPassword: ${{ secrets.KEY_STORE_PASS }}
env:
BUILD_TOOLS_VERSION: "30.0.2"

- name: Create release from APK
uses: softprops/action-gh-release@v1
with:
files: ${{steps.sign_app.outputs.signedReleaseFile}}
5 changes: 4 additions & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<a title="Crowdin" target="_blank" href="https://crowdin.com/project/orgzly"><img src="https://d322cqt584bo4o.cloudfront.net/orgzly/localized.svg"></a>
#+END_HTML

* Orgzly
* Orgzly Revived

Orgzly is an outliner for taking notes and managing to-do lists.

Expand All @@ -15,6 +15,9 @@ keeping notes, maintaining TODO lists, planning projects, and
authoring documents with a fast and effective plain-text system.” See
http://orgmode.org for more information.

Orgzly Revived is a community fork of Orgzly, launched because the creator of
the original app seems to have disappeared.

#+BEGIN_HTML
<a href="https://play.google.com/store/apps/details?id=com.orgzly">
<img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png" alt="Get it on Google Play" height="80">
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
defaultConfig {
minSdkVersion 21 // Lollipop (5.0)
targetSdkVersion 32 // Android 12L
applicationId "com.orgzly"
applicationId "com.orgzlyrevived"
versionCode 171
versionName "1.8.10"

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings_untranslatable.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name" translatable="false">Orgzly</string>
<string name="app_name" translatable="false">Orgzly Revived</string>

<string name="day_night" translatable="false">day</string>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/xml/prefs_screen_developer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
android:title="@string/logs">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.orgzly"
android:targetPackage="com.orgzlyrevived"
android:targetClass="com.orgzly.android.ui.logs.AppLogsActivity"/>
</Preference>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/xml/prefs_screen_sync.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
android:summary="@string/repos_preference_summary">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.orgzly"
android:targetPackage="com.orgzlyrevived"
android:targetClass="com.orgzly.android.ui.repos.ReposActivity"/>
</Preference>

Expand All @@ -27,7 +27,7 @@
android:summary="@string/ssh_keygen_preference_summary">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.orgzly"
android:targetPackage="com.orgzlyrevived"
android:targetClass="com.orgzly.android.ui.SshKeygenActivity"/>
</Preference>

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/xml/shortcuts.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
android:shortcutShortLabel="@string/new_note">
<intent
android:action="android.intent.action.SEND"
android:targetPackage="com.orgzly"
android:targetPackage="com.orgzlyrevived"
android:targetClass="com.orgzly.android.ui.share.ShareActivity" />
</shortcut>

Expand All @@ -23,7 +23,7 @@
android:shortcutShortLabel="@string/sync">
<intent
android:action="com.orgzly.intent.action.SYNC_START"
android:targetPackage="com.orgzly"
android:targetPackage="com.orgzlyrevived"
android:targetClass="com.orgzly.android.ui.SyncShortcutActivity" />
</shortcut>

Expand Down
2 changes: 1 addition & 1 deletion metadata/en-US/title.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Orgzly
Orgzly Revived

0 comments on commit 1eeb65b

Please sign in to comment.