diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 94ad571..8485d9a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ Crowdin will not pick up changes in develop branch, that's why all translations ### Issues: -Issues are handled on Github at: https://github.com/stom79/TubeLab/issues, before opening an issue, please check it has not yet been submitted by someone else +Issues are handled on Framagit at: https://framagit.org/imattau/fedilab-tube/-/issues, before opening an issue, please check it has not yet been submitted by someone else ### Contribution to code: diff --git a/app/src/main/java/app/fedilab/fedilabtube/AboutActivity.java b/app/src/main/java/app/fedilab/fedilabtube/AboutActivity.java index a9f2c0a..3c1607e 100644 --- a/app/src/main/java/app/fedilab/fedilabtube/AboutActivity.java +++ b/app/src/main/java/app/fedilab/fedilabtube/AboutActivity.java @@ -80,15 +80,6 @@ public class AboutActivity extends AppCompatActivity { TextView app_name = findViewById(R.id.app_name); app_name.setText(R.string.app_name); - //Developer Github - TextView github = findViewById(R.id.github); - content = new SpannableString(github.getText().toString()); - content.setSpan(new UnderlineSpan(), 0, content.length(), 0); - github.setText(content); - github.setOnClickListener(v -> { - Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/stom79")); - startActivity(browserIntent); - }); //Developer Framagit TextView framagit = findViewById(R.id.framagit); @@ -100,15 +91,6 @@ public class AboutActivity extends AppCompatActivity { startActivity(browserIntent); }); - //Developer Codeberg - TextView codeberg = findViewById(R.id.codeberg); - content = new SpannableString(codeberg.getText().toString()); - content.setSpan(new UnderlineSpan(), 0, content.length(), 0); - codeberg.setText(content); - codeberg.setOnClickListener(v -> { - Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://codeberg.org/tom79")); - startActivity(browserIntent); - }); LinearLayout donation_container = findViewById(R.id.donation_container); if (BuildConfig.google_restriction || !BuildConfig.full_instances) { diff --git a/app/src/main/res/layout/activity_about.xml b/app/src/main/res/layout/activity_about.xml index fd3db72..a644f7f 100644 --- a/app/src/main/res/layout/activity_about.xml +++ b/app/src/main/res/layout/activity_about.xml @@ -135,23 +135,6 @@ android:textSize="16sp" tools:ignore="HardcodedText" /> - - -