Skip to content

Commit cbb03b8

Browse files
committed
Replaced unattended (my fault) Facebook community with Telegram channel
1 parent 2374428 commit cbb03b8

File tree

8 files changed

+9
-16
lines changed

8 files changed

+9
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Omni-Notes is a note taking <b>open-source</b> application aimed to have both a
1515

1616
The project was inspired by the absence of such applications compatible with old phones and old versions of Android. It aims to provide an attractive look and follow the most recent design guidelines of the Google operating system that is not currently avaialbe for older devices.
1717

18-
**Follow the developments and post your comments and advice on Facebook Community at https://www.facebook.com/OmniNotes**
18+
**Follow the developments and post your comments and advice on Telegram Community at https://t.me/+VwL2-SGNdTs4ZWY0**
1919

2020
Help to keep translations updated is always welcome, if you want give a hand checkout the translation project on *https://translate.omninotes.app.*
2121

assets/translations/play_store_description.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Open-source note taking application, designed to be lightweight and simple without giving up smart behavior.
22

3-
Follow the developments and post your comments and advice on our community at https://www.facebook.com/OmniNotes
3+
Follow the developments and post your comments and advice on our community at https://t.me/+VwL2-SGNdTs4ZWY0
44

55
Your help in translating the app is welcome. Send me an e-mail If you want to lend a hand !
66

omniNotes/src/main/assets/html/about.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,9 @@
5353
</p>
5454

5555
<p>
56-
Give a look at our <a href="https://www.facebook.com/OmniNotes">Community</a> for
56+
Give a look at our <a href="https://t.me/+VwL2-SGNdTs4ZWY0">Community</a> for
5757
Beta releases and at <a href="https://goo.gl/TJaDzV">developer&#39;s personal mini-site</a> for
58-
other softwares,
59-
libraries and trashware!
58+
other softwares, libraries and trashware!
6059
</p>
6160
</div>
6261

omniNotes/src/main/java/it/feio/android/omninotes/intro/IntroSlide6.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
package it.feio.android.omninotes.intro;
1919

20-
import static it.feio.android.omninotes.utils.ConstantsBase.FACEBOOK_COMMUNITY;
20+
import static it.feio.android.omninotes.utils.ConstantsBase.COMMUNITY_LINK;
2121

2222
import android.content.Intent;
2323
import android.graphics.Color;
@@ -35,11 +35,11 @@ public void onActivityCreated(Bundle savedInstanceState) {
3535
binding.introBackground.setBackgroundColor(Color.parseColor("#222222"));
3636
binding.introTitle.setText(R.string.tour_listactivity_final_title);
3737
binding.introImage.setVisibility(View.GONE);
38-
binding.introImageSmall.setImageResource(R.drawable.facebook);
38+
binding.introImageSmall.setImageResource(R.drawable.community);
3939
binding.introImageSmall.setVisibility(View.VISIBLE);
4040
binding.introImageSmall.setOnClickListener(v -> {
4141
Intent intent = new Intent(Intent.ACTION_VIEW);
42-
intent.setData(Uri.parse(FACEBOOK_COMMUNITY));
42+
intent.setData(Uri.parse(COMMUNITY_LINK));
4343
startActivity(intent);
4444
});
4545
binding.introDescription.setText(R.string.tour_community);

omniNotes/src/main/java/it/feio/android/omninotes/utils/ConstantsBase.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,7 @@ public interface ConstantsBase {
2020

2121
String DATABASE_NAME = "omni-notes";
2222
String APP_STORAGE_DIRECTORY_SB_SYNC = "db_sync";
23-
24-
String DEV_EMAIL = "[email protected]";
25-
String GOOGLE_PLUS_COMMUNITY = "https://plus.google.com/communities/112276053772152071903";
26-
String FACEBOOK_COMMUNITY = "https://www.facebook.com/OmniNotes/";
27-
28-
// Used for updates retrieval
29-
long UPDATE_MIN_FREQUENCY = 24L * 60L * 60L * 1000L; // 1 day
30-
String DRIVE_FOLDER_LAST_BUILD = "https://goo.gl/gB55RE";
23+
String COMMUNITY_LINK = "https://t.me/+VwL2-SGNdTs4ZWY0";
3124

3225
// Notes swipe
3326
int SWIPE_MARGIN = 30;
54 KB
Loading
-16.2 KB
Binary file not shown.

omniNotes/src/main/res/raw/changelog.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
changeDate="May 03, 2023"
2121
versionName="6.3.0">
2222
<changelogtext>[b]New![/b] Targeting Android 13 API with improved performances and security updates</changelogtext>
23+
<changelogtext>[b]New![/b] Telegram channel (removed Facebook, never used...)</changelogtext>
2324
</changelogversion>
2425

2526
<changelogversion

0 commit comments

Comments
 (0)