From dd33db8fe0f2e181bf7beb82f31c2a65f5a1765e Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sat, 8 Jun 2024 15:37:16 +0200 Subject: [PATCH] Updated README file. --- README.md | 12 +++++++----- gui/SlunkCryptGUI.xaml.cs | 2 +- mk-docs.cmd | 2 +- mk-docs.sh | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5934888..9da1274 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,4 @@ ---- -title: "![SlunkCrypt – pure chicken-flavored encryption 🐔](etc/img/SlunkCrypt-Logo.png)" ---- - +% ![SlunkCrypt](etc/img/SlunkCrypt-Logo.png) Introduction ============ @@ -10,6 +7,8 @@ SlunkCrypt is an experimental cross-platform cryptography library and command-li Please refer to the section [*encryption algorithm*](#encryption-algorithm) for more details! +For news and updates, please check out the official SlunkCrypt project web-site at: + Legal Warning ============= @@ -926,12 +925,15 @@ Source Code The latest SlunkCrypt source code is available from the official Git mirrors at: -* * * * * +Deprecated mirror sites: + +* + Build Instructions ================== diff --git a/gui/SlunkCryptGUI.xaml.cs b/gui/SlunkCryptGUI.xaml.cs index c0aa899..e35406e 100644 --- a/gui/SlunkCryptGUI.xaml.cs +++ b/gui/SlunkCryptGUI.xaml.cs @@ -881,7 +881,7 @@ namespace com.muldersoft.slunkcrypt.gui .AppendLine(VersionInfo.ToString()) .AppendLine("This work has been released under the \u201CCC0 1.0\u201D license!") .AppendLine() - .AppendLine("Official web-site: http://slunkcrypt.osdn.io/") + .AppendLine("Web site: https://lord_mulder.gitlab.io/slunkcrypt/") .AppendLine() .AppendLine(Environment.OSVersion.VersionString) .AppendLine(string.Format("Operating System Bitness: {0:D}, Process Bitness: {1:D}", Environment.Is64BitOperatingSystem ? 64 : 32, Environment.Is64BitProcess ? 64 : 32)) diff --git a/mk-docs.cmd b/mk-docs.cmd index 332353b..eeb0cec 100644 --- a/mk-docs.cmd +++ b/mk-docs.cmd @@ -5,7 +5,7 @@ if "%PANDODC_PATH%"=="" ( ) echo on -"%PANDODC_PATH%\pandoc.exe" -o "%~dp0\README.html" --self-contained --toc --toc-depth=3 --css etc\style\gh-pandoc.min.css "%~dp0\README.md" +"%PANDODC_PATH%\pandoc.exe" -o "%~dp0\README.html" --standalone --embed-resources --toc --toc-depth=3 --css etc\style\gh-pandoc.min.css "%~dp0\README.md" @echo off echo. diff --git a/mk-docs.sh b/mk-docs.sh index 9805904..7ebaafc 100755 --- a/mk-docs.sh +++ b/mk-docs.sh @@ -2,4 +2,4 @@ set -e cd -- "$(dirname -- "${BASH_SOURCE[0]}")" -pandoc -o README.html --self-contained --toc --toc-depth=3 --css etc/style/gh-pandoc.min.css README.md +pandoc -o README.html --standalone --embed-resources --toc --toc-depth=3 --css etc/style/gh-pandoc.min.css README.md