Update ReadMe remove useless accounts
This commit is contained in:
parent
edbe65593b
commit
540fb3e2dc
|
@ -10,7 +10,7 @@ Crowdin will not pick up changes in develop branch, that's why all translations
|
||||||
|
|
||||||
### Issues:
|
### 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:
|
### Contribution to code:
|
||||||
|
|
||||||
|
|
|
@ -80,15 +80,6 @@ public class AboutActivity extends AppCompatActivity {
|
||||||
TextView app_name = findViewById(R.id.app_name);
|
TextView app_name = findViewById(R.id.app_name);
|
||||||
app_name.setText(R.string.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
|
//Developer Framagit
|
||||||
TextView framagit = findViewById(R.id.framagit);
|
TextView framagit = findViewById(R.id.framagit);
|
||||||
|
@ -100,15 +91,6 @@ public class AboutActivity extends AppCompatActivity {
|
||||||
startActivity(browserIntent);
|
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);
|
LinearLayout donation_container = findViewById(R.id.donation_container);
|
||||||
if (BuildConfig.google_restriction || !BuildConfig.full_instances) {
|
if (BuildConfig.google_restriction || !BuildConfig.full_instances) {
|
||||||
|
|
|
@ -135,23 +135,6 @@
|
||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
tools:ignore="HardcodedText" />
|
tools:ignore="HardcodedText" />
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/github"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:text="Github"
|
|
||||||
android:textSize="16sp"
|
|
||||||
tools:ignore="HardcodedText" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/codeberg"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:text="Codeberg"
|
|
||||||
android:textSize="16sp"
|
|
||||||
tools:ignore="HardcodedText" />
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
Loading…
Reference in New Issue