kopia lustrzana https://github.com/corrscope/corrscope
Merge pull request #458 from corrscope/update-defaults
Update defaults for better usabilitypull/462/head
commit
aff79759e9
|
@ -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)
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue