diff --git a/src/components/panels/HistoryListPanel.vue b/src/components/panels/HistoryListPanel.vue index 878af699..4e0751b0 100644 --- a/src/components/panels/HistoryListPanel.vue +++ b/src/components/panels/HistoryListPanel.vue @@ -135,7 +135,7 @@ - + @@ -144,88 +144,133 @@ mdi-close-thick - - - - - {{ $t('History.Filename') }} - {{ detailsDialog.item.filename }} - - - {{ $t('History.Filesize') }} - {{ formatFilesize(detailsDialog.item.metadata.size) }} - - - {{ $t('History.LastModified') }} - {{ formatDate(detailsDialog.item.metadata.modified) }} - - - {{ $t('History.Status') }} - {{ detailsDialog.item.status }} - - - {{ $t('History.StartTime') }} - {{ formatDate(detailsDialog.item.start_time) }} - - - {{ $t('History.EndTime') }} - {{ 'end_time' in detailsDialog.item && detailsDialog.item.end_time > 0 ? formatDate(detailsDialog.item.end_time) : "--" }} - - - {{ $t('History.EstimatedTime') }} - {{ formatPrintTime(detailsDialog.item.metadata.estimated_time) }} - - - {{ $t('History.PrintDuration') }} - {{ formatPrintTime(detailsDialog.item.print_duration) }} - - - {{ $t('History.TotalDuration') }} - {{ formatPrintTime(detailsDialog.item.total_duration) }} - - - {{ $t('History.EstimatedFilament') }} - {{ Math.round(detailsDialog.item.metadata.filament_total) }} mm - - - {{ $t('History.FilamentUsed') }} - {{ Math.round(detailsDialog.item.filament_used) }} mm - - - {{ $t('History.FirstLayerExtTemp') }} - {{ detailsDialog.item.metadata.first_layer_extr_temp }} °C - - - {{ $t('History.FirstLayerBedTemp') }} - {{ detailsDialog.item.metadata.first_layer_bed_temp }} °C - - - {{ $t('History.FirstLayerHeight') }} - {{ detailsDialog.item.metadata.first_layer_height }} mm - - - {{ $t('History.LayerHeight') }} - {{ detailsDialog.item.metadata.layer_height }} mm - - - {{ $t('History.ObjectHeight') }} - {{ detailsDialog.item.metadata.object_height }} mm - - - {{ $t('History.Slicer') }} - {{ detailsDialog.item.metadata.slicer }} - - - {{ $t('History.SlicerVersion') }} - {{ detailsDialog.item.metadata.slicer_version }} - - - + + + {{ $t('History.Filename') }} + {{ detailsDialog.item.filename }} + + + + + + {{ $t('History.Status') }} + {{ detailsDialog.item.status }} + + + + {{ $t('History.StartTime') }} + {{ formatDate(detailsDialog.item.start_time) }} + + + + + + + + + + + + + + + diff --git a/src/locales/en.json b/src/locales/en.json index b9c9974b..f1516807 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -166,6 +166,7 @@ "PrintTime": "Print Time", "TotalDuration": "Total Time", "TotalTime": "Total Time", + "EstimatedFilamentWeight": "Estimated Filament Weight", "EstimatedFilament": "Estimated Filament", "FilamentCalc": "Filament Calc", "FilamentUsed": "Filament Used",