Skip to content

Commit e9ac330

Browse files
committed
Fix some errors in the Spanish prayers
Update about.html, add a README and bump the db version
1 parent f9ad941 commit e9ac330

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Introduction
2+
------------
3+
Prayer Book is an Android app that contains prayers from the writings of the Bahá'í Faith. While the code is covered by the GPL, the Bahá'í sacred writings are copyright Bahá'í International Community (source: https://reference.bahai.org).
4+
5+
Getting Started
6+
---------------
7+
Download the project, and open it up in Android Studio.
8+
9+
License (Source Code)
10+
Copyright 2012-2020. Arash Payan (https://arashpayan.com)
11+
This program is distributed under the terms of the GNU GPL.
12+
13+
Prayer Book is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
14+
15+
Prayer Book is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16+
17+
You should have received a copy of the GNU General Public License along with Prayer Book. If not, see https://www.gnu.org/licenses/.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId 'com.arashpayan.prayerbook'
99
minSdkVersion 19
1010
targetSdkVersion 30
11-
versionCode 18
12-
versionName '2.1.1'
11+
versionCode 20
12+
versionName '2.1.2'
1313
vectorDrawables.useSupportLibrary = true
1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}

app/src/main/assets/pbdb.jet

0 Bytes
Binary file not shown.

app/src/main/java/com/arashpayan/prayerbook/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class App extends Application {
3232
private ExecutorService mExecutor;
3333

3434
private static volatile App app;
35-
private static final int LatestDatabaseVersion = 21;
35+
private static final int LatestDatabaseVersion = 22;
3636

3737
@Override
3838
public void onCreate() {

app/src/main/java/com/arashpayan/prayerbook/CategoriesFragment.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ public void onCreate(Bundle savedInstanceState) {
4444

4545
if (savedInstanceState != null) {
4646
mRecyclerState = savedInstanceState.getParcelable("recycler_state");
47-
L.i("found a recycler state? " + mRecyclerState);
4847
}
4948

5049
App.runInBackground(new WorkerRunnable() {

app/src/main/res/raw/about.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@
5050

5151
<p><strong>News</strong></p>
5252

53-
<p>For news and updates about Prayer Book, visit the brand new website: <a href="https://www.prayerbook.app/">https://www.prayerbook.app</a>.</p>
53+
<p>For news and updates about Prayer Book, visit the website: <a href="https://www.prayerbook.app/">https://www.prayerbook.app</a>.</p>
5454

5555
<hr>
5656

5757
<p><strong>License</strong></p>
5858

59-
<p>All Bahá'í sacred writings copyright Bahá'í International Community, source: <a href="http://reference.bahai.org">reference.bahai.org</a></p>
59+
<p>All Bahá'í sacred writings copyright Bahá'í International Community, source: <a href="https://reference.bahai.org">reference.bahai.org</a></p>
6060

61-
<p>Created by <a href="http://arashpayan.com">Arash Payan</a>. This app is licensed under the GPLv3. The source code is <a href="https://github.com/arashpayan/Prayer-Book-Android">available on GitHub</a>.</p>
61+
<p>Created by <a href="https://arashpayan.com">Arash Payan</a>. This app is licensed under the GPLv3 or later. The source code is <a href="https://github.com/arashpayan/Prayer-Book-Android">available on GitHub</a>.</p>
6262

6363
</body>
6464

0 commit comments

Comments
 (0)