Skip to content

Add v2.7.0 release #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add the following lines to Maven `pom.xml` to include the Web eID authentication
<dependency>
<groupId>eu.webeid.security</groupId>
<artifactId>authtoken-validation</artifactId>
<version>3.1.1</version>
<version>${webeid.version}</version>
</dependency>
</dependencies>

Expand Down
7 changes: 3 additions & 4 deletions example/scripts/deployment/fab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ set -eu
cd "$( dirname "$0" )"

SERVER_ADDRESS=web-eid.eu
SERVER_USER=baron
SERVER_USER=username
SERVER_PORT=22

export WEBEID_DIR='web-eid/web-eid-springboot-example'
export WEBEID_DIR='web-eid/test-web-eid-springboot-example'
export WEBEID_DIR='web-eid/test-server-web-eid-authtoken-validation-java/example'

. venv/bin/activate
fab -e -H ${SERVER_USER}@${SERVER_ADDRESS}:${SERVER_PORT} "$@"
~/.local/bin/fab -e -H ${SERVER_USER}@${SERVER_ADDRESS}:${SERVER_PORT} "$@"
4 changes: 2 additions & 2 deletions example/scripts/deployment/fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ def deploy(c):
with c.cd(os.getenv('WEBEID_DIR')):
c.run('git pull')
c.run('mvn clean package com.google.cloud.tools:jib-maven-plugin:dockerBuild')
c.run('docker-compose down')
c.run('docker-compose up -d')
c.run('docker compose down')
c.run('docker compose up -d')

27 changes: 13 additions & 14 deletions example/src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

<title>Web eID: electronic ID smart cards on the Web</title>
<link
href="/css/bootstrap.min.css"
rel="stylesheet"
href="/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="/css/main.css"
rel="stylesheet"
href="/css/main.css"
rel="stylesheet"
/>
</head>
<body class="m-4">
Expand Down Expand Up @@ -45,8 +45,8 @@ <h4>Table of contents</h4>

<hr/>
<h3><a id="usage"></a>Usage</h3>
<p>The recommended way of installing Web eID is by installing <a
href="https://www.id.ee/en/article/install-id-software/">the latest Open-EID ID-software package</a>.
<p>The recommended way of installing Web eID is by installing
<a href="https://www.id.ee/en/article/install-id-software/">the latest Open-EID ID-software package</a>.
In case you do not need or want to install the Open-EID package, install the latest Web eID packages in
Firefox, Chrome, Edge or Safari according to the following instructions:
</p>
Expand All @@ -61,16 +61,15 @@ <h3><a id="usage"></a>Usage</h3>
| bash</code><br>
Note: as of the 2.5 version, Web eID supports Firefox installed via Snap.
</li>
<li>on <b>macOS</b> 12 or later, for Firefox and Chrome from <a
href="https://installer.id.ee/media/web-eid/web-eid_2.6.0.654.dmg">here</a>,
<li>on <b>macOS</b> 13 or later, for Firefox and Chrome from
<a href="https://installer.id.ee/media/web-eid/web-eid_2.7.0.660.dmg">here</a>,
</li>
<li>on <b>macOS</b> 12 or later, for Safari, install the extension from <a
href="https://apps.apple.com/ee/app/web-eid/id1576665083?mt=12">App Store</a>,
<li>on <b>macOS</b> 13 or later, for Safari, install the extension from
<a href="https://apps.apple.com/ee/app/web-eid/id1576665083">App Store</a>,
</li>
<li>on <b>Windows</b> 10, Windows 11, Windows Server 2016, Windows Server 2019, Windows Server
2022,
for Firefox, Chrome and Edge from <a
href="https://installer.id.ee/media/web-eid/web-eid_2.6.0.900.x64.exe">here</a>.
<li>on <b>Windows</b> 10, Windows 11, Windows Server 2019, Windows Server 2022, Windows Server
2025 for Firefox, Chrome and Edge from
<a href="https://installer.id.ee/media/web-eid/web-eid_2.7.0.906.x64.exe">here</a>.
</li>
</ul>
</li>
Expand Down