PanelSwWixExtension4 5.6.0.445-psw-wix

This is a prerelease version of PanelSwWixExtension4.
There is a newer version of this package available.
See the version list below for details.
dotnet add package PanelSwWixExtension4 --version 5.6.0.445-psw-wix
                    
NuGet\Install-Package PanelSwWixExtension4 -Version 5.6.0.445-psw-wix
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PanelSwWixExtension4" Version="5.6.0.445-psw-wix" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PanelSwWixExtension4" Version="5.6.0.445-psw-wix" />
                    
Directory.Packages.props
<PackageReference Include="PanelSwWixExtension4" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PanelSwWixExtension4 --version 5.6.0.445-psw-wix
                    
#r "nuget: PanelSwWixExtension4, 5.6.0.445-psw-wix"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PanelSwWixExtension4@5.6.0.445-psw-wix
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PanelSwWixExtension4&version=5.6.0.445-psw-wix&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=PanelSwWixExtension4&version=5.6.0.445-psw-wix&prerelease
                    
Install as a Cake Tool

PanelSwWixExtension WiX v3 NuGet version (PanelSwWixExtension) WiX v4 NuGet version (PanelSwWixExtension4)

PanelSwWixExtension from the creator of JetBA is the most comprehensive open source WiX extension. I would like to thank JetBrains for their support of this project

PanelSwWixExtension WiX Elements

  • Bundle elements:
    • FileGlob: In-code payload harvester with include and exclude glob patterns. Works in bundles and in packages
    • ContainerTemplate: A container template to which bundle payloads can be assigned
      • When using PanelSwWix4.Sdk, support 7z and Zip containers
    • CustomSearch: Use a BundleExtension to perform custom searches without having to implement a complete WiX extension
    • !(bindpath.PanelSwWixExtension)\x86\DeferredExePackage.exe An executable that can execute arbitrary commands during chain execution
      • Use InstallArguments='--skip-until-here "[SomeExecutable]" "arg1" "arg2"': Create a process with any arguments after the --skip-until-here part
      • Use InstallArguments='--ignore-me': Ignore anything after the --ignore-me part
  • Heat extension command line arguments:
    • -inc: Semicolon seperated list of filename to include. Wildcards are accepted. If specified, any file not matching the pattern will be excluded
    • -exc: Semicolon seperated list of filename to exclude. Wildcards are accepted. If specified, any file matching the pattern will be excluded
    • -prd: Payload Root Folder. A prefix folder to add to all payloads
  • Immediate Actions:
    • DuplicateFolder: Duplicate an entire folder hierarchy. Processed at build time by adding entries to Directory, CreateFolder and DuplicateFile tables.
    • IsWindowsVersionOrGreater: Test whether Kernel32.dll's version is at least the given version. If yes, set the property to 1.
    • Md5Hash: Computes MD5 hash.
    • WmiSearch: Execute a WMI query.
    • PathSearch: Search for a file on PATH environment variable folder list.
    • VersionCompare: Compare two versions, set result to property to value in range -4 to +4, denoting the version part that was different (-+4 if Major part was different, -+3 for Minor part, etc.)
    • ForceVersion: Force a specified version for a file. Version overwrite is done on runtime in the MSI database.
    • AccountSidSearch: Lookup an account's SID by account name.
    • JsonJpathSearch: Read JSON values
    • DiskSpace: Calculate available disk space for a target directory
    • CertificateHashSearch: Find a certificate hash in local system MY store.
    • Evaluate: Evaluate mathematical expressions and store result in property.
    • SetPropertyFromPipe: Allows setting property from a pipe.
    • SqlSearch: Execute a SQL query and place result in a property.
    • ReadIniValues: Reads .INI file values.
    • XmlSearch: Read XML values.
    • RegularExpression: Execute a Regular Expression to replace or find matches in property values and in file contents.
    • MsiSqlQuery: Execute a MSI-SQL query on the MSI database.
    • CreateSelfSignCertificate: Create a self-sign certificate that can then be installed by WixIisExtension.
    • ToLowerCase: Convert property value to lowercase.
    • CustomPatchRef Support referencing custom table rows in a patch
    • Payload Support extracting files from Binary table temporarilty during MSI execution
    • PromptFileDowngrades Log each file that will be downgraded during the (re)install, and prompt the total downgrade count if larger than 0.
  • Deferred Actions:
    • RemoveFolderEx: Remove a folder recursively. Differs from WixUtilExtension's RemoveFolderEx in proper handling of reparse points (symbolic links, mount volumes, etc.), and workaround Windows Installer bug in handling paths longer than MAX_PATH_
    • ExecuteCommand: Launch a deferred command
    • RestartLocalResources: Register processes with the Restart Manager if they reside in the specified folder
    • XslTransform: Apply a XSL transform on an installed XML file
    • WebsiteConfig: currently, can only stop a website
    • JsonJPath: Set values in JSON-formatted file.
    • Dism: Enable or disable Windows Features using DISM API. Features will be modified when the parent component is being installed or repaired.
    • ZipFile: Creates a ZIP archive from selected files.
    • Unzip: Extract a ZIP archive to selected folder.
    • CustomUninstallKey: Overwrite registry values in the product's Uninstall registry key
    • RemoveRegistryValue: Removes registry values. Complements the standard RemoveRegistryValue WiX element that will only remove registry values during installation.
    • ExecOn: Execute a custom command on component action.
    • TaskScheduler: Add a task to Windows Task Scheduler.
    • DeletePath: Delete folder or file specified by a path.
    • FileRegex: Execute a Regular Expression to perform find & replace operations within files.
    • ShellExecute: Call ShellExecuteEx with parameters.
    • Telemetry: Send telemetry data to a given URL.
    • InstallUtil: Install a .NET assembly service.
    • TopShelf: Install a TopShelf based service.
    • BackupAndRestore: Backup a file before install or upgarde and restore it after.
    • SqlScript: Execute SQL scripts, optionally with text replacements.
    • SplitFile: Splits a file to parts during build, and reconstruct it during install. Used to workaround MSI limitation of 2GB file size.

Preprocessor

  • $(psw.VarNullOrEmpty(VAR_NAME)): Return 1 if the variable is not defined, or if it defined as empty. Return 0 otherwise
  • $(psw.AutoGuid(x,y,z,...)): Return a pseudo-random UUID per arguments
  • $(psw.FileExists(path)): Return 1 if the file exists, 0 otherwise
  • $(psw.DirExists(path)): Return 1 if the folder exists, 0 otherwise
  • $(psw.DirEmpty(path)): Return 1 if the folder doesn't exist or if it has no files (including in subfolders). Return 0 otherwise

Custom Actions

  • TerminateSuccessfully_Immediate: Terminates the installation with a successful indication. Executed in-script.
  • TerminateSuccessfully_Deferred: Terminates the installation with a successful indication. Deferred execution.
  • SplitPath: Split a full path supplied in 'FULL_PATH_TO_SPLIT' property and places the parts in properties SPLIT_DRIVE, SPLIT_FOLDER, SPLIT_FILE_NAME, SPLIT_FILE_EXTENSION.
  • PathExists: Tests whether the path supplied in 'FULL_PATH_TO_TEST' property exists. Sets 'PATH_EXISTS' property to 1 if it exists or clears it if it doesn't.
  • SplitString: Splits a string. Property name specified in 'PROPERTY_TO_SPLIT' and split token specified in 'STRING_SPLIT_TOKEN'. Results are stored in properties following the name supplied in 'PROPERTY_TO_SPLIT'. For example, say PROPERTY_TO_SPLIT="MY_PROP", MY_PROP="1,2,3" and STRING_SPLIT_TOKEN=",". Scheduling SplitString custom action will yield properties MY_PROP_0="1", MY_PROP_1="2" and MY_PROP_2="3".
  • TrimString: Trim whitespace characters in property with name specified in 'PROPERTY_TO_TRIM'.

Error codes

PanelSwWixExtension uses error codes in Error table:

  • 27000: TopShelf error template for prompting user on errors.
  • 27001: ExecOn error template for prompting user on errors.
  • 27002: ServiceConfig error template for prompting user on errors.
  • 27003: Dism error template for prompting user on failures to add a Windows feature package.
  • 27004: Dism error template for prompting user on failures to enable a Windows feature.
  • 27005: SqlScript error template for prompting user on errors.
  • 27006: ExecOn error template for prompting user on console output parsing.
  • 27007: WebsiteConfig error template for prompting user on errors.
  • 27008: SqlSearch error template for prompting user on errors.
  • 27009: JsonJpath error template for prompting user on errors.
  • 27010: Dism error template for prompting user on failures to remove a Windows feature package.
  • 27011: ExecOn message template for prompting user on success with promptAlways.
  • 27012: Prompt on file downgrades
  • 27013: Prompt on failure to add a file to a ZIP archive
  • 27014: Prompt on failure to create a ZIP archive
  • 27015: Prompt on failure to unzip a ZIP archive
  • 27016: Prompt on failure to unzip a file from ZIP archive

Properties

The following properties hold localized built-in account names. To use them, add a PropertyRef element.

  • DOMAIN_ADMINISTRATORS
  • DOMAIN_GUESTS
  • DOMAIN_USERS
  • ENTERPRISE_DOMAIN_CONTROLLERS
  • DOMAIN_DOMAIN_CONTROLLERS
  • DOMAIN_COMPUTERS
  • BUILTIN_ADMINISTRATORS
  • BUILTIN_GUESTS
  • BUILTIN_USERS
  • LOCAL_ADMIN
  • LOCAL_GUEST
  • ACCOUNT_OPERATORS
  • BACKUP_OPERATORS
  • PRINTER_OPERATORS
  • SERVER_OPERATORS
  • AUTHENTICATED_USERS
  • PERSONAL_SELF
  • CREATOR_OWNER
  • CREATOR_GROUP
  • LOCAL_SYSTEM
  • POWER_USERS
  • EVERYONE
  • REPLICATOR
  • INTERACTIVE
  • NETWORK
  • SERVICE
  • RESTRICTED_CODE
  • WRITE_RESTRICTED_CODE
  • ANONYMOUS
  • SCHEMA_ADMINISTRATORS
  • CERT_SERV_ADMINISTRATORS
  • RAS_SERVERS
  • ENTERPRISE_ADMINS
  • GROUP_POLICY_ADMINS
  • ALIAS_PREW2KCOMPACC
  • LOCAL_SERVICE
  • NETWORK_SERVICE
  • REMOTE_DESKTOP
  • NETWORK_CONFIGURATION_OPS
  • PERFMON_USERS
  • PERFLOG_USERS
  • IIS_USERS
  • CRYPTO_OPERATORS
  • OWNER_RIGHTS
  • EVENT_LOG_READERS
  • ENTERPRISE_RO_DCs
  • CERTSVC_DCOM_ACCESS

The following properties hold localized CSIDL folders. To use them, add a PropertyRef element.

  • UserDesktopFolder: CSIDL_DESKTOPDIRECTORY

The following properties denote available processor features. 1 means that the feature is available, 0 means that it is not available.

  • PF_ARM_64BIT_LOADSTORE_ATOMIC
  • PF_ARM_DIVIDE_INSTRUCTION_AVAILABLE
  • PF_ARM_EXTERNAL_CACHE_AVAILABLE
  • PF_ARM_FMAC_INSTRUCTIONS_AVAILABLE
  • PF_ARM_VFP_32_REGISTERS_AVAILABLE
  • PF_3DNOW_INSTRUCTIONS_AVAILABLE
  • PF_CHANNELS_ENABLED
  • PF_COMPARE_EXCHANGE_DOUBLE
  • PF_COMPARE_EXCHANGE128
  • PF_COMPARE64_EXCHANGE128
  • PF_FASTFAIL_AVAILABLE
  • PF_FLOATING_POINT_EMULATED
  • PF_FLOATING_POINT_PRECISION_ERRATA
  • PF_MMX_INSTRUCTIONS_AVAILABLE
  • PF_NX_ENABLED
  • PF_PAE_ENABLED
  • PF_RDTSC_INSTRUCTION_AVAILABLE
  • PF_RDWRFSGSBASE_AVAILABLE
  • PF_SECOND_LEVEL_ADDRESS_TRANSLATION
  • PF_SSE3_INSTRUCTIONS_AVAILABLE
  • PF_SSSE3_INSTRUCTIONS_AVAILABLE
  • PF_SSE4_1_INSTRUCTIONS_AVAILABLE
  • PF_SSE4_2_INSTRUCTIONS_AVAILABLE
  • PF_AVX_INSTRUCTIONS_AVAILABLE
  • PF_AVX2_INSTRUCTIONS_AVAILABLE
  • PF_AVX512F_INSTRUCTIONS_AVAILABLE
  • PF_VIRT_FIRMWARE_ENABLED
  • PF_XMMI_INSTRUCTIONS_AVAILABLE
  • PF_XMMI64_INSTRUCTIONS_AVAILABLE
  • PF_XSAVE_ENABLED
  • PF_ARM_V8_INSTRUCTIONS_AVAILABLE
  • PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE
  • PF_ARM_V8_CRC32_INSTRUCTIONS_AVAILABLE
  • PF_ARM_V81_ATOMIC_INSTRUCTIONS_AVAILABLE
  • PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE
  • PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE
  • PF_ARM_V83_LRCPC_INSTRUCTIONS_AVAILABLE

Building

PanelSwWixExtension require the following prerequisites to build:

  • CMake: CMake path can be specified in 'CMakeDir' property in 'TidyBuild.custom.props'
  • ADK installed. Specifically, Dism API should be installed. Set DismApi folder path in 'DismApiDir' property in 'TidyBuild.custom.props'
  • Update git submodules

To build the extension execute:

msbuild dirs.proj -restore "-p:SolutionDir=%CD%\"

Unit-test WiX are available in the solution folder 'UnitTests'. To build a unit test project execute:

msbuild dirs.proj -restore -p:UnitTest=IsWindowsVersionOrGreaterUT
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.4.0.483 164 8/27/2025
6.4.0.483-psw-wix 159 8/27/2025
6.4.0.482 100 8/17/2025
6.4.0.482-psw-wix 97 8/17/2025
6.3.1.481 148 7/7/2025
6.3.1.481-psw-wix 285 7/7/2025
6.3.0.480 140 7/6/2025
6.3.0.480-psw-wix 137 7/6/2025
6.2.0.479 147 7/3/2025
6.2.0.479-psw-wix 146 7/3/2025
6.1.0.477 174 5/19/2025
6.1.0.477-psw-wix 154 5/19/2025
6.0.1.476 212 4/22/2025
6.0.1.476-psw-wix 570 4/22/2025
6.0.0.475 195 4/20/2025
6.0.0.475-psw-wix 183 4/20/2025
5.9.0.466 241 4/1/2025
5.9.0.466-psw-wix 182 4/1/2025
5.8.5.465 526 3/25/2025
5.8.5.465-psw-wix 574 3/25/2025
5.8.4.464 182 3/19/2025
5.8.4.464-psw-wix 183 3/19/2025
5.8.3.463 249 3/10/2025
5.8.3.463-psw-wix 190 3/10/2025
5.8.2.462 259 3/5/2025
5.8.2.462-psw-wix 283 3/5/2025
5.8.1.461 266 3/4/2025
5.8.1.461-psw-wix 230 3/4/2025
5.8.0.460 188 3/3/2025
5.8.0.460-psw-wix 179 3/3/2025
5.7.2.457 191 2/18/2025
5.7.2.457-psw-wix 138 2/18/2025
5.7.1.454 139 2/17/2025
5.7.1.454-psw-wix 130 2/17/2025
5.7.0.451 126 2/16/2025
5.7.0.451-psw-wix 151 2/16/2025
5.6.1.448 147 2/12/2025
5.6.1.448-psw-wix 129 2/12/2025
5.6.0.445 136 2/11/2025
5.6.0.445-psw-wix 138 2/11/2025
5.5.4.442 160 1/29/2025
5.5.4.442-psw-wix 119 1/29/2025
5.5.3.439 155 1/23/2025
5.5.3.439-psw-wix 116 1/23/2025
5.5.2.435 121 1/13/2025
5.5.2.435-psw-wix 128 1/13/2025
5.5.1.432 142 1/7/2025
5.5.1.432-psw-wix 118 1/7/2025
5.5.0.429 147 1/5/2025
5.5.0.429-psw-wix 132 1/5/2025
5.4.5.422 6,105 12/8/2024
5.4.5.422-psw-wix 155 12/8/2024
5.4.4.417 139 12/8/2024
5.4.4.417-psw-wix 112 12/8/2024
5.4.3.414 137 12/1/2024
5.4.3.414-psw-wix 95 12/1/2024
5.4.2.412 134 11/26/2024
5.4.2.412-psw-wix 116 11/26/2024
5.4.2.409 122 11/26/2024
5.4.2.409-psw-wix 105 11/26/2024
5.4.1.407 122 11/26/2024
5.4.1.407-psw-wix 105 11/26/2024
5.4.0.406 126 11/25/2024
5.4.0.406-psw-wix 114 11/25/2024
5.3.1.403 137 11/21/2024
5.3.1.403-psw-wix 113 11/21/2024
5.3.1.399 124 11/18/2024
5.3.1.399-psw-wix 105 11/18/2024
5.3.0.394 139 11/14/2024
5.3.0.394-psw-wix 114 11/14/2024
5.2.1.391 146 11/6/2024
5.2.1.391-psw-wix 126 11/6/2024
5.2.0.389 1,050 9/24/2024
5.2.0.389-psw-wix 151 9/24/2024
5.1.2.387 149 9/19/2024
5.1.2.387-psw-wix 117 9/19/2024
5.1.2.383 147 9/18/2024
5.1.2.383-psw-wix 119 9/18/2024
5.1.2.381 170 7/18/2024
5.1.2.381-psw-wix 122 7/18/2024
5.1.1.375 4,854 6/5/2024
5.1.1.375-psw-wix 117 6/5/2024
5.1.0.373 147 5/30/2024
5.1.0.373-psw-wix 132 5/30/2024
5.0.2.342 168 4/21/2024
5.0.2.342-psw-wix 124 4/21/2024
5.0.1.339 144 4/18/2024
5.0.1.339-psw-wix 115 4/18/2024
5.0.0.337 140 4/18/2024
5.0.0.337-psw-wix 108 4/18/2024
5.0.0.335 269 4/14/2024
5.0.0.335-psw-wix 212 4/14/2024
3.24.2.458 151 2/18/2025
3.24.2.458-psw-wix 327 2/18/2025
3.24.1.449 134 2/12/2025
3.24.1.449-psw-wix 131 2/12/2025
3.24.0.446 127 2/11/2025
3.24.0.446-psw-wix 136 2/11/2025
3.23.4.443 122 1/29/2025
3.23.4.443-psw-wix 110 1/29/2025
3.23.3.441 112 1/23/2025
3.23.3.441-psw-wix 100 1/23/2025
3.23.2.436 120 1/13/2025
3.23.2.436-psw-wix 119 1/13/2025
3.23.1.433 126 1/7/2025
3.23.1.433-psw-wix 121 1/7/2025
3.23.0.430 143 1/5/2025
3.23.0.430-psw-wix 111 1/5/2025
3.22.4.426 132 12/8/2024
3.22.4.426-psw-wix 454 12/8/2024
3.22.3.416 141 12/4/2024
3.22.3.416-psw-wix 117 12/4/2024
3.22.2.415 123 12/1/2024
3.22.2.415-psw-wix 129 12/1/2024
3.22.1.410 130 11/26/2024
3.22.1.410-psw-wix 107 11/26/2024
3.22.0.408 122 11/26/2024
3.22.0.408-psw-wix 98 11/26/2024
3.21.1.404 139 11/21/2024
3.21.1.404-psw-wix 110 11/21/2024
3.21.1.400 140 11/18/2024
3.21.1.400-psw-wix 112 11/18/2024
3.21.0.395 133 11/14/2024
3.21.0.395-psw-wix 129 11/14/2024
3.20.1.392 129 11/6/2024
3.20.1.392-psw-wix 120 11/6/2024
3.20.0.390 143 9/24/2024
3.20.0.390-psw-wix 405 9/24/2024
3.19.2.388 135 9/19/2024
3.19.2.388-psw-wix 126 9/19/2024
3.19.2.384 147 9/18/2024
3.19.2.384-psw-wix 132 9/18/2024
3.19.2.380 146 7/18/2024
3.19.2.380-psw-wix 479 7/18/2024
3.19.1.376 133 6/5/2024
3.19.1.376-psw-wix 127 6/5/2024
3.19.0.374 137 5/30/2024
3.19.0.374-psw-wix 140 5/30/2024
3.18.16.343 149 4/21/2024
3.18.16.343-psw-wix 139 4/21/2024
3.18.15.340 134 4/18/2024
3.18.15.340-psw-wix 112 4/18/2024
3.18.14.331 224 4/10/2024
3.18.14.331-psw-wix 189 4/10/2024
3.18.13.330 171 4/2/2024
3.18.13.330-psw-wix 174 4/2/2024
3.18.12.325 185 4/2/2024
3.18.12.325-psw-wix 170 4/2/2024
3.18.11.323 191 4/1/2024
3.18.11.323-psw-wix 163 4/1/2024
3.18.10.319 207 4/1/2024
3.18.10.319-psw-wix 160 4/1/2024
3.18.9.318 169 3/28/2024
3.18.9.318-psw-wix 157 3/28/2024
3.18.8.317 255 3/19/2024
3.18.8.317-psw-wix 184 3/19/2024
3.18.7.316 329 3/12/2024
3.18.7.316-psw-wix 227 3/12/2024
3.18.6.315 213 3/7/2024
3.18.6.315-psw-wix 169 3/7/2024
3.18.5.314 177 3/5/2024
3.18.5.314-psw-wix 194 3/5/2024
3.18.4.312 213 3/5/2024
3.18.4.312-psw-wix 167 3/5/2024
3.18.3.311 216 3/4/2024
3.18.3.311-psw-wix 192 3/4/2024
3.18.2.310 190 2/29/2024
3.18.2.310-psw-wix 185 2/29/2024
3.18.1.309 281 2/26/2024
3.18.1.309-psw-wix 301 2/26/2024
3.18.0.308 205 2/25/2024
3.18.0.308-psw-wix 151 2/25/2024
3.17.10.307 199 2/21/2024
3.17.10.307-psw-wix 213 2/21/2024
3.17.9.306 237 2/21/2024
3.17.9.306-psw-wix 174 2/21/2024
3.17.9.305 218 2/21/2024
3.17.9.305-psw-wix 158 2/21/2024
3.17.8.304 202 2/20/2024
3.17.8.304-psw-wix 158 2/20/2024
3.17.7.303 173 2/20/2024
3.17.7.303-psw-wix 154 2/20/2024
3.17.6.298 239 2/8/2024
3.17.6.298-psw-wix 191 2/8/2024
3.17.5.297 208 2/6/2024
3.17.5.297-psw-wix 162 2/6/2024
3.17.4.296 212 2/4/2024
3.17.4.296-psw-wix 154 2/4/2024
3.17.3.294 227 2/4/2024
3.17.3.294-psw-wix 170 2/4/2024
3.17.3.290 184 1/31/2024
3.17.3.290-psw-wix 125 1/31/2024
3.17.2.289 210 1/31/2024
3.17.2.289-psw-wix 150 1/31/2024
3.17.1.286 417 1/24/2024
3.17.1.286-psw-wix 212 1/24/2024
3.17.0.285 255 1/24/2024
3.17.0.285-psw-wix 216 1/24/2024
3.16.1.277 279 1/8/2024
3.16.1.277-psw-wix 181 1/8/2024
3.16.0.275 197 1/7/2024
3.16.0.275-psw-wix 208 1/7/2024
3.15.2.273 1,192 12/31/2023
3.15.2.273-psw-wix 191 12/31/2023
3.15.1.272 236 12/27/2023
3.15.1.272-psw-wix 159 12/27/2023
3.15.0.268 226 12/19/2023
3.15.0.268-psw-wix 791 12/19/2023
3.14.0.266 225 12/11/2023
3.14.0.266-psw-wix 164 12/11/2023
3.13.0.264 226 11/30/2023
3.13.0.264-psw-wix 246 11/30/2023
3.12.0.261 168 11/29/2023
3.12.0.261-psw-wix 183 11/29/2023
3.11.5.259 186 11/29/2023
3.11.5.259-psw-wix 155 11/29/2023
3.11.4.257 149 11/28/2023
3.11.4.257-psw-wix 183 11/28/2023
3.11.3.255 221 11/27/2023
3.11.3.255-psw-wix 147 11/27/2023
3.11.2.247 324 10/24/2023
3.11.2.247-psw-wix 271 10/24/2023
3.11.1.242 264 10/19/2023
3.11.1.242-psw-wix 246 10/19/2023
3.11.0.241 278 10/19/2023
3.11.0.241-psw-wix 272 10/19/2023
3.10.1.232 274 10/16/2023
3.10.1.232-psw-wix 182 10/16/2023
3.10.0.231 276 10/2/2023
3.10.0.231-psw-wix 274 10/2/2023
3.9.0.230 266 9/21/2023
3.9.0.230-psw-wix 233 9/21/2023
3.8.0.227 6,830 9/18/2023
3.8.0.227-psw-wix 283 9/18/2023
3.7.1.226 516 8/16/2023
3.7.1.226-psw-wix 261 8/16/2023
3.7.0.221 880 7/13/2023
3.7.0.221-psw-wix 251 7/13/2023
3.6.0.214 229 7/10/2023
3.6.0.214-psw-wix 325 7/10/2023
3.5.3.210 210 6/26/2023
3.5.3.210-psw-wix 255 6/26/2023
3.5.2.207 259 6/22/2023
3.5.2.207-psw-wix 311 6/22/2023
3.5.1.196 23,346 6/1/2023
3.5.1.196-psw-wix 298 6/1/2023
3.5.1.164 1,336 4/19/2023
3.5.0.163 285 4/19/2023
3.4.0.161 307 4/17/2023
3.4.0.160 294 4/16/2023
3.3.1.159 312 4/10/2023
3.3.0.157 369 4/9/2023
3.3.0.154-rc.3 181 3/28/2023
3.2.13.153-rc.3 177 3/27/2023
3.2.12.148-rc.3 137 3/12/2023
3.2.11.143-rc.3 153 3/12/2023
3.2.10.141-rc.2 165 2/8/2023
3.2.9.139-rc.2 173 2/5/2023
3.2.8.137-rc.2 182 2/2/2023
3.2.7.132-rc.2 167 1/26/2023
3.2.6.130-rc.2 182 1/25/2023
3.2.5.127-rc.1 174 1/4/2023
3.2.4.123-rc.1 177 1/3/2023
3.2.4.122-rc.1 179 1/3/2023