From c3f8a0069f42e7eb7deaad3e2b7870d3fe223b05 Mon Sep 17 00:00:00 2001 From: Anivice Ives Date: Sun, 2 Feb 2025 19:22:47 +0800 Subject: [PATCH] Added appimage builder for aarch64 --- CMakeLists.txt | 2 +- README.md | 4 ++-- scripts/generate_readme.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d400f9b95..411c79091 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -165,7 +165,7 @@ file(READ "${information_file}" SYSDARFT_INFO_CONTENT) string(REPLACE "\n" "\\n" SYSDARFT_INFO_CONTENT_ESCAPED "${SYSDARFT_INFO_CONTENT}") add_compile_definitions( - SYSDARFT_VERSION="0.0.1-Alpha" + SYSDARFT_VERSION="0.0.1-alpha-rc2" SYSDARFT_INFORMATION="${SYSDARFT_INFO_CONTENT_ESCAPED}" __CLEAN_OUTPUT__ ) diff --git a/README.md b/README.md index 693a46a9e..5ed94eea8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Sysdarft -![Lines of Code](https://img.shields.io/badge/ProjectLines-43743-cyan) -![Size of Code](https://img.shields.io/badge/ProjectSize-2012%20K-yellow) +![Lines of Code](https://img.shields.io/badge/ProjectLines-44055-cyan) +![Size of Code](https://img.shields.io/badge/ProjectSize-2028%20K-yellow) [![Automated CMake Test Workflow](https://github.com/Anivice/Sysdarft/actions/workflows/CMake_GitHub_Action.yml/badge.svg)](https://github.com/Anivice/Sysdarft/actions/workflows/CMake_GitHub_Action.yml) Sysdarft is a hypothetical binary 64bit architecture. diff --git a/scripts/generate_readme.sh b/scripts/generate_readme.sh index 3fa9c9e66..44ad6f9b7 100755 --- a/scripts/generate_readme.sh +++ b/scripts/generate_readme.sh @@ -5,7 +5,7 @@ echo -n "Automatically generating README.md..." SOURCE_DIR="$1" cd "$SOURCE_DIR" || exit 1 -LIST=$(git ls-files | grep -v "wav\|png\|xcf\|pdf\|ttf"); +LIST=$(git ls-files | grep -v "wav\|png\|xcf\|pdf\|ttf\|AppImage"); lines=0; size=0; for FILE in $LIST;