Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nextcloud-libraries/nextcloud-dialogs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.2
Choose a base ref
...
head repository: nextcloud-libraries/nextcloud-dialogs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.2.3
Choose a head ref
  • 6 commits
  • 4 files changed
  • 2 contributors

Commits on Jan 10, 2024

  1. fix(FilePicker): Use Node::path for current path fixing an clicking…

    … favorite folders
    
    Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
    susnux committed Jan 10, 2024

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    susnux Ferdinand Thiessen
    Copy the full SHA
    7e6dc67 View commit details

Commits on Jan 11, 2024

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b051f3c View commit details

Commits on Jan 19, 2024

  1. chore: Update dependencies

    Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
    susnux committed Jan 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    09a47c5 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e88ca37 View commit details
  3. chore: Prepare 4.2.3 release

    Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
    susnux committed Jan 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    70339a0 View commit details
  4. Merge pull request #1199 from nextcloud-libraries/chore/stable4-prepa…

    …re-release
    
    chore: Prepare 4.2.3 release
    susnux authored Jan 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    6913bea View commit details
Showing with 704 additions and 755 deletions.
  1. +10 −0 CHANGELOG.md
  2. +1 −2 lib/components/FilePicker/FileList.vue
  3. +679 −739 package-lock.json
  4. +14 −14 package.json
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## [v4.2.3](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v4.2.3) (2024-01-19)

[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v4.2.2...v4.2.3)

### :bug: Fixed bugs
* fix(FilePicker): Use Node::path for current path fixing an clicking favorite folders [\#1167](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1167) ([susnux](https://github.com/susnux))

### Changed
* Updated dependencies

## [v4.2.2](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v4.2.2) (2023-11-02)

[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v4.2.1...v4.2.2)
3 changes: 1 addition & 2 deletions lib/components/FilePicker/FileList.vue
Original file line number Diff line number Diff line change
@@ -76,7 +76,6 @@ import { FileType, type Node } from '@nextcloud/files'
import { getCanonicalLocale } from '@nextcloud/l10n'
import { NcButton, NcCheckboxRadioSwitch } from '@nextcloud/vue'
import { join } from 'path'
import { t } from '../../utils/l10n'
import { computed, nextTick, onMounted, onUnmounted, ref, type Ref } from 'vue'
@@ -184,7 +183,7 @@ function onNodeSelected(file: Node) {
}
function onChangeDirectory(dir: Node) {
emit('update:path', join(props.path, dir.basename))
emit('update:path', dir.path)
}
/**
Loading