Skip to content

Commit a095e32

Browse files
First pass at histogram improvements for issue #40
Signed-off-by: Cole Gentry <peapod2007@gmail.com>
1 parent 418ae3e commit a095e32

File tree

21 files changed

+1202
-102
lines changed

21 files changed

+1202
-102
lines changed

Cargo.lock

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ultralog"
3-
version = "2.1.2"
3+
version = "2.2.0"
44
edition = "2021"
55
description = "A high-performance ECU log viewer written in Rust"
66
authors = ["Cole Gentry"]
@@ -78,6 +78,9 @@ tracing-subscriber = "0.3"
7878
# UUID generation for anonymous user IDs
7979
uuid = { version = "1.0", features = ["v4"] }
8080

81+
# Clipboard support for histogram copy/paste
82+
arboard = "3.4"
83+
8184
# Windows-specific: embed icon and manifest
8285
[target.'cfg(windows)'.build-dependencies]
8386
winresource = "0.1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A high-performance, cross-platform ECU log viewer written in Rust.
66

77
![CI](https://github.com/SomethingNew71/UltraLog/actions/workflows/ci.yml/badge.svg)
88
![License](https://img.shields.io/badge/license-AGPL--3.0-blue.svg)
9-
![Version](https://img.shields.io/badge/version-2.1.2-green.svg)
9+
![Version](https://img.shields.io/badge/version-2.2.0-green.svg)
1010

1111
---
1212

i18n/ar.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,18 @@ histogram:
292292
average_z: "متوسط Z"
293293
hit_count: "عدد الإصابات"
294294
grid: "الشبكة:"
295+
min_hits: "الحد الأدنى للإصابات"
296+
x_range: "نطاق X"
297+
y_range: "نطاق Y"
298+
auto: "تلقائي"
299+
copy: "نسخ"
300+
paste: "لصق"
301+
clear: "مسح"
302+
operation: "العملية"
303+
compare: "مقارنة"
304+
comparison_histogram: "مدرج تكراري"
305+
comparison_pasted: "ملصوق"
306+
comparison_result: "النتيجة"
295307

296308
# Chart (src/ui/chart.rs)
297309
chart:

i18n/bn.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,18 @@ histogram:
292292
average_z: "গড় Z"
293293
hit_count: "হিট গণনা"
294294
grid: "গ্রিড:"
295+
min_hits: "সর্বনিম্ন হিট"
296+
x_range: "X পরিসীমা"
297+
y_range: "Y পরিসীমা"
298+
auto: "স্বয়ংক্রিয়"
299+
copy: "কপি"
300+
paste: "পেস্ট"
301+
clear: "পরিষ্কার"
302+
operation: "পরিচালনা"
303+
compare: "তুলনা"
304+
comparison_histogram: "হিস্টোগ্রাম"
305+
comparison_pasted: "পেস্ট করা"
306+
comparison_result: "ফলাফল"
295307

296308
# Chart (src/ui/chart.rs)
297309
chart:

i18n/de.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,18 @@ histogram:
292292
average_z: "Durchschnitt Z"
293293
hit_count: "Trefferanzahl"
294294
grid: "Raster:"
295+
min_hits: "Min. Treffer"
296+
x_range: "X-Bereich"
297+
y_range: "Y-Bereich"
298+
auto: "Automatisch"
299+
copy: "Kopieren"
300+
paste: "Einfügen"
301+
clear: "Löschen"
302+
operation: "Betrieb"
303+
compare: "Vergleichen"
304+
comparison_histogram: "Histogramm"
305+
comparison_pasted: "Eingefügt"
306+
comparison_result: "Ergebnis"
295307

296308
# Chart (src/ui/chart.rs)
297309
chart:

i18n/en.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,18 @@ histogram:
292292
average_z: "Average Z"
293293
hit_count: "Hit Count"
294294
grid: "Grid:"
295+
min_hits: "Min Hits"
296+
x_range: "X Range"
297+
y_range: "Y Range"
298+
auto: "Auto"
299+
copy: "Copy"
300+
paste: "Paste"
301+
clear: "Clear"
302+
operation: "Op"
303+
compare: "Compare"
304+
comparison_histogram: "Histogram"
305+
comparison_pasted: "Pasted"
306+
comparison_result: "Result"
295307

296308
# Chart (src/ui/chart.rs)
297309
chart:

i18n/es.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,18 @@ histogram:
292292
average_z: "Promedio Z"
293293
hit_count: "Conteo de Impactos"
294294
grid: "Cuadricula:"
295+
min_hits: "Impactos Mínimos"
296+
x_range: "Rango X"
297+
y_range: "Rango Y"
298+
auto: "Automático"
299+
copy: "Copiar"
300+
paste: "Pegar"
301+
clear: "Limpiar"
302+
operation: "Operación"
303+
compare: "Comparar"
304+
comparison_histogram: "Histograma"
305+
comparison_pasted: "Pegado"
306+
comparison_result: "Resultado"
295307

296308
# Grafico (src/ui/chart.rs)
297309
chart:

i18n/fr.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,18 @@ histogram:
292292
average_z: "Moyenne Z"
293293
hit_count: "Nombre d'occurrences"
294294
grid: "Grille :"
295+
min_hits: "Occurrences minimum"
296+
x_range: "Plage X"
297+
y_range: "Plage Y"
298+
auto: "Automatique"
299+
copy: "Copier"
300+
paste: "Coller"
301+
clear: "Effacer"
302+
operation: "Opération"
303+
compare: "Comparer"
304+
comparison_histogram: "Histogramme"
305+
comparison_pasted: "Collé"
306+
comparison_result: "Résultat"
295307

296308
# Chart (src/ui/chart.rs)
297309
chart:

i18n/hi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,18 @@ histogram:
292292
average_z: "औसत Z"
293293
hit_count: "हिट गणना"
294294
grid: "ग्रिड:"
295+
min_hits: "न्यूनतम हिट्स"
296+
x_range: "X श्रेणी"
297+
y_range: "Y श्रेणी"
298+
auto: "स्वचालित"
299+
copy: "कॉपी"
300+
paste: "पेस्ट"
301+
clear: "मंज़ूर"
302+
operation: "ऑपरेशन"
303+
compare: "तुलना"
304+
comparison_histogram: "हिस्टोग्राम"
305+
comparison_pasted: "पेस्ट किया गया"
306+
comparison_result: "परिणाम"
295307

296308
# Chart (src/ui/chart.rs)
297309
chart:

0 commit comments

Comments
 (0)