diff --git a/CHANGELOG.md b/CHANGELOG.md index 85e4dfe..1877fc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [3.21.8](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.21.7...v3.21.8) (2023-06-27) + + +### Bug Fixes + +* the typescript compiler was eating the enum ([c9b5839](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/c9b583945c1cb5267b41a821743590a841572abe)) + +## [3.21.7](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.21.6...v3.21.7) (2023-06-26) + + +### Bug Fixes + +* add patch indicator to prevent crashes ([#88](https://github.com/SteamDeckHomebrew/decky-frontend-lib/issues/88)) ([9128c1e](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/9128c1e7dadb98a8926d3dba9907a01cc78d90cf)) + ## [3.21.6](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v3.21.5...v3.21.6) (2023-06-22) diff --git a/package.json b/package.json index 1d6ea6e..6c6af59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "decky-frontend-lib", - "version": "3.21.6", + "version": "3.21.8", "description": "A library for building decky plugins", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/plugin.tsx b/src/plugin.tsx index ad8fa0d..50b2021 100644 --- a/src/plugin.tsx +++ b/src/plugin.tsx @@ -57,7 +57,7 @@ export interface FilePickerRes { realpath: string; } -export enum FileSelectionType { +export const enum FileSelectionType { FILE, FOLDER, }