diff --git a/LocalRunGuide.md b/LocalRunGuide.md index 0c3442031..edb136ec2 100644 --- a/LocalRunGuide.md +++ b/LocalRunGuide.md @@ -257,9 +257,11 @@ To override the default configuration, you can add the following to `/.git/Stirl ```bash server: - host: 0.0.0.0 + host: 0.0.0.0 # Not working - use instead address + address: 0.0.0.0 port: 3000 ``` +'-Djava.net.preferIPv4Stack=true' --> To force ipv4 only in the java starting command **Note:** This file is created after the first application launch. To have it before that, you can create the directory and add the file yourself. diff --git a/build.gradle b/build.gradle index f4e451d75..ce09352a6 100644 --- a/build.gradle +++ b/build.gradle @@ -115,7 +115,7 @@ configurations.all { } dependencies { //security updates - implementation "org.springframework:spring-webmvc:6.1.9" + implementation "org.springframework:spring-webmvc:6.1.13" implementation("io.github.pixee:java-security-toolkit:1.2.0") @@ -187,8 +187,8 @@ dependencies { implementation "io.micrometer:micrometer-core:1.13.4" implementation group: "com.google.zxing", name: "core", version: "3.5.3" // https://mvnrepository.com/artifact/org.commonmark/commonmark - implementation "org.commonmark:commonmark:0.22.0" - implementation "org.commonmark:commonmark-ext-gfm-tables:0.22.0" + implementation "org.commonmark:commonmark:0.23.0" + implementation "org.commonmark:commonmark-ext-gfm-tables:0.23.0" // https://mvnrepository.com/artifact/com.bucket4j/bucket4j_jdk17 implementation "com.bucket4j:bucket4j_jdk17-core:8.14.0" implementation "com.fathzer:javaluator:3.0.5" diff --git a/src/main/resources/messages_it_IT.properties b/src/main/resources/messages_it_IT.properties index 6191f7a0d..6355ea65d 100644 --- a/src/main/resources/messages_it_IT.properties +++ b/src/main/resources/messages_it_IT.properties @@ -32,7 +32,7 @@ selectFillter=-- Seleziona -- pageNum=Numero pagina sizes.small=Piccolo sizes.medium=Medio -sizes.large=Largo +sizes.large=Grande sizes.x-large=Extra-Large error.pdfPassword=Il documento PDF è protetto da password e la password non è stata fornita oppure non era corretta delete=Elimina @@ -50,7 +50,7 @@ WorkInProgess=Lavori in corso, potrebbe non funzionare o essere difettoso, segna poweredBy=Alimentato da yes=Si no=No -changedCredsMessage=Credenziali cambiate! +changedCredsMessage=Credenziali modificate! notAuthenticatedMessage=Utente non autenticato. userNotFoundMessage=Utente non trovato. incorrectPasswordMessage=La password attuale non è corretta. @@ -194,7 +194,7 @@ adminUserSettings.extraApiUser=API utente limitato aggiuntivo adminUserSettings.webOnlyUser=Utente solo Web adminUserSettings.demoUser=Utente demo (nessuna impostazione personalizzata) adminUserSettings.internalApiUser=API utente interna -adminUserSettings.forceChange=Forza l'utente a cambiare nome username/password all'accesso +adminUserSettings.forceChange=Forza l'utente a cambiare nome utente/password all'accesso adminUserSettings.submit=Salva utente adminUserSettings.changeUserRole=Cambia il ruolo dell'utente adminUserSettings.authenticated=Autenticato @@ -226,7 +226,7 @@ database.failedImportFile=Importazione file non riuscita ############# # HOME-PAGE # ############# -home.desc=La tua pagina self-hostata per gestire qualsiasi PDF. +home.desc=La tua pagina auto-gestita per modificare qualsiasi PDF. home.searchBar=Cerca funzionalità... @@ -1023,7 +1023,7 @@ changeMetadata.submit=Cambia proprietà #pdfToPDFA pdfToPDFA.title=Da PDF a PDF/A pdfToPDFA.header=Da PDF a PDF/A -pdfToPDFA.credit=Questo servizio utilizza ghostscript per la conversione in PDF/A. +pdfToPDFA.credit=Questo servizio utilizza Ghostscript per la conversione in PDF/A. pdfToPDFA.submit=Converti pdfToPDFA.tip=Attualmente non funziona per più input contemporaneamente pdfToPDFA.outputFormat=Formato di output @@ -1141,14 +1141,14 @@ survey.dontShowAgain=Non mostrare più #error error.sorry=Ci scusiamo per il problema! error.needHelp=Hai bisogno di aiuto / trovato un problema? -error.contactTip=Se i problemi persistono, non esitare a contattarci per chiedere aiuto. Puoi inviare un ticket sulla nostra pagina GitHub o contattarci tramite Discord: +error.contactTip=Se i problemi persistono, non esitare a contattarci per chiedere aiuto. Puoi aprire un ticket sulla nostra pagina GitHub o contattarci tramite Discord: error.404.head=404 - Pagina non trovata | Spiacenti, siamo inciampati nel codice! error.404.1=Non riusciamo a trovare la pagina che stai cercando. error.404.2=Qualcosa è andato storto -error.github=Invia un ticket su GitHub +error.github=Apri un ticket su GitHub error.showStack=Mostra traccia dello stack error.copyStack=Copia traccia dello stack -error.githubSubmit=GitHub: invia un ticket +error.githubSubmit=GitHub: apri un ticket error.discordSubmit=Discord: invia post di supporto diff --git a/src/main/resources/static/3rdPartyLicenses.json b/src/main/resources/static/3rdPartyLicenses.json index 857fc221b..703702db9 100644 --- a/src/main/resources/static/3rdPartyLicenses.json +++ b/src/main/resources/static/3rdPartyLicenses.json @@ -573,13 +573,13 @@ }, { "moduleName": "org.commonmark:commonmark", - "moduleVersion": "0.22.0", + "moduleVersion": "0.23.0", "moduleLicense": "BSD 2-Clause License", "moduleLicenseUrl": "https://opensource.org/licenses/BSD-2-Clause" }, { "moduleName": "org.commonmark:commonmark-ext-gfm-tables", - "moduleVersion": "0.22.0", + "moduleVersion": "0.23.0", "moduleLicense": "BSD 2-Clause License", "moduleLicenseUrl": "https://opensource.org/licenses/BSD-2-Clause" }, @@ -1143,7 +1143,7 @@ { "moduleName": "org.springframework:spring-webmvc", "moduleUrl": "https://github.com/spring-projects/spring-framework", - "moduleVersion": "6.1.9", + "moduleVersion": "6.1.13", "moduleLicense": "Apache License, Version 2.0", "moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0" }, diff --git a/src/main/resources/static/css/home.css b/src/main/resources/static/css/home.css index 782e336da..12b69d94c 100644 --- a/src/main/resources/static/css/home.css +++ b/src/main/resources/static/css/home.css @@ -157,6 +157,14 @@ filter: brightness(0) invert(var(--md-theme-filter-color)); } +.favorite-icon:hover .material-symbols-rounded { + transform: scale(1.2); +} + +.favorite-icon .material-symbols-rounded.fill{ + color: #f5c000; +} + .jumbotron { padding: 3rem 3rem; /* Reduce vertical padding */ diff --git a/src/main/resources/static/css/theme/theme.css b/src/main/resources/static/css/theme/theme.css index 4f7be33e8..2e736ede7 100644 --- a/src/main/resources/static/css/theme/theme.css +++ b/src/main/resources/static/css/theme/theme.css @@ -31,4 +31,4 @@ .no-fill { /* font-variation-settings: var(--md-sys-icon-fill-0); */ -} \ No newline at end of file +}