Merge pull request #458 from corrscope/update-defaults

Update defaults for better usability
pull/462/head
stray kittem 2024-01-27 12:53:56 -08:00 zatwierdzone przez GitHub
commit aff79759e9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
3 zmienionych plików z 11 dodań i 5 usunięć

Wyświetl plik

@ -6,6 +6,11 @@
### Major Changes
- Update defaults (#458)
- Switch default stereo orientation to vertical (to match user expectations)
- Switch to 1080p output resolution by default, increase label font size
- Enable track labels by default (from filename)
### Changelog
- Improve error messages for 24-bit WAV files (#443)

Wyświetl plik

@ -136,11 +136,12 @@ def template_config(**kwargs) -> Config:
# post_trigger=ZeroCrossingTriggerConfig(),
),
channels=[],
layout=LayoutConfig(orientation="v", ncols=1),
default_label=DefaultLabel.FileName,
layout=LayoutConfig(orientation="v", stereo_orientation="v", ncols=1),
render=RendererConfig(
1280,
720,
res_divisor=4 / 3,
1920,
1080,
res_divisor=3 / 2,
grid_color="#55aaff",
v_midline=True,
h_midline=True,

Wyświetl plik

@ -142,7 +142,7 @@ class Font(DumpableAttrs, always_dump="*"):
bold: bool = False
italic: bool = False
# Font size
size: float = with_units("pt", default=20)
size: float = with_units("pt", default=28)
# QFont implementation details
toString: str = None