|
12 | 12 | RootModule = 'PSEverything.dll' |
13 | 13 |
|
14 | 14 | # Version number of this module. |
15 | | - ModuleVersion = '2.2.2' |
| 15 | + ModuleVersion = '2.3.0' |
16 | 16 |
|
17 | 17 | # ID used to uniquely identify this module |
18 | 18 | GUID = 'f262ec02-4a88-49e5-94da-e25aab9cbf7a' |
|
32 | 32 | # Minimum version of the Windows PowerShell engine required by this module |
33 | 33 | PowerShellVersion = '5.0.0' |
34 | 34 |
|
35 | | - # Name of the Windows PowerShell host required by this module |
36 | | - # PowerShellHostName = '' |
37 | | - |
38 | | - # Minimum version of the Windows PowerShell host required by this module |
39 | | - # PowerShellHostVersion = '' |
40 | | - |
41 | 35 | # Minimum version of Microsoft .NET Framework required by this module |
42 | 36 | DotNetFrameworkVersion = '4.5' |
43 | 37 |
|
44 | | - # Minimum version of the common language runtime (CLR) required by this module |
45 | | - # CLRVersion = '' |
46 | | - |
47 | | - # Processor architecture (None, X86, Amd64) required by this module |
48 | | - # ProcessorArchitecture = '' |
49 | | - |
50 | | - # Modules that must be imported into the global environment prior to importing this module |
51 | | - # RequiredModules = @() |
52 | | - |
53 | | - # Assemblies that must be loaded prior to importing this module |
54 | | - # RequiredAssemblies = @() |
55 | | - |
56 | | - # Script files (.ps1) that are run in the caller's environment prior to importing this module. |
57 | | - # ScriptsToProcess = @() |
58 | | - |
59 | | - # Type files (.ps1xml) to be loaded when importing this module |
60 | | - # TypesToProcess = @() |
61 | | - |
62 | | - # Format files (.ps1xml) to be loaded when importing this module |
63 | | - # FormatsToProcess = @() |
64 | | - |
65 | | - # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess |
66 | 38 |
|
67 | 39 | # Functions to export from this module |
68 | 40 | FunctionsToExport = '' |
|
76 | 48 | # Aliases to export from this module |
77 | 49 | AliasesToExport = 'se', 'sles' |
78 | 50 |
|
79 | | - # DSC resources to export from this module |
80 | | - # DscResourcesToExport = @() |
81 | | - |
82 | | - # List of all modules packaged with this module |
83 | | - # ModuleList = @() |
84 | | - |
85 | 51 | # List of all files packaged with this module |
86 | 52 | FileList = 'Everything32.dll', 'Everything64.dll', 'LICENSE', 'PSEverything.dll', 'PSEverything.dll-Help.xml', 'PSEverything.psd1' |
87 | 53 |
|
|
99 | 65 | # A URL to the main website for this project. |
100 | 66 | ProjectUri = 'https://github.com/powercode/PSEverything' |
101 | 67 |
|
102 | | - # A URL to an icon representing this module. |
103 | | - # IconUri = '' |
104 | | - |
105 | 68 | # ReleaseNotes of this module |
106 | 69 | ReleaseNotes = @' |
| 70 | +2.3: Bug fixes. Sorted output. |
107 | 71 | 2.1: Upgrading to SDK matching 1.4.1.809b - Fixing hang when calling from Eleveated powershell |
108 | 72 | to Everything. |
109 | | -Now works with both eleveated and non-elevated processes as long as Everything is running as admin. |
| 73 | +Now works with both eleveated and non-elevated processes as long as Everything is running as admin. |
110 | 74 | 2.0: |
111 | 75 | Implements tabcompletion. |
112 | 76 | Quoting filter paths |
113 | 77 | Requires PowerShell 5.0 or greater |
114 | 78 | 1.3.3: |
115 | | -Really fixing issue where an error was written in Select-EverythingString when Search-Everything did not return any results |
| 79 | +Really fixing issue where an error was written in Select-EverythingString when Search-Everything did not return any results |
116 | 80 | 1.3.2: |
117 | | -Fixing issue where an error was written in Select-EverythingString when Search-Everything did not return any results |
| 81 | +Fixing issue where an error was written in Select-EverythingString when Search-Everything did not return any results |
118 | 82 | 1.3.1: |
119 | 83 | Bug fix for -Filter that didn't work in combination with non-global searches. |
120 | 84 | '@ |
121 | 85 |
|
122 | 86 | } # End of PSData hashtable |
123 | 87 |
|
124 | 88 | } # End of PrivateData hashtable |
125 | | - |
126 | | - # HelpInfo URI of this module |
127 | | - # HelpInfoURI = '' |
128 | | - |
129 | | - # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
130 | | - # DefaultCommandPrefix = '' |
131 | | - |
132 | 89 | } |
133 | 90 |
|
0 commit comments