This commit is contained in:
Ludy87 2025-07-13 09:55:44 +02:00
parent a5c0290cfa
commit dae05cb150
No known key found for this signature in database
GPG Key ID: 92696155E0220F94
6 changed files with 14 additions and 13 deletions

View File

@ -79,13 +79,17 @@
".venv*/",
".vscode/",
"bin/",
"app/core/bin/",
"app/common/bin/",
"app/proprietary/bin/",
"build/",
"app/core/build/",
"app/common/build/",
"app/proprietary/build/",
"configs/",
"app/core/configs/",
"customFiles/",
"app/core/customFiles/",
"docs/",
"exampleYmlFiles",
"gradle/",
@ -97,6 +101,7 @@
".git-blame-ignore-revs",
".gitattributes",
".gitignore",
"app/core/.gitignore",
"app/common/.gitignore",
"app/proprietary/.gitignore",
".pre-commit-config.yaml",

View File

@ -13,7 +13,7 @@
<stayAlive>false</stayAlive>
<restartOnCrash>false</restartOnCrash>
<manifest></manifest>
<icon>./src/main/resources/static/favicon.ico</icon>
<icon>./app/core/src/main/resources/static/favicon.ico</icon>
<var>BROWSER_OPEN=true</var>
<singleInstance>
<mutexName>Stirling-PDF</mutexName>

View File

@ -8,7 +8,7 @@ fi
key_to_remove="$1"
for file in ../src/main/resources/messages_*.properties; do
for file in ../app/core/src/main/resources/messages_*.properties; do
# If the key ends with a dot, remove all keys starting with it
if [[ "$key_to_remove" == *. ]]; then
sed -i "/^${key_to_remove//./\\.}/d" "$file"

View File

@ -4,7 +4,7 @@ translation_key="pdfToPDFA.credit"
old_value="qpdf"
new_value="liibreoffice"
for file in ../src/main/resources/messages_*.properties; do
for file in ../app/core/src/main/resources/messages_*.properties; do
sed -i "/^$translation_key=/s/$old_value/$new_value/" "$file"
echo "Updated $file"
done

View File

@ -4,12 +4,8 @@ plugins {
}
rootProject.name = 'Stirling PDF'
// Define which subprojects exist.
// The first entry corresponds to the 'stirling-pdf' directory but is internally aliased as ':stirling-pdf':
include 'stirling-pdf', 'common', 'proprietary'
// To let Gradle know where the ':stirling-pdf' module actually resides and to avoid case conflicts,
// we explicitly map the alias to the folder:
project(':stirling-pdf').projectDir = file('app/core')
project(':common' ).projectDir = file('app/common')
project(':proprietary' ).projectDir = file('app/proprietary')