Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2703689e4e | |||
| b24c50722f | |||
| 3ec23a9f79 |
+1
-1
@@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
||||||
<div class="logo-text">
|
<div class="logo-text">
|
||||||
<h1>FilaMan<span class="version">v1.0.2</span></h1>
|
<h1>FilaMan<span class="version">v1.0.9</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+1
-1
@@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.0.8"
|
version = "1.1.0"
|
||||||
|
|
||||||
[env:esp32dev]
|
[env:esp32dev]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
|
|||||||
@@ -13,6 +13,9 @@ def copy_file(input_file, output_file):
|
|||||||
shutil.copy2(input_file, output_file)
|
shutil.copy2(input_file, output_file)
|
||||||
|
|
||||||
def should_compress(file):
|
def should_compress(file):
|
||||||
|
# Skip compression for spoolman.html
|
||||||
|
if file == 'spoolman.html':
|
||||||
|
return False
|
||||||
# Komprimiere nur bestimmte Dateitypen
|
# Komprimiere nur bestimmte Dateitypen
|
||||||
return file.endswith(('.js', '.png', '.css', '.html'))
|
return file.endswith(('.js', '.png', '.css', '.html'))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user