Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
hschneider committed Dec 19, 2023
1 parent 8089cf9 commit 5e0dae5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions resources/js/neutralino-autoupdate/autoupdate.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class NeutralinoAutoupdate {
// opt debug: Toggle console debug output
// opt lang: Dialog language, defaults to en

this.version = '1.1.4';
this.version = '1.1.5';
this.debug = opt.debug || true;

this.urlManifest = urlManifest; // Manifest URL
Expand Down Expand Up @@ -55,16 +55,16 @@ class NeutralinoAutoupdate {
'txtAskUpdate': 'You have version {versionCurrent}. Do you want to install version {versionUpdate}?',
'btnCancel': 'Not yet',
'btnOK': 'Install',
'errorChecksum': "Ooops - Update failed: The download seems to be corrupted.",
'errorUnpack': 'Ooops - Update failed: Download cannot be unpacked.'
'errorChecksum': "Ooops - Update failed: The download seems to be corrupted.<br>You can close this message and try to update again later.",
'errorUnpack': 'Ooops - Update failed: Download cannot be unpacked<br>You can close this message and try to update again later.'
},
'de': {
'txtNewVersion': 'Eine neue Version von {appName} ist verfügbar.',
'txtAskUpdate': 'Sie haben Version {versionCurrent}. Möchten Sie Version {versionUpdate} installieren?',
'btnCancel': 'Jetzt nicht',
'btnOK': 'Installieren',
'errorChecksum': "Ooops - Update Error: Der Download ist anscheinend defekt.",
'errorUnpack': 'Ooops - Update Error: Der Download kann nicht entpackt werden.'
'errorChecksum': "Ooops - Update Error: Der Download ist anscheinend defekt.<br>Du kannst diesen Dialog schließen und es später noch mal versuchen.",
'errorUnpack': 'Ooops - Update Error: Der Download kann nicht entpackt werden.<br>Du kannst diesen Dialog schließen und es später noch mal versuchen.'
}
}

Expand Down
3 changes: 1 addition & 2 deletions resources/js/neutralino-autoupdate/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@
background: #2b2b2b;
border-radius: 9px;
padding: 20px 20px 20px 20px;
height: auto;
height: fit-content;
min-height: 40px;
max-height: 40px;
max-width: 500px;
overflow: hidden;
font-family: 'San Francisco', 'Helvetica Neue', 'Lucida Grande', sans-serif;
Expand Down

0 comments on commit 5e0dae5

Please sign in to comment.