Commit graph

9018 commits

Author SHA1 Message Date
Andy Scherzinger
2bee9ea0ac
Merge pull request #3980 from nextcloud/jtr/chore-github-output
build(qa): Switch deprecated `set-output` to `$GITHUB_OUTPUT`
2024-07-01 13:22:48 +02:00
Nextcloud bot
f9a994e273
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-30 02:43:24 +00:00
Josh
81f113c53a
build(qa): Switch deprecated set-output to $GITHUB_OUTPUT
https://github.blog/changelog/2023-07-24-github-actions-update-on-save-state-and-set-output-commands/

Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-06-29 19:31:54 -04:00
Andy Scherzinger
f10759e28f
Merge pull request #3979 from nextcloud/repo-sync/android-config/master
🔄 synced file(s) with nextcloud/android-config
2024-06-29 08:31:06 +02:00
nextcloud-android-bot
784774ee87 🔄 synced local '.github/workflows/' with remote 'config/workflows/'
Signed-off-by: nextcloud-android-bot <android@nextcloud.com>
2024-06-29 02:28:59 +00:00
Nextcloud bot
5a6cfb6fe6
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-28 02:51:39 +00:00
renovate[bot]
09764d917f
fix(deps): update dependency com.github.nextcloud.android-common:ui to v0.22.0
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-27 09:21:41 +00:00
Nextcloud bot
59b86aca73
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-27 02:44:27 +00:00
Nextcloud bot
0ce4ae8a6d
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-23 02:44:56 +00:00
Nextcloud bot
c29afb6c44
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-22 03:41:13 +00:00
Nextcloud bot
f583e20db1
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-21 02:44:14 +00:00
Nextcloud bot
09adacec7d
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-20 02:43:44 +00:00
Andy Scherzinger
86f9a157dd
ci: bump lint scores
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-06-19 17:15:21 +02:00
Andy Scherzinger
0a24f043b8
fix: remove use of LayoutInflater.from(Context)
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-06-19 17:15:21 +02:00
renovate[bot]
6fd725e8be
fix(deps): update dependency androidx.appcompat:appcompat to v1.7.0
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-19 17:15:20 +02:00
Marcel Hibbe
cb933be70d
Merge pull request #3974 from nextcloud/bugfix/noid/fixCrashWhenOpenChat
Avoid StackOverflowError when opening chat (kotlin2.0 fix)
2024-06-18 13:38:36 +02:00
Marcel Hibbe
6ceafee3ed
Avoid StackOverflowError when opening chat (kotlin2.0 fix)
When opening the chat the app crashed with

2024-06-18 10:59:45.039 30757-30757 AndroidRuntime          com.nextcloud.talk2                  E  FATAL EXCEPTION: main
  Process: com.nextcloud.talk2, PID: 30757
  java.lang.StackOverflowError: stack size 8192KB
  at com.nextcloud.talk.ui.MessageInput.getMessageSendButton(MessageInput.kt:75)

Hint in AS was:
Now field from base class com.stfalcon.chatkit.messages.MessageInput shadows the property with custom getter from derived class com.nextcloud.talk.ui.MessageInput. This behavior will be changed soon in favor of the property. Please use explicit cast to com.stfalcon.chatkit.messages.MessageInput if you wish to preserve current behavior. See https://youtrack.jetbrains.com/issue/KT-55017 for details

The issue is caused by the update to kotlin2.0.
Calling the super fields fixes the issue.

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-06-18 11:54:33 +02:00
Marcel Hibbe
1e14532713
Merge pull request #3970 from nextcloud/kotlin2.0
update to kotlin 2.0 / use ksp where possible
2024-06-18 09:23:08 +02:00
Marcel Hibbe
e0d7f00d87
Merge pull request #3969 from nextcloud/gradle8.5update
update to gradle 8.5.0
2024-06-18 09:22:42 +02:00
Nextcloud bot
988941a44b
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-18 02:44:16 +00:00
Andy Scherzinger
35ce857255
Merge pull request #3972 from nextcloud/renovate/gradle-wrapper-validation-action-3.x
chore(deps): update gradle/wrapper-validation-action action to v3.4.2
2024-06-18 00:03:36 +02:00
renovate[bot]
2cd5f6e9fd
chore(deps): update gradle/wrapper-validation-action action to v3.4.2
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-17 22:01:26 +00:00
Andy Scherzinger
062895b85f
Merge pull request #3971 from nextcloud/renovate/actions-checkout-4.x
chore(deps): update actions/checkout action to v4.1.7
2024-06-18 00:00:56 +02:00
renovate[bot]
ed9c5e56cd
chore(deps): update actions/checkout action to v4.1.7
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-17 15:54:12 +00:00
Marcel Hibbe
00101abda7
update to kotlin 2.0 / use ksp where possible
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-06-17 17:41:03 +02:00
Marcel Hibbe
b0c82f2a38
update to gradle 8.5.0
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
2024-06-17 16:01:54 +02:00
Nextcloud bot
34b49cc301
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-17 02:40:34 +00:00
Andy Scherzinger
ba51352c46
Merge pull request #3968 from nextcloud/repo-sync/android-config/master
🔄 synced file(s) with nextcloud/android-config
2024-06-16 10:16:39 +02:00
Nextcloud bot
8799886bb3
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-16 02:44:01 +00:00
nextcloud-android-bot
e4c53752ed 🔄 synced local '.github/workflows/' with remote 'config/workflows/'
Signed-off-by: nextcloud-android-bot <android@nextcloud.com>
2024-06-16 02:32:23 +00:00
Nextcloud bot
bcc514986c
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-15 02:46:38 +00:00
Andy Scherzinger
d70b626139
Merge pull request #3948 from nextcloud/renovate/gradle-8.x
chore(deps): update dependency gradle to v8.8
2024-06-14 21:26:24 +02:00
Andy Scherzinger
932086d9c7
Merge pull request #3967 from nextcloud/repo-sync/android-config/master
🔄 synced file(s) with nextcloud/android-config
2024-06-14 07:23:54 +02:00
Nextcloud bot
0e49006118
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-14 02:44:19 +00:00
nextcloud-android-bot
6c4ee630c9 🔄 synced local '.github/workflows/' with remote 'config/workflows/'
Signed-off-by: nextcloud-android-bot <android@nextcloud.com>
2024-06-14 02:30:25 +00:00
Andy Scherzinger
bc1618789d
Merge pull request #3966 from nextcloud/repo-sync/android-config/master
🔄 synced file(s) with nextcloud/android-config
2024-06-14 00:18:46 +02:00
nextcloud-android-bot
cddfb6b16f 🔄 synced local '.github/workflows/' with remote 'config/workflows/'
Signed-off-by: nextcloud-android-bot <android@nextcloud.com>
2024-06-13 21:33:35 +00:00
Andy Scherzinger
3ce5975fc2
Merge pull request #3965 from nextcloud/repo-sync/android-config/master
🔄 synced file(s) with nextcloud/android-config
2024-06-13 08:46:18 +02:00
nextcloud-android-bot
fd5e7674e0 🔄 synced local '.github/workflows/' with remote 'config/workflows/'
Signed-off-by: nextcloud-android-bot <android@nextcloud.com>
2024-06-13 05:55:24 +00:00
Nextcloud bot
acec694121
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2024-06-11 02:42:48 +00:00
Marcel Hibbe
2b2975d77d
Merge pull request #3959 from nextcloud/issue-3958-fixing-refresh-on-orientation
Follow up fix to refactoring
2024-06-10 12:37:27 +02:00
rapterjet2004
560e454d5e
Fixes
Signed-off-by: rapterjet2004 <juliuslinus1@gmail.com>
2024-06-06 09:20:01 -05:00
Andy Scherzinger
3ed7572309
Merge pull request #3955 from nextcloud/renovate/ubuntu-noble
chore(deps): update ubuntu:noble docker digest to e3f92ab
2024-06-05 22:49:33 +02:00
renovate[bot]
a772f25df8
chore(deps): update ubuntu:noble docker digest to e3f92ab
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-05 19:24:39 +00:00
Andy Scherzinger
944e1429c2
Merge pull request #3943 from nextcloud/renovate/lifecycleversion
fix(deps): update lifecycleversion to v2.8.1
2024-06-05 20:11:41 +02:00
Andy Scherzinger
3442e739c0
Merge pull request #3954 from nextcloud/repo-sync/android-config/master
🔄 synced file(s) with nextcloud/android-config
2024-06-05 19:58:55 +02:00
nextcloud-android-bot
42f94f1eb6 🔄 synced local '.github/workflows/' with remote 'config/workflows/'
Signed-off-by: nextcloud-android-bot <android@nextcloud.com>
2024-06-05 17:57:09 +00:00
Marcel Hibbe
304f07527c
Merge pull request #3792 from nextcloud/issue-3784-message-input-refactor
Refactored Message input view into it's own Fragment
2024-06-05 17:59:17 +02:00
Julius Linus
6a01ebf630
Message Input Refactoring
- Added io folder for Abstracting away background work
- AudioFocusRequestManager
- MediaPlayerManager
- MediaRecorderManager
- AudioRecorderManager

Included new View Models + Fragments to separate concerns

- MessageInputFragment
- MessageInputVoiceRecordingFragment

Signed-off-by: rapterjet2004 <juliuslinus1@gmail.com>
2024-06-05 17:45:01 +02:00
Andy Scherzinger
727a66f7c8
Merge pull request #3953 from nextcloud/repo-sync/android-config/master
🔄 synced file(s) with nextcloud/android-config
2024-06-05 07:16:52 +02:00