Pytal
Pytal
It would be great if YAML support could be added for `.env.yaml` and `.env-cmdrc.yaml`, would this be possible?
Remake profile picture saving with Vue for accessibility purposes Legacy code is removed - `OC.Settings.updateAvatar` is dropped and is an API break but low impact as it is [unused](https://github.com/search?q=org%3Anextcloud+OC.Settings.updateAvatar&type=code) -...
Remake phone number property saving with Vue for accessibility purposes The https://github.com/catamphetamine/libphonenumber-js library is used here to mirror our backend validation https://github.com/giggsey/libphonenumber-for-php https://github.com/nextcloud/server/blob/952acd4d276b3190d23e0597c5e01b1dfc4d72bc/lib/private/Accounts/AccountManager.php#L188 as closely as possible
Remake website property saving with Vue for accessibility purposes Deprecation The `lookupServerUploadEnabled` block https://github.com/nextcloud/server/blob/16b06dd75889bef318881a4783cff03aaeb971d9/apps/settings/templates/settings/personal/personal.info.php#L164-L191 is deprecated and therefore not brought over as it is only displayed under the condition that...
Address renamed to Location on the UI, as suggested by @jancborchardt ### Requires - [ ] Modular components from https://github.com/nextcloud/server/pull/33217
Remake Twitter handle saving with Vue for accessibility purposes alongside preparations for allowing simple replacement of other account property sections with Vue Incorporates improvements to accessibility from the https://github.com/nextcloud/nextcloud-vue library...
Preserves visibility settings when migrating accounts
closes #72
**How can we reproduce this bug?** 1. On a Nextcloud instance open the Files or Photos app 2. Choose a file 3. Open a sidebar 4. Go to comments-tab 5....
### Usage ```php // Before $this->interface ->expects($this->once()) ->method('method') ->with(new JsonMatches($jsonString)); // After $this->interface ->expects($this->once()) ->method('method') ->with($this->jsonMatches($jsonString)); ```