mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-09-08 17:51:20 +02:00
more
This commit is contained in:
parent
a5c0290cfa
commit
dae05cb150
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -79,13 +79,17 @@
|
|||||||
".venv*/",
|
".venv*/",
|
||||||
".vscode/",
|
".vscode/",
|
||||||
"bin/",
|
"bin/",
|
||||||
|
"app/core/bin/",
|
||||||
"app/common/bin/",
|
"app/common/bin/",
|
||||||
"app/proprietary/bin/",
|
"app/proprietary/bin/",
|
||||||
"build/",
|
"build/",
|
||||||
|
"app/core/build/",
|
||||||
"app/common/build/",
|
"app/common/build/",
|
||||||
"app/proprietary/build/",
|
"app/proprietary/build/",
|
||||||
"configs/",
|
"configs/",
|
||||||
|
"app/core/configs/",
|
||||||
"customFiles/",
|
"customFiles/",
|
||||||
|
"app/core/customFiles/",
|
||||||
"docs/",
|
"docs/",
|
||||||
"exampleYmlFiles",
|
"exampleYmlFiles",
|
||||||
"gradle/",
|
"gradle/",
|
||||||
@ -97,6 +101,7 @@
|
|||||||
".git-blame-ignore-revs",
|
".git-blame-ignore-revs",
|
||||||
".gitattributes",
|
".gitattributes",
|
||||||
".gitignore",
|
".gitignore",
|
||||||
|
"app/core/.gitignore",
|
||||||
"app/common/.gitignore",
|
"app/common/.gitignore",
|
||||||
"app/proprietary/.gitignore",
|
"app/proprietary/.gitignore",
|
||||||
".pre-commit-config.yaml",
|
".pre-commit-config.yaml",
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
<stayAlive>false</stayAlive>
|
<stayAlive>false</stayAlive>
|
||||||
<restartOnCrash>false</restartOnCrash>
|
<restartOnCrash>false</restartOnCrash>
|
||||||
<manifest></manifest>
|
<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>
|
<var>BROWSER_OPEN=true</var>
|
||||||
<singleInstance>
|
<singleInstance>
|
||||||
<mutexName>Stirling-PDF</mutexName>
|
<mutexName>Stirling-PDF</mutexName>
|
||||||
|
@ -8,7 +8,7 @@ fi
|
|||||||
|
|
||||||
key_to_remove="$1"
|
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 the key ends with a dot, remove all keys starting with it
|
||||||
if [[ "$key_to_remove" == *. ]]; then
|
if [[ "$key_to_remove" == *. ]]; then
|
||||||
sed -i "/^${key_to_remove//./\\.}/d" "$file"
|
sed -i "/^${key_to_remove//./\\.}/d" "$file"
|
||||||
|
@ -4,7 +4,7 @@ translation_key="pdfToPDFA.credit"
|
|||||||
old_value="qpdf"
|
old_value="qpdf"
|
||||||
new_value="liibreoffice"
|
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"
|
sed -i "/^$translation_key=/s/$old_value/$new_value/" "$file"
|
||||||
echo "Updated $file"
|
echo "Updated $file"
|
||||||
done
|
done
|
||||||
|
@ -4,12 +4,8 @@ plugins {
|
|||||||
}
|
}
|
||||||
rootProject.name = 'Stirling PDF'
|
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'
|
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(':stirling-pdf').projectDir = file('app/core')
|
||||||
project(':common' ).projectDir = file('app/common')
|
project(':common' ).projectDir = file('app/common')
|
||||||
project(':proprietary' ).projectDir = file('app/proprietary')
|
project(':proprietary' ).projectDir = file('app/proprietary')
|
||||||
|
Loading…
Reference in New Issue
Block a user