Compare commits

...

10 Commits

Author SHA1 Message Date
semantic-release-bot
5ffa14bec8 chore(release): 3.21.6 [CI SKIP] 2023-06-22 15:27:59 +00:00
Marco Rodolfi
ee51dc5fc0 fix: reposition parameter for file picker V2 2023-06-22 17:27:14 +02:00
semantic-release-bot
b38ec17d8f chore(release): 3.21.5 [CI SKIP] 2023-06-22 10:16:29 +00:00
Marco Rodolfi
8b54ee990e fix: missing parameter 2023-06-22 12:15:08 +02:00
Marco Rodolfi
7e01781d40 chore: better order for file picker v2 call 2023-06-22 11:59:32 +02:00
semantic-release-bot
2b31473614 chore(release): 3.21.4 [CI SKIP] 2023-06-22 09:39:28 +00:00
Marco Rodolfi
8bfeae4b35 fix: move the new file picker api as v2 2023-06-22 11:38:45 +02:00
semantic-release-bot
a7761321bc chore(release): 3.21.3 [CI SKIP] 2023-06-22 08:41:58 +00:00
Marco Rodolfi
979a630f2b fix: total is not needed as a return value to plugins 2023-06-22 10:41:09 +02:00
Marco Rodolfi
a4d1fcf086 Merge pull request #86 from SteamDeckHomebrew/file_picker_call
chore: add new interface for openfilepicker
2023-06-22 10:13:39 +02:00
3 changed files with 38 additions and 4 deletions

View File

@@ -1,3 +1,31 @@
## [3.21.6](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.21.5...v3.21.6) (2023-06-22)
### Bug Fixes
* reposition parameter for file picker V2 ([ee51dc5](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/ee51dc5fc0dd5bdc2b0b9e10aa27607fbe51f491))
## [3.21.5](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.21.4...v3.21.5) (2023-06-22)
### Bug Fixes
* missing parameter ([8b54ee9](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/8b54ee990ee4d9b51174737979c35ab7ad92ed7a))
## [3.21.4](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.21.3...v3.21.4) (2023-06-22)
### Bug Fixes
* move the new file picker api as v2 ([8bfeae4](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/8bfeae4b3593b2efa0aa075a0d9e0b5926cdf169))
## [3.21.3](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.21.2...v3.21.3) (2023-06-22)
### Bug Fixes
* total is not needed as a return value to plugins ([979a630](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/979a630f2b02ac4a1ac19e38002244f9dfe97177))
## [3.21.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.21.1...v3.21.2) (2023-06-18)

View File

@@ -1,6 +1,6 @@
{
"name": "decky-frontend-lib",
"version": "3.21.2",
"version": "3.21.6",
"description": "A library for building decky plugins",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -55,17 +55,23 @@ export interface Toaster {
export interface FilePickerRes {
path: string;
realpath: string;
total: number;
}
export enum FileSelectionType {
FILE,
FOLDER,
}
export interface ServerAPI {
routerHook: RouterHook;
toaster: Toaster;
openFilePicker(
openFilePicker(startPath: string, includeFiles?: boolean, regex?: RegExp): Promise<FilePickerRes>;
openFilePickerV2(
select: FileSelectionType,
startPath: string,
includeFiles?: boolean,
filter?: RegExp | ((file: File) => boolean),
includeFolders?: boolean,
filter?: RegExp | ((file: File) => boolean),
extensions?: string[],
showHiddenFiles?: boolean,
allowAllFiles?: boolean,