update about page and readme
This commit is contained in:
parent
98279f81b7
commit
25c05ef426
|
@ -41,8 +41,6 @@
|
||||||
|
|
||||||
|
|
||||||
Lead developer: [toot.fedilab.app/@fedilab](https://toot.fedilab.app/@fedilab)
|
Lead developer: [toot.fedilab.app/@fedilab](https://toot.fedilab.app/@fedilab)
|
||||||
<br>
|
|
||||||
Developer: [toot.fedilab.app/@kasun](https://toot.fedilab.app/@kasun)
|
|
||||||
|
|
||||||
## Backers
|
## Backers
|
||||||
|
|
||||||
|
|
|
@ -130,7 +130,6 @@ public class AboutActivity extends BaseActivity implements OnRetrieveRemoteAccou
|
||||||
TextView txt_developers, txt_ux, txt_thankyou3, txt_thankyou1, txt_thankyou2;
|
TextView txt_developers, txt_ux, txt_thankyou3, txt_thankyou1, txt_thankyou2;
|
||||||
txt_developers = findViewById(R.id.txt_developers);
|
txt_developers = findViewById(R.id.txt_developers);
|
||||||
txt_ux = findViewById(R.id.txt_ux);
|
txt_ux = findViewById(R.id.txt_ux);
|
||||||
txt_thankyou3 = findViewById(R.id.txt_thankyou3);
|
|
||||||
txt_thankyou1 = findViewById(R.id.txt_thankyou1);
|
txt_thankyou1 = findViewById(R.id.txt_thankyou1);
|
||||||
txt_thankyou2 = findViewById(R.id.txt_thankyou2);
|
txt_thankyou2 = findViewById(R.id.txt_thankyou2);
|
||||||
|
|
||||||
|
@ -241,7 +240,6 @@ public class AboutActivity extends BaseActivity implements OnRetrieveRemoteAccou
|
||||||
lv_ux.setAdapter(accountSearchWebAdapterUxUiDesigners);
|
lv_ux.setAdapter(accountSearchWebAdapterUxUiDesigners);
|
||||||
|
|
||||||
if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON || MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) {
|
if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON || MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) {
|
||||||
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "kasun", "toot.fedilab.app", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
|
||||||
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "fedilab", "toot.fedilab.app", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "fedilab", "toot.fedilab.app", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
||||||
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "mmarif", "mastodon.social", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "mmarif", "mastodon.social", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
||||||
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "PhotonQyv", "mastodon.xyz", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "PhotonQyv", "mastodon.xyz", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
||||||
|
@ -288,17 +286,6 @@ public class AboutActivity extends BaseActivity implements OnRetrieveRemoteAccou
|
||||||
Helper.openBrowser(AboutActivity.this, "https://social.tchncs.de/@angrytux");
|
Helper.openBrowser(AboutActivity.this, "https://social.tchncs.de/@angrytux");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
name = new SpannableString("@kasun@stoot.fedilab.app");
|
|
||||||
name.setSpan(new UnderlineSpan(), 0, name.length(), 0);
|
|
||||||
txt_thankyou3.setText(name);
|
|
||||||
txt_thankyou3.setVisibility(View.VISIBLE);
|
|
||||||
txt_thankyou3.setOnClickListener(new View.OnClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onClick(View v) {
|
|
||||||
Helper.openBrowser(AboutActivity.this, "https://toot.fedilab.app/@kasun");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -165,13 +165,6 @@
|
||||||
android:divider="@null"
|
android:divider="@null"
|
||||||
android:scrollbars="none" />
|
android:scrollbars="none" />
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/txt_thankyou3"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textSize="16sp"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/txt_thankyou1"
|
android:id="@+id/txt_thankyou1"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
Loading…
Reference in New Issue