Skip to content

Commit

Permalink
Update website and contact email
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbakker committed Apr 9, 2024
1 parent 2f250e5 commit 071e390
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ android {
minSdkVersion 27
targetSdkVersion 34
versionCode 1
versionName "0.1"
versionName "0.1.0"

buildConfigField "String", "GIT_HASH", "\"${getGitHash()}\""
buildConfigField "String", "GIT_BRANCH", "\"${getGitBranch()}\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class AboutFragment : LibsSupportFragment() {
copyToClipboard(getCurrentAppVersion(), R.string.toast_version_copied)
}
binding.btnGithub.setOnClickListener { openUrl(getString(R.string.about_data_github)) }
binding.btnAlexander.setOnClickListener { openUrl(getString(R.string.about_data_author_alex_website)) }
binding.btnRoclidev.setOnClickListener { openUrl(getString(R.string.about_data_author_website)) }
binding.btnEmail.setOnClickListener { openMail(getString(R.string.about_data_email)) }
binding.btnRate.setOnClickListener { openUrl(getString(R.string.about_data_playstore)) }
binding.btnChangelog.setOnClickListener {
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/layout/fragment_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,12 @@ Licenced under GPLv3
android:paddingTop="24dp"
android:paddingRight="16dp"
android:paddingBottom="16dp"
android:text="@string/about_authors"
android:text="@string/about_author"
android:textAppearance="@style/TextAppearance.AppCompat.Body2"
android:textColor="?android:textColorSecondary" />

<LinearLayout
android:id="@+id/btn_alexander"
android:id="@+id/btn_roclidev"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
Expand Down Expand Up @@ -323,7 +323,7 @@ Licenced under GPLv3
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/about_author_alex"
android:text="@string/about_author_roclidev"
android:textAppearance="@style/TextAppearance.AppCompat.Subhead" />

<TextView
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
<string name="about_support">Support</string>
<string name="about_support_rate">Rate</string>
<string name="about_support_rate_description">Support us by leaving a review in the Google Play Store</string>
<string name="about_authors">Authors</string>
<string name="about_author_alex" translatable="false">Alexander Bakker</string>
<string name="about_author">Author</string>
<string name="about_author_roclidev" translatable="false">Rocli Development</string>
<string name="about_country_netherlands">Netherlands</string>
<string name="about_send_email">Send us an email</string>
<string name="about_license">License</string>
Expand All @@ -52,9 +52,9 @@
<string name="about_changelog">Changelog</string>
<string name="about_changelog_description">What\'s new</string>

<string name="about_data_email" translatable="false">[email protected]</string>
<string name="about_data_email" translatable="false">[email protected]</string>
<string name="about_data_github" translatable="false">https://github.com/alexbakker/webdav-provider</string>
<string name="about_data_author_alex_website" translatable="false">https://alexbakker.me</string>
<string name="about_data_author_website" translatable="false">https://rocli.dev</string>
<string name="about_data_playstore" translatable="false">https://play.google.com/store/apps/details?id=dev.rocli.android.webdav</string>

<string name="toast_version_copied">Version copied to the clipboard</string>
Expand Down

0 comments on commit 071e390

Please sign in to comment.