You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
51
-
# ScriptsToProcess = ''
50
+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
51
+
# ScriptsToProcess = ''
52
52
53
-
# Type files (.ps1xml) to be loaded when importing this module
54
-
# TypesToProcess = @()
53
+
# Type files (.ps1xml) to be loaded when importing this module
54
+
# TypesToProcess = @()
55
55
56
-
# Format files (.ps1xml) to be loaded when importing this module
57
-
# FormatsToProcess = @()
56
+
# Format files (.ps1xml) to be loaded when importing this module
57
+
# FormatsToProcess = @()
58
58
59
-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
60
-
# NestedModules = @()
59
+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
60
+
# NestedModules = @()
61
61
62
-
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
66
-
CmdletsToExport=@()
65
+
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
66
+
CmdletsToExport=@()
67
67
68
-
# Variables to export from this module
69
-
VariablesToExport=@()
68
+
# Variables to export from this module
69
+
VariablesToExport=@()
70
70
71
-
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
72
-
AliasesToExport=@('New-Prompt','New-Button')
71
+
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
89
-
PrivateData=@{
90
-
PSData=@{
91
-
# Tags applied to this module. These help with module discovery in online galleries.
92
-
Tags='GUI','WPF','Forms'
88
+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
89
+
PrivateData=@{
90
+
PSData=@{
91
+
# Tags applied to this module. These help with module discovery in online galleries.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,19 @@
1
1
# Changelog
2
2
3
-
All notable changes to this project will be documented in this file.
3
+
## v0.4.0 - 2019-06-11
4
4
5
-
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
+
### Added
6
+
7
+
- Added ability to show indeterminant progress bar with switch parameter `-ProgressBar`.
8
+
- Added ability to show window only while a condition is `$true` with scriptblock parameter `-While`.
9
+
- Requires the `ThreadJob` module.
10
+
- Added `-WindowStartupLocation` parameter to open window in a predefined location.
11
+
- When a path is provided as the default value for prompts of type `FileOpen`, `FileSave`, or `FolderOpen`, the dialog opens to the parent directory of the provided path.
12
+
13
+
### Fixed
14
+
15
+
- Fixed ability to display a base64-encoded image passed to the `-Image` parameter.
16
+
- Fixed selection return when `-SelectionMode` is `SingleCell`.
0 commit comments