Skip to content

Commit

Permalink
Replaced unattended (my fault) Facebook community with Telegram channel
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed May 3, 2023
1 parent 2374428 commit cbb03b8
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Omni-Notes is a note taking <b>open-source</b> application aimed to have both a

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.

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

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

Expand Down
2 changes: 1 addition & 1 deletion assets/translations/play_store_description.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Open-source note taking application, designed to be lightweight and simple without giving up smart behavior.

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

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

Expand Down
5 changes: 2 additions & 3 deletions omniNotes/src/main/assets/html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,9 @@
</p>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package it.feio.android.omninotes.intro;

import static it.feio.android.omninotes.utils.ConstantsBase.FACEBOOK_COMMUNITY;
import static it.feio.android.omninotes.utils.ConstantsBase.COMMUNITY_LINK;

import android.content.Intent;
import android.graphics.Color;
Expand All @@ -35,11 +35,11 @@ public void onActivityCreated(Bundle savedInstanceState) {
binding.introBackground.setBackgroundColor(Color.parseColor("#222222"));
binding.introTitle.setText(R.string.tour_listactivity_final_title);
binding.introImage.setVisibility(View.GONE);
binding.introImageSmall.setImageResource(R.drawable.facebook);
binding.introImageSmall.setImageResource(R.drawable.community);
binding.introImageSmall.setVisibility(View.VISIBLE);
binding.introImageSmall.setOnClickListener(v -> {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(FACEBOOK_COMMUNITY));
intent.setData(Uri.parse(COMMUNITY_LINK));
startActivity(intent);
});
binding.introDescription.setText(R.string.tour_community);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,7 @@ public interface ConstantsBase {

String DATABASE_NAME = "omni-notes";
String APP_STORAGE_DIRECTORY_SB_SYNC = "db_sync";

String DEV_EMAIL = "omninotes@iosue.it";
String GOOGLE_PLUS_COMMUNITY = "https://plus.google.com/communities/112276053772152071903";
String FACEBOOK_COMMUNITY = "https://www.facebook.com/OmniNotes/";

// Used for updates retrieval
long UPDATE_MIN_FREQUENCY = 24L * 60L * 60L * 1000L; // 1 day
String DRIVE_FOLDER_LAST_BUILD = "https://goo.gl/gB55RE";
String COMMUNITY_LINK = "https://t.me/+VwL2-SGNdTs4ZWY0";

// Notes swipe
int SWIPE_MARGIN = 30;
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed omniNotes/src/main/res/drawable-nodpi/facebook.png
Binary file not shown.
1 change: 1 addition & 0 deletions omniNotes/src/main/res/raw/changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
changeDate="May 03, 2023"
versionName="6.3.0">
<changelogtext>[b]New![/b] Targeting Android 13 API with improved performances and security updates</changelogtext>
<changelogtext>[b]New![/b] Telegram channel (removed Facebook, never used...)</changelogtext>
</changelogversion>

<changelogversion
Expand Down

0 comments on commit cbb03b8

Please sign in to comment.