Álvaro Brey
9e55bad4ec
Merge pull request #10901 from nextcloud/dependabot/gradle/mockitoVersion-4.8.1
...
Bump mockitoVersion from 4.8.0 to 4.8.1
2022-10-24 16:59:45 +02:00
dependabot[bot]
40c15d22be
Bump mockitoVersion from 4.8.0 to 4.8.1
...
Bumps `mockitoVersion` from 4.8.0 to 4.8.1.
Updates `mockito-core` from 4.8.0 to 4.8.1
- [Release notes](https://github.com/mockito/mockito/releases )
- [Commits](https://github.com/mockito/mockito/compare/v4.8.0...v4.8.1 )
Updates `mockito-android` from 4.8.0 to 4.8.1
- [Release notes](https://github.com/mockito/mockito/releases )
- [Commits](https://github.com/mockito/mockito/compare/v4.8.0...v4.8.1 )
---
updated-dependencies:
- dependency-name: org.mockito:mockito-core
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.mockito:mockito-android
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-10-24 16:07:55 +02:00
Álvaro Brey
9ee70f4d72
Merge pull request #10911 from nextcloud/dependabot/github_actions/hmarr/auto-approve-action-3.1.0
...
Bump hmarr/auto-approve-action from 3.0.0 to 3.1.0
2022-10-24 16:07:17 +02:00
Álvaro Brey
adaa460056
Merge pull request #10910 from nextcloud/dependabot/github_actions/actions/upload-artifact-3.1.1
...
Bump actions/upload-artifact from 3.1.0 to 3.1.1
2022-10-24 16:06:55 +02:00
Álvaro Brey
64b4260a59
Merge pull request #10909 from nextcloud/changelog-master-stable-3.22.2
...
Add changelog for 3.22.2
2022-10-24 13:19:19 +02:00
dependabot[bot]
2b9b65791f
Bump hmarr/auto-approve-action from 3.0.0 to 3.1.0
...
Bumps [hmarr/auto-approve-action](https://github.com/hmarr/auto-approve-action ) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/hmarr/auto-approve-action/releases )
- [Commits](https://github.com/hmarr/auto-approve-action/compare/v3.0.0...v3.1.0 )
---
updated-dependencies:
- dependency-name: hmarr/auto-approve-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-10-24 11:14:47 +00:00
dependabot[bot]
fe0b6ef04e
Bump actions/upload-artifact from 3.1.0 to 3.1.1
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](3cea537223...83fd05a356
)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-10-24 11:14:45 +00:00
Álvaro Brey
3eb452ffde
Add changelog for 3.22.2
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-24 11:32:06 +02:00
Álvaro Brey
185a0b9902
Merge pull request #10883 from nextcloud/fix/permission-dialog-crash
...
Fix creation and result logic for StoragePermissionDialogFragment
2022-10-24 09:41:49 +02:00
Álvaro Brey
606e3d7ce5
Add screenshot test for storage permission dialog
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-24 09:10:50 +02:00
Álvaro Brey
6ed412d470
Fix creation and result logic for StoragePermissionDialogFragment
...
This prevents a crash on dialog recreation due to it not having default constructor, seen in Google Play crash records
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-24 09:10:50 +02:00
Nextcloud bot
5cfc68c931
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-24 03:21:09 +00:00
Nextcloud bot
020fd3c415
[tx-robot] Update transifex configuration
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-24 03:20:56 +00:00
Nextcloud bot
7859320616
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-23 03:21:12 +00:00
Nextcloud bot
911f9fce7b
[tx-robot] Update transifex configuration
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-23 03:20:57 +00:00
Andy Scherzinger
355fc99f5e
Merge pull request #10890 from Kerbalnut/master
...
Minor updates to README for Windows syntax for logcat instructions.
2022-10-22 10:59:21 +02:00
Kerbalnut
a1384419f7
Minor updates to README for Windows syntax for logcat instructions.
...
Modified 3 lines in README.md
Line 58 had:
`adb shell pidof -s 'com.nextcloud.client` (just one single-quote). Added a second single-quote to close the string and make it: `adb shell pidof -s 'com.nextcloud.client'`, otherwise the terminal will give you new lines waiting for the closing quote.
Line 59 & 60 use %HOMEPATH% environment var instead of %USERPROFILE%
- %HOMEPATH% will return `\Users\username`
- %USERPROFILE% will return `C:\Users\username`
Also added double-quotes around the entire path string in case username contains spaces, e.g. `C:\Users\user name`
For a PowerShell.exe terminal (what MS is starting to recommend over cmd.exe), the same lines can be used with a var reference of `$env:USERPROFILE` instead of `%USERPROFILE%`. I added in an extra hint line in the instructions to remind people of this.
Signed-off-by: Kerbalnut <Kerbalnut@users.noreply.github.com>
2022-10-21 22:24:38 -07:00
Nextcloud bot
a57580762d
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-22 03:22:08 +00:00
Nextcloud bot
7ed654a238
[tx-robot] Update transifex configuration
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-22 03:21:53 +00:00
Álvaro Brey
2e49782298
Merge pull request #10877 from nextcloud/fix/ssl-untrusted-nullpointer
...
SslUntrustedCertDialog: fix inflation to avoid NPE and add test to ensure it doesn't happen again
2022-10-21 16:13:23 +02:00
Álvaro Brey
1cc30945d0
Merge pull request #10860 from nextcloud/changelog-master-stable-3.22.1
...
Add changelog for 3.22.1
2022-10-21 13:37:58 +02:00
Álvaro Brey
f88c4330c8
SslUntrustedCertDialog: fix inflation to avoid NPE and add test to ensure it doesn't happen again
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-21 10:24:58 +02:00
Álvaro Brey
947dab9729
Add changelog for 3.22.1
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-21 09:39:29 +02:00
Nextcloud bot
45163e377d
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-21 03:29:34 +00:00
Nextcloud bot
756966750b
[tx-robot] Update transifex configuration
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-20 17:05:32 +00:00
Álvaro Brey
adec7bd6ea
Merge pull request #10851 from nextcloud/bump-common-ui-0.3
...
Bump android-common:ui to 0.3.0
2022-10-20 16:12:51 +02:00
Álvaro Brey
401812db81
Bump android-common:ui to 0.3.0
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-20 15:48:01 +02:00
Álvaro Brey
4eafbeabbd
Merge pull request #10850 from nextcloud/fix/remove-unused-string
...
Remove unused string again
2022-10-20 15:41:03 +02:00
Álvaro Brey
207c0ae9f0
Remove unused string again
...
Re-synced by transifex while transifex was not working properly
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-20 09:50:16 +02:00
Álvaro Brey
14de239e73
Merge pull request #10831 from nextcloud/fix/intents-mutability
...
Fix pending intent mutability for widget
2022-10-20 09:12:39 +02:00
Álvaro Brey
60fadebd11
Merge pull request #10832 from nextcloud/fix/ssl-dialog-injector
...
Add missing injector for SslUntrustedCertDialog
2022-10-20 09:12:22 +02:00
Álvaro Brey
f86ddb1d52
Merge pull request #10834 from nextcloud/fix/gallery-bottomsheet-crash
...
Fix crash in GalleryFragment when menu button is double-tapped
2022-10-20 09:04:16 +02:00
Álvaro Brey
99bf8aef15
Merge pull request #10829 from nextcloud/fix/grid-image-holder
...
Restore OCFileListGridImageViewHolder
2022-10-20 09:03:56 +02:00
Álvaro Brey
5b82ed3a9b
Merge pull request #10810 from nextcloud/dependabot/github_actions/hmarr/auto-approve-action-3.0.0
...
Bump hmarr/auto-approve-action from 2.4.0 to 3.0.0
2022-10-20 09:02:41 +02:00
Álvaro Brey
a2783775da
Merge pull request #10824 from nextcloud/changelog-master-stable-3.22.0
...
Add changelog for 3.22.0
2022-10-19 16:57:47 +02:00
Álvaro Brey
b4f8773d7b
Fix crash in GalleryFragment when menu button is double-tapped
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-19 16:25:24 +02:00
Álvaro Brey
e151eb7bdf
Add missing injector for SslUntrustedCertDialog
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-19 16:11:59 +02:00
Álvaro Brey
0bbf90cc02
Fix pending intent mutability for widget
...
Mutability flag is compulsory from SDK 31 upwards, `FLAG_IMMUTABLE` is available in all our targeted APIs, and our app will always be able to update the same intent, as `FLAG_UPDATE_CURRENT` is set.
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-19 16:08:41 +02:00
Álvaro Brey
dea4c2f530
Restore OCFileListGridImageViewHolder
...
Changed in #10079 . Not sure why it was changed this way but it causes crashes.
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-19 15:51:56 +02:00
Álvaro Brey
20f6602f8a
Add changelog for 3.22.0
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-19 12:53:36 +02:00
Nextcloud bot
9b3c8510a1
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-19 09:34:07 +00:00
Nextcloud bot
496e916534
[tx-robot] Update transifex configuration
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2022-10-19 09:33:47 +00:00
Álvaro Brey
e8933b402e
Merge pull request #10814 from nextcloud/bump-master-after-3.22
...
Bumps on master after 3.22 branched out
2022-10-19 11:12:12 +02:00
Álvaro Brey
673e9fecc2
Merge pull request #10822 from nextcloud/dependabot/gradle/com.github.spotbugs.snom-spotbugs-gradle-plugin-5.0.13
...
Bump spotbugs-gradle-plugin from 5.0.12 to 5.0.13
2022-10-19 10:19:10 +02:00
Álvaro Brey
b85ec336aa
Drone: test on Nextcloud 25
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-19 10:02:02 +02:00
Álvaro Brey
b4f3ffb64d
Bump app to 3.23.x on master
...
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-19 10:02:02 +02:00
dependabot[bot]
fa9f4ac6e2
Bump spotbugs-gradle-plugin from 5.0.12 to 5.0.13
...
Bumps [spotbugs-gradle-plugin](https://github.com/spotbugs/spotbugs-gradle-plugin ) from 5.0.12 to 5.0.13.
- [Release notes](https://github.com/spotbugs/spotbugs-gradle-plugin/releases )
- [Commits](https://github.com/spotbugs/spotbugs-gradle-plugin/compare/5.0.12...5.0.13 )
---
updated-dependencies:
- dependency-name: com.github.spotbugs.snom:spotbugs-gradle-plugin
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-10-19 01:06:16 +00:00
Álvaro Brey
c3e4f394ab
Merge pull request #10819 from nextcloud/fix/cache-crash-tests
...
ThumbnailsCacheManager: null out cache when clearing it
2022-10-18 17:07:33 +02:00
Álvaro Brey
787804d20b
ThumbnailsCacheManager: null out cache when clearing it
...
Cache is closed when clearing, so it becomes unusable. This way ThumbnailsCacheManager will work as expected
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2022-10-18 16:32:50 +02:00
Álvaro Brey
06ddf3ec4d
Merge pull request #10797 from nextcloud/bumpSDK31
...
Bump to SDK31
2022-10-17 19:36:47 +02:00