Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Table of Contents

* [Changelog for 4.8.3](#changelog-for-owncloud-android-client-483-2026-07-21)
* [Changelog for 4.8.2](#changelog-for-owncloud-android-client-482-2026-07-01)
* [Changelog for 4.8.1](#changelog-for-owncloud-android-client-481-2026-06-09)
* [Changelog for 4.8.0](#changelog-for-owncloud-android-client-480-2026-05-18)
Expand Down Expand Up @@ -33,6 +34,25 @@
* [Changelog for 2.18.1](#changelog-for-owncloud-android-client-2181-2021-07-20)
* [Changelog for 2.18.0](#changelog-for-owncloud-android-client-2180-2021-05-24)
* [Changelog for 2.17 versions and below](#changelog-for-217-versions-and-below)
# Changelog for ownCloud Android Client [4.8.3] (2026-07-21)

The following sections list the changes in ownCloud Android Client 4.8.3 relevant to
ownCloud admins and users.

[4.8.3]: https://github.com/owncloud/android/compare/v4.8.2...v4.8.3

## Summary

* Bugfix - Help URL incorrect: [#4931](https://github.com/owncloud/android/pull/4931)

## Details

* Bugfix - Help URL incorrect: [#4931](https://github.com/owncloud/android/pull/4931)

Help URL has been fixed because it returned "Page not found"

https://github.com/owncloud/android/pull/4931

# Changelog for ownCloud Android Client [4.8.2] (2026-07-01)

The following sections list the changes in ownCloud Android Client 4.8.2 relevant to
Expand Down
5 changes: 5 additions & 0 deletions changelog/4.8.3_2026-07-21/4931
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: Help URL incorrect

Help URL has been fixed because it returned "Page not found"

https://github.com/owncloud/android/pull/4931
4 changes: 2 additions & 2 deletions owncloudApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ android {

testInstrumentationRunner "com.owncloud.android.utils.OCTestAndroidJUnitRunner"

versionCode = 48000200
versionName = "4.8.2"
versionCode = 48000300
versionName = "4.8.3"

buildConfigField "String", gitRemote, "\"" + getGitOriginRemote() + "\""
buildConfigField "String", commitSHA1, "\"" + getLatestGitHash() + "\""
Expand Down
2 changes: 1 addition & 1 deletion owncloudApp/src/main/res/values/setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<bool name="wizard_enabled">true</bool>
<bool name="release_notes_enabled">true</bool>
<string name="url_privacy_policy" formatted="false">https://owncloud.com/android-app-privacy-policy/</string>
<string name="url_help" formatted="false">https://doc.owncloud.com/android</string>
<string name="url_help" formatted="false">https://doc.owncloud.com/android/latest/</string>
<string name="url_imprint" formatted="false"></string>
<string name="mail_recommend" formatted="false">"mailto:"</string>
<string name="mail_feedback" formatted="false"></string>
Expand Down