Skip to content

Commit

Permalink
Add revision: v1.26.6
Browse files Browse the repository at this point in the history
  • Loading branch information
GovernikusAusweisApp2 committed Jul 27, 2023
1 parent 4c9e0be commit aef2e0a
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ if(UNIX AND NOT IOS)
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15 CACHE STRING "Required macOS version")
endif()

project(AusweisApp2 VERSION 1.26.5 LANGUAGES ${LANGUAGES})
project(AusweisApp2 VERSION 1.26.6 LANGUAGES ${LANGUAGES})

# Set TWEAK if not defined in PROJECT_VERSION above to
# have a valid tweak version without propagating it
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.officially.txt
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ Die verwendeten Open-Source-Bibliotheken unterliegen den folgenden Nutzungsbedin

OpenSSL
Lizenz: Apache 2.0
Version: 3.0.8
Version: 3.0.9
Adresse: https://www.openssl.org/

Qt
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ Die verwendeten Open-Source-Bibliotheken unterliegen den folgenden Nutzungsbedin

OpenSSL
Lizenz: Apache 2.0
Version: 3.0.8
Version: 3.0.9
Adresse: https://www.openssl.org/

Qt
Expand Down
13 changes: 13 additions & 0 deletions docs/releasenotes/1.26.6.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
AusweisApp2 1.26.6
^^^^^^^^^^^^^^^^^^

**Releasedatum:** 27. Juli 2023


Anwender
""""""""
- Ein möglicher Absturz beim Start unter Android wurde behoben.


Entwickler
""""""""""
1 change: 1 addition & 0 deletions docs/releasenotes/appcast.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release Notes
.. toctree::
:maxdepth: 1

1.26.6
1.26.5
1.26.4
1.26.3
Expand Down
1 change: 1 addition & 0 deletions docs/releasenotes/versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Versionszweig 1.26
.. toctree::
:maxdepth: 1

1.26.6
1.26.5
1.26.4
1.26.3
Expand Down
2 changes: 1 addition & 1 deletion src/android/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public static boolean isStartedByAuth()

private void convertChromeOsIntent(Intent pIntent)
{
if (pIntent != null && pIntent.getAction().equals("org.chromium.arc.intent.action.VIEW"))
if (pIntent != null && "org.chromium.arc.intent.action.VIEW".equals(pIntent.getAction()))
{
LogHandler.getLogger().info("Convert Intent action " + pIntent.getAction() + " to " + Intent.ACTION_VIEW);
pIntent.setAction(Intent.ACTION_VIEW);
Expand Down

0 comments on commit aef2e0a

Please sign in to comment.