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
|
### 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
|
### Changelog
|
||||||
|
|
||||||
- Improve error messages for 24-bit WAV files (#443)
|
- Improve error messages for 24-bit WAV files (#443)
|
||||||
|
|
|
@ -136,11 +136,12 @@ def template_config(**kwargs) -> Config:
|
||||||
# post_trigger=ZeroCrossingTriggerConfig(),
|
# post_trigger=ZeroCrossingTriggerConfig(),
|
||||||
),
|
),
|
||||||
channels=[],
|
channels=[],
|
||||||
layout=LayoutConfig(orientation="v", ncols=1),
|
default_label=DefaultLabel.FileName,
|
||||||
|
layout=LayoutConfig(orientation="v", stereo_orientation="v", ncols=1),
|
||||||
render=RendererConfig(
|
render=RendererConfig(
|
||||||
1280,
|
1920,
|
||||||
720,
|
1080,
|
||||||
res_divisor=4 / 3,
|
res_divisor=3 / 2,
|
||||||
grid_color="#55aaff",
|
grid_color="#55aaff",
|
||||||
v_midline=True,
|
v_midline=True,
|
||||||
h_midline=True,
|
h_midline=True,
|
||||||
|
|
|
@ -142,7 +142,7 @@ class Font(DumpableAttrs, always_dump="*"):
|
||||||
bold: bool = False
|
bold: bool = False
|
||||||
italic: bool = False
|
italic: bool = False
|
||||||
# Font size
|
# Font size
|
||||||
size: float = with_units("pt", default=20)
|
size: float = with_units("pt", default=28)
|
||||||
# QFont implementation details
|
# QFont implementation details
|
||||||
toString: str = None
|
toString: str = None
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue