Skip to content

Commit 358777c

Browse files
authored
Merge pull request #4009 from TeamAmaze/add-vishnu-to-metadata
Update metadata
2 parents b060155 + 7af47b5 commit 358777c

File tree

5 files changed

+65
-5
lines changed

5 files changed

+65
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,10 @@ We strongly recommend using apk signed by us (either Play Store version or from
8585
### License:
8686

8787
Copyright (C) 2014-2018 Arpit Khurana <arpitkh96@gmail.com>
88-
Copyright (C) 2014-2021 Vishal Nehra <vishalmeham2@gmail.com>
89-
Copyright (C) 2017-2021 Emmanuel Messulam <emmanuelbendavid@gmail.com>
90-
Copyright (C) 2018-2021 Raymond Lai <airwave209gt at gmail.com>
88+
Copyright (C) 2014-2023 Vishal Nehra <vishalmeham2@gmail.com>
89+
Copyright (C) 2017-2023 Emmanuel Messulam <emmanuelbendavid@gmail.com>
90+
Copyright (C) 2018-2023 Raymond Lai <airwave209gt at gmail.com>
91+
Copyright (C) 2019-2023 Vishnu Sanal T <t.v.s10123 at gmail.com>
9192
This file is part of Amaze File Manager.
9293
Amaze File Manager is free software: you can redistribute it and/or modify
9394
it under the terms of the GNU General Public License as published by

app/src/main/java/com/amaze/filemanager/ui/activities/AboutActivity.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,14 @@ public class AboutActivity extends ThemedActivity implements View.OnClickListene
6767
private AppBarLayout mAppBarLayout;
6868
private CollapsingToolbarLayout mCollapsingToolbarLayout;
6969
private AppCompatTextView mTitleTextView;
70-
private View mAuthorsDivider, mDeveloper1Divider;
70+
private View mAuthorsDivider, mDeveloper1Divider, mDeveloper2Divider;
7171
private Billing billing;
7272

7373
private static final String URL_AUTHOR1_GITHUB = "https://github.com/arpitkh96";
7474
private static final String URL_AUTHOR2_GITHUB = "https://github.com/VishalNehra";
7575
private static final String URL_DEVELOPER1_GITHUB = "https://github.com/EmmanuelMess";
7676
private static final String URL_DEVELOPER2_GITHUB = "https://github.com/TranceLove";
77+
private static final String URL_DEVELOPER3_GITHUB = "https://github.com/VishnuSanal";
7778
private static final String URL_REPO_CHANGELOG =
7879
"https://github.com/TeamAmaze/AmazeFileManager/commits/master";
7980
private static final String URL_REPO = "https://github.com/TeamAmaze/AmazeFileManager";
@@ -108,6 +109,7 @@ public void onCreate(@Nullable Bundle savedInstanceState) {
108109
mTitleTextView = findViewById(R.id.text_view_title);
109110
mAuthorsDivider = findViewById(R.id.view_divider_authors);
110111
mDeveloper1Divider = findViewById(R.id.view_divider_developers_1);
112+
mDeveloper2Divider = findViewById(R.id.view_divider_developers_2);
111113

112114
mAppBarLayout.setLayoutParams(calculateHeaderViewParams());
113115

@@ -200,6 +202,7 @@ private void switchIcons() {
200202
// dark theme
201203
mAuthorsDivider.setBackgroundColor(Utils.getColor(this, R.color.divider_dark_card));
202204
mDeveloper1Divider.setBackgroundColor(Utils.getColor(this, R.color.divider_dark_card));
205+
mDeveloper2Divider.setBackgroundColor(Utils.getColor(this, R.color.divider_dark_card));
203206
}
204207
}
205208

@@ -280,6 +283,10 @@ public void onClick(View v) {
280283
openURL(URL_DEVELOPER2_GITHUB, this);
281284
break;
282285

286+
case R.id.text_view_developer_3_github:
287+
openURL(URL_DEVELOPER3_GITHUB, this);
288+
break;
289+
283290
case R.id.relative_layout_translate:
284291
openURL(URL_REPO_TRANSLATE, this);
285292
break;

app/src/main/java/com/amaze/filemanager/utils/Utils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ public class Utils {
8989
private static final String DATE_TIME_FORMAT = "%s | %s";
9090
private static final String EMAIL_EMMANUEL = "emmanuelbendavid@gmail.com";
9191
private static final String EMAIL_RAYMOND = "airwave209gt@gmail.com";
92+
private static final String EMAIL_VISHNU = "t.v.s10123@gmail.com";
9293
private static final String EMAIL_VISHAL = "vishalmeham2@gmail.com";
9394
private static final String URL_TELEGRAM = "https://t.me/AmazeFileManager";
9495
private static final String URL_INSTGRAM = "https://www.instagram.com/teamamaze.xyz/";
@@ -426,7 +427,7 @@ public static void openInstagramURL(Context context) {
426427
public static Intent buildEmailIntent(Context context, String text, String supportMail) {
427428
Intent emailIntent = new Intent(Intent.ACTION_SEND);
428429
String[] aEmailList = {supportMail};
429-
String[] aEmailCCList = {EMAIL_VISHAL, EMAIL_EMMANUEL, EMAIL_RAYMOND};
430+
String[] aEmailCCList = {EMAIL_VISHAL, EMAIL_EMMANUEL, EMAIL_RAYMOND, EMAIL_VISHNU};
430431
emailIntent.putExtra(Intent.EXTRA_EMAIL, aEmailList);
431432
emailIntent.putExtra(Intent.EXTRA_CC, aEmailCCList);
432433
emailIntent.putExtra(

app/src/main/res/layout/activity_about.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,56 @@
441441
</RelativeLayout>
442442
</RelativeLayout>
443443
</RelativeLayout>
444+
445+
<!-- divider -->
446+
<View
447+
android:id="@+id/view_divider_developers_2"
448+
android:layout_width="match_parent"
449+
android:layout_height="1dp"
450+
android:background="@color/divider"
451+
android:layout_marginLeft="@dimen/material_generic_large"
452+
android:layout_marginTop="@dimen/material_generic"
453+
android:layout_marginBottom="@dimen/material_generic"
454+
/>
455+
456+
<!-- dev 3 -->
457+
<RelativeLayout
458+
android:layout_width="match_parent"
459+
android:layout_height="@dimen/material_generic_list_item"
460+
android:background="?android:attr/selectableItemBackground"
461+
android:gravity="center_vertical"
462+
android:layout_marginStart="72dp"
463+
android:layout_marginLeft="72dp">
464+
<RelativeLayout
465+
android:layout_width="wrap_content"
466+
android:layout_height="match_parent"
467+
android:gravity="center_vertical">
468+
469+
<androidx.appcompat.widget.AppCompatTextView
470+
android:id="@+id/text_view_developer_3_title"
471+
android:layout_width="wrap_content"
472+
android:layout_height="wrap_content"
473+
android:text="@string/developer_3"
474+
android:textSize="@dimen/material_generic_title"/>
475+
476+
<RelativeLayout
477+
android:layout_width="match_parent"
478+
android:layout_height="wrap_content"
479+
android:layout_below="@+id/text_view_developer_3_title"
480+
android:layout_marginTop="@dimen/material_generic">
481+
<androidx.appcompat.widget.AppCompatTextView
482+
android:id="@+id/text_view_developer_3_github"
483+
android:layout_width="wrap_content"
484+
android:layout_height="wrap_content"
485+
android:background="?android:attr/selectableItemBackground"
486+
android:text="@string/github"
487+
android:textColor="@color/accent_red"
488+
android:layout_alignParentLeft="true"
489+
android:textSize="@dimen/material_generic_title"
490+
android:onClick="onClick"/>
491+
</RelativeLayout>
492+
</RelativeLayout>
493+
</RelativeLayout>
444494
</LinearLayout>
445495
</androidx.cardview.widget.CardView>
446496

app/src/main/res/values/translators.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
<string name="author_2" translatable="false">Vishal Nehra</string>
4848
<string name="developer_1" translatable="false">Emmanuel Messulam</string>
4949
<string name="developer_2" translatable="false">Raymond Lai</string>
50+
<string name="developer_3" translatable="false">Vishnu Sanal T</string>
5051

5152
<string name="contributor_1_title" translatable="false">Team MoKee</string>
5253
<string name="contributor_2_title" translatable="false">CookIcons.co</string>

0 commit comments

Comments
 (0)