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
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Table of Contents

* [Changelog for unreleased](#changelog-for-owncloud-android-client-unreleased-unreleased)
* [Changelog for 4.6.1](#changelog-for-owncloud-android-client-461-2025-08-01)
* [Changelog for 4.6.0](#changelog-for-owncloud-android-client-460-2025-07-22)
* [Changelog for 4.5.1](#changelog-for-owncloud-android-client-451-2025-04-03)
* [Changelog for 4.5.0](#changelog-for-owncloud-android-client-450-2025-03-24)
Expand Down Expand Up @@ -28,12 +28,12 @@
* [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 [unreleased] (UNRELEASED)
# Changelog for ownCloud Android Client [4.6.1] (2025-08-01)

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

[unreleased]: https://github.com/owncloud/android/compare/v4.6.0...master
[4.6.1]: https://github.com/owncloud/android/compare/v4.6.0...v4.6.1

## Summary

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 = 46000000
versionName = "4.6.0"
versionCode = 46000100
versionName = "4.6.1"

buildConfigField "String", gitRemote, "\"" + getGitOriginRemote() + "\""
buildConfigField "String", commitSHA1, "\"" + getLatestGitHash() + "\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,21 @@ class ReleaseNotesViewModel(

companion object {
val releaseNotesList = listOf(
ReleaseNote(
title = R.string.release_notes_4_6_1_title_duplicated_automatic_uploads,
subtitle = R.string.release_notes_4_6_1_subtitle_duplicated_automatic_uploads,
type = ReleaseNoteType.BUGFIX
),
ReleaseNote(
title = R.string.release_notes_4_6_1_title_bearer_token_handling,
subtitle = R.string.release_notes_4_6_1_subtitle_bearer_token_handling,
type = ReleaseNoteType.BUGFIX
),
ReleaseNote(
title = R.string.release_notes_4_6_1_title_shares_space_docs_provider,
subtitle = R.string.release_notes_4_6_1_subtitle_shares_space_docs_provider,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_bugfixes_title,
subtitle = R.string.release_notes_bugfixes_subtitle,
Expand Down
6 changes: 6 additions & 0 deletions owncloudApp/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,12 @@
<string name="release_notes_icon">Release note icon</string>
<string name="release_notes_bugfixes_title">Minor bugfixes</string>
<string name="release_notes_bugfixes_subtitle">Some bugs were fixed to improve experience in the app</string>
<string name="release_notes_4_6_1_title_shares_space_docs_provider">Shares space in Android native file explorer</string>
<string name="release_notes_4_6_1_subtitle_shares_space_docs_provider">Shares space now appears next to the other spaces in Documents Provider for Infinite Scale accounts</string>
<string name="release_notes_4_6_1_title_duplicated_automatic_uploads">Automatic uploads improved</string>
<string name="release_notes_4_6_1_subtitle_duplicated_automatic_uploads">Automatic uploads are more consistent against duplications</string>
<string name="release_notes_4_6_1_title_bearer_token_handling">Multiple accounts on Infinite Scale servers</string>
<string name="release_notes_4_6_1_subtitle_bearer_token_handling">Multiple accounts can be logged in at the same time on the same Infinite Scale server. Additionally, fixed a problem related with session handling</string>
<!-- Open in web -->
<string name="ic_action_open_in_web">Open in web</string>
<string name="ic_action_open_with_web">Open in %1$s (web)</string>
Expand Down
Loading