Compare commits

..

1 Commits

Author SHA1 Message Date
Anthony Stirling
7108424a92 Update build.gradle 2024-12-05 19:16:18 +00:00
4 changed files with 6 additions and 7 deletions

View File

@@ -26,7 +26,7 @@ ext {
} }
group = "stirling.software" group = "stirling.software"
version = "0.35.1" version = "0.36.0"
java { java {

View File

@@ -28,7 +28,7 @@ public class LicenseKeyChecker {
this.checkLicense(); this.checkLicense();
} }
@Scheduled(initialDelay = 604800000,fixedRate = 604800000) // 7 days in milliseconds @Scheduled(fixedRate = 604800000) // 7 days in milliseconds
public void checkLicensePeriodically() { public void checkLicensePeriodically() {
checkLicense(); checkLicense();
} }

View File

@@ -82,7 +82,7 @@
} }
} }
//clearFileInput(); clearFileInput();
clearTimeout(timeoutId); clearTimeout(timeoutId);
if (showGameBtn) { if (showGameBtn) {
showGameBtn.style.display = 'none'; showGameBtn.style.display = 'none';
@@ -163,10 +163,10 @@
success = true; success = true;
if (contentType.includes('application/pdf') || contentType.includes('image/')) { if (contentType.includes('application/pdf') || contentType.includes('image/')) {
//clearFileInput(); clearFileInput();
return handleResponse(blob, filename, !isMulti, isZip); return handleResponse(blob, filename, !isMulti, isZip);
} else { } else {
//clearFileInput(); clearFileInput();
return handleResponse(blob, filename, false, isZip); return handleResponse(blob, filename, false, isZip);
} }
} catch (error) { } catch (error) {

View File

@@ -276,8 +276,7 @@ function formatText(text) {
const container = document.createElement('div'); const container = document.createElement('div');
// Split the text into lines // Split the text into lines
const textWithoutComments = text.replace(/<!--[\s\S]*?-->/g, ''); const lines = text.split('\n');
const lines = textWithoutComments.split('\n');
let currentList = null; let currentList = null;
lines.forEach(line => { lines.forEach(line => {