add version 14.4

This commit is contained in:
Cayo Puigdefabregas 2023-05-30 22:37:30 +02:00
parent ccbf2f98a7
commit 1f913eebaa
3 changed files with 12 additions and 7 deletions

View File

@ -149,13 +149,13 @@
<div class="row">
<div class="col-2">
<a href="{{ iso_erease.url }}{{ iso_erease.iso }}" class="btn btn-primary" style="max-width: 200px;">
<a href="{{ iso_erease4.url }}{{ iso_erease4.iso }}" class="btn btn-primary" style="max-width: 200px;">
Download ISO
</a>
</div>
<div class="col-3">
<p class="small">
Download Checksum: <a class="help" href="{{ iso_erease.url }}SHA512SUM">SHA512SUM</a> |
Download Checksum: <a class="help" href="{{ iso_erease4.url }}SHA512SUM">SHA512SUM</a> |
<a href="https://help.usody.com/es/setup/setup-pendrive/" target="_blank" class="help">Help</a>
</p>
</div>
@ -243,13 +243,13 @@
<div class="row">
<div class="col-2">
<a href="{{ iso_erease.url }}{{ iso_erease.iso }}" class="btn btn-primary" style="max-width: 200px;">
<a href="{{ iso_erease2.url }}{{ iso_erease2.iso }}" class="btn btn-primary" style="max-width: 200px;">
Download ISO
</a>
</div>
<div class="col-3">
<p class="small">
Download Checksum: <a class="help" href="{{ iso_erease.url }}SHA512SUM">SHA512SUM</a> |
Download Checksum: <a class="help" href="{{ iso_erease2.url }}SHA512SUM">SHA512SUM</a> |
<a href="https://help.usody.com/es/setup/setup-pendrive/" target="_blank" class="help">Help</a>
</p>
</div>

View File

@ -7,8 +7,12 @@ isos = {
'iso': "USODY_2022.12.2-beta.iso",
'url': 'https://releases.usody.com/2022/',
},
"erease": {
"erease2": {
'iso': "USODY_14.2.0.iso",
'url': 'https://releases.usody.com/v14/',
'url': 'https://releases.usody.com/v14.2/',
},
"erease4": {
'iso': "USODY_14.4.0.iso",
'url': 'https://releases.usody.com/v14.4/',
},
}

View File

@ -34,7 +34,8 @@ class SettingsView(GenericMixin):
'demo': g.user.email == app.config['EMAIL_DEMO'],
'iso_demo': isos['demo'],
'iso_register': isos['register'],
'iso_erease': isos['erease'],
'iso_erease2': isos['erease2'],
'iso_erease4': isos['erease4'],
'form': form_kangaroo,
}
)