hvoss-techfak commited on
Commit
aa240c3
·
1 Parent(s): 71aa181

It's Transmissivity not TD....

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -392,7 +392,7 @@ def load_filaments_from_json_upload(file_obj):
392
  # still carry a leading blank
393
  rename_map = {
394
  "Name": " Name",
395
- "TD": " TD",
396
  "Color": " Color",
397
  }
398
  df_loaded.rename(
@@ -442,6 +442,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
442
  gr.Markdown(
443
  'If you have Hueforge, you can export your filaments under "Filaments -> Export" in the Hueforge software. Please make sure to select "CSV" instead of "JSON" during the export dialog.'
444
  )
 
 
 
445
  gr.Markdown(
446
  'To remove a filament simply right-click on any of the fields and select "Delete Row"'
447
  )
 
392
  # still carry a leading blank
393
  rename_map = {
394
  "Name": " Name",
395
+ "Transmissivity": " TD",
396
  "Color": " Color",
397
  }
398
  df_loaded.rename(
 
442
  gr.Markdown(
443
  'If you have Hueforge, you can export your filaments under "Filaments -> Export" in the Hueforge software. Please make sure to select "CSV" instead of "JSON" during the export dialog.'
444
  )
445
+ gr.Markdown(
446
+ 'If you want to load your personal library of Hueforge filaments, you can also simply paste this path into your explorer address bar: %APPDATA%\HueForge\Filaments\ and import your "personal_library.json" using the "Load Filaments Json" button.'
447
+ )
448
  gr.Markdown(
449
  'To remove a filament simply right-click on any of the fields and select "Delete Row"'
450
  )