Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions docs/_data/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
- date: '2026-06-30'
updates:
application:
version: 1.215.0
new_features:
- text: |-
A brand new look for SignPath:
* Improved navigation with sidebar menu and tabs in pages
* Dark and light theme for application and documentation (according to browser settings)
* Various layout improvements
issues: [SIGN-7891, SIGN-8618, SIGN-8655]
self_hosted_installations:
version: 1.215.0
breaking_changes:
- text: |-
Changed recommended Kubernetes version to 1.34.x and `signpathio/kubectl` image tag to 1.34.
issues: [SIGN-8627]
- text: |-
Added new mandatory `appSettings.shared.contactOptions.supportEmailAddress` configuration in `signpath-application` chart. Rendered as support contact in error messages.
issues: [SIGN-8584]
- date: '2026-06-18'
updates:
application:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/img/resources/artifact-configuration/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<artifact-configuration xmlns="http://signpath.io/artifact-configuration/v1">
<msi-file>

<pe-file path="MyApp.exe">
<authenticode-sign/>
</pe-file>

<directory-set>
<include path="en" />
<include path="en-US" />
<include path="de-DE" />
<for-each>
<pe-file-set>
<include path="MyApp.*.resources.dll" min-matches="0" max-matches="unbounded" />
<for-each>
<authenticode-sign/>
</for-each>
</pe-file-set>
</for-each>
</directory-set>

<authenticode-sign/>

</msi-file>
</artifact-configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<artifact-configuration xmlns="http://signpath.io/artifact-configuration/v1">
<msi-file>

<pe-file path="MyApp.exe">
<authenticode-sign/>
</pe-file>

<directory path="en" >
<pe-file path="MyApp.Module1.resources.dll" >
<authenticode-sign/>
</pe-file>
<pe-file path="MyApp.Module2.resources.dll" >
<authenticode-sign/>
</pe-file>
</directory>
<directory path="en-US" >
<pe-file path="MyApp.Module2.resources.dll" >
<authenticode-sign/>
</pe-file>
</directory>
<directory path="de" >
<pe-file path="MyApp.Module1.resources.dll" >
<authenticode-sign/>
</pe-file>
<pe-file path="MyApp.Module2.resources.dll" >
<authenticode-sign/>
</pe-file>
</directory>

<authenticode-sign/>

</msi-file>
</artifact-configuration>
65 changes: 65 additions & 0 deletions src/img/artifact-configuration/screenshot.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<artifact-configuration xmlns="http://signpath.io/artifact-configuration/v1">
<msi-file path="Writeopia.msi">
<directory path="Writeopia">
<pe-file path="Writeopia.exe" product-name="Writeopia">
<authenticode-sign/>
</pe-file>
<directory path="app">
<jar-file path="writeopia-*.jar" max-matches="unbounded">
<jar-sign/>
</jar-file>
<jar-file path="jna-jpms-*.jar">
<pe-file path="com/sun/jna/win32-*/jnidispatch.dll"
min-matches="3" max-matches="3">
<authenticode-sign/>
</pe-file>
</jar-file>
</directory>
<directory path="runtime/bin">
<pe-file path="api-ms-win-*.dll" max-matches="unbounded"
company-name="Microsoft Corporation"
product-name="Microsoft® Windows® Operating System" >
<authenticode-verify/>
</pe-file>

<pe-file-set company-name="Microsoft Corporation"
product-name="Microsoft® Visual Studio®">
<include path="msvcp140.dll" />
<include path="ucrtbase.dll"
product-name="Microsoft® Windows® Operating System" />
<include path="vcruntime140.dll" />
<include path="vcruntime140_1.dll" />
<for-each>
<authenticode-verify/>
</for-each>
</pe-file-set>

<pe-file-set company-name="Eclipse Adoptium" product-name="OpenJDK Platform 21.0.9">
<include path="awt.dll" />
<include path="fontmanager.dll" />
<include path="freetype.dll" />
<include path="java.dll" />
<include path="javajpeg.dll" />
<include path="jawt.dll" />
<include path="jimage.dll" />
<include path="jli.dll" />
<include path="jsound.dll" />
<include path="lcms.dll" />
<include path="mlib_image.dll" />
<include path="net.dll" />
<include path="nio.dll" />
<include path="prefs.dll" />
<include path="splashscreen.dll" />
<include path="syslookup.dll" />
<include path="verify.dll" />
<include path="zip.dll" />
<include path="server\jvm.dll" />
<for-each>
<authenticode-verify/>
</for-each>
</pe-file-set>
</directory>
</directory>
<authenticode-sign />
</msi-file>
</artifact-configuration>
File renamed without changes.