Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
container: fedora:${{ matrix.container }}
strategy:
matrix:
container: [42, 43, rawhide]
container: [42, 43, 44, rawhide]
steps:
- name: Install Deps
run: |
Expand All @@ -137,7 +137,7 @@ jobs:
strategy:
matrix:
dist: [ubuntu]
ver: ['22.04', '24.04', '25.10']
ver: ['22.04', '24.04', '25.10', '26.04']
arch: [amd64, arm64]
java: [17]
include: [
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* libboost-test-dev - Optional, for unittests
* swig - Optional, for C#, Java and python bindings
* libpython3-dev, python3-setuptools - Optional, for python bindings
* openjdk-17-jdk-headless - Optional, for Java bindings
* openjdk-21-jdk-headless - Optional, for Java bindings

2. Fetch the source

Expand Down Expand Up @@ -87,7 +87,7 @@
### Windows

1. Install dependencies and necessary tools from
* [Visual Studio Community 2019/2022](https://www.visualstudio.com/downloads/)
* [Visual Studio Community 2022](https://www.visualstudio.com/downloads/)
* [CMake](http://www.cmake.org)
* [vcpkg](https://vcpkg.io/)
* [Swig](http://swig.org/download.html) - Optional, for C#, Python and Java bindings
Expand Down Expand Up @@ -116,7 +116,7 @@

Optional CMake parameters:

-DSWIG_EXECUTABLE=C:/swigwin-4.2.1/swig.exe
-DSWIG_EXECUTABLE=C:/swigwin-4.4.1/swig.exe
-DDOXYGEN_EXECUTABLE=C:/Program files/doxygen/bin/doxygen.exe

After running the cmake build, digidoc_csharp.dll along with the C# source files will be created, more info at
Expand All @@ -132,7 +132,7 @@

Optional build.ps1 parameters:

-swig C:/swigwin-4.2.1/swig.exe
-swig C:/swigwin-4.4.1/swig.exe
-doxygen "C:/Program files/doxygen/bin/doxygen.exe"
-boost

Expand Down
11 changes: 11 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Libdigidocpp library [4.4.0](https://github.com/open-eid/libdigidocpp/releases/tag/v4.4.0) release notes
--------------------------------------
- Update libraries and platform support
(#702, #705, #713, #721)
- Improve signature and container compatibility
(#698, #708, #701, #650, #711)
- Other fixes and optimizations
(#691, #700, #704, #706, #707, #718, #719)

[Full Changelog](https://github.com/open-eid/libdigidocpp/compare/v4.3.0...v4.4.0)

Libdigidocpp library [4.3.0](https://github.com/open-eid/libdigidocpp/releases/tag/v4.3.0) release notes
--------------------------------------
- Update libraries and platform support
Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Upstream-Contact: info@ria.ee
Source: https://github.com/open-eid/libdigidocpp

Files: *
Copyright: 2012-2024 Estonian Information System's Authority
Copyright: 2012-2026 Estonian Information System's Authority
License: LGPL-2.1
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand Down
2 changes: 1 addition & 1 deletion src/libdigidocpp.rc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BEGIN
VALUE "FileDescription", TARGET_NAME
VALUE "FileVersion", VERSION_STR
VALUE "InternalName", TARGET_NAME
VALUE "LegalCopyright", "(C) 2009-2024 Estonian Information System Authority"
VALUE "LegalCopyright", "(C) 2009-2026 Estonian Information System Authority"
#ifdef APP
VALUE "OriginalFilename", TARGET_NAME ".exe"
#else
Expand Down
Loading