-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1489 from ronso0/LateNight-2.1-beta-tuning
LateNight 2.1 :: fine tuning, 4 FX units, more samplers, skin menu
- Loading branch information
Showing
173 changed files
with
16,223 additions
and
2,609 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,38 @@ | ||
|
||
Decks | ||
* introduce another deck row: | ||
> Quantize, Keylock, ... Stars | ||
> make overview row wider but less tall (square Cover art plus equal margin) | ||
* test new (Hot)Cue button color: orange when set, red when pressed/playing from (Hot)Cue | ||
|
||
Aux | ||
General | ||
* fix fonts: OpenSans for all numbers | ||
* vectorize remaining buttons | ||
* vectorize VUs, add path mask, so they are easier to resize | ||
* clean up SVGs | ||
* move slider/knob graphics to subfolder | ||
|
||
Mic | ||
* add ducking controls | ||
|
||
Vinyl | ||
* merge vinyl toggle & status light | ||
|
||
Mixer | ||
Toolbar | ||
* re-order GUI quick toggles: decks, mixer, extras, general -- rec, clock | ||
|
||
Sampler | ||
* add cue_default to Play button | ||
* make space for 8 HotCues: | ||
> shrink Sync | ||
> shrink VU meter & push it up | ||
|
||
GENERAL | ||
* re-order GUI quick toggles: decks, mixer, general | ||
Decks | ||
* star rating: | ||
- beside/instead of Vinyl controls (SizeAwareStack) | ||
- in between artist and duration | ||
- in deck controls grid (layout varies with available height) | ||
* don't transform Key display to uppercase | ||
* test new (Hot)Cue button color: orange when set, red when pressed/playing from (Hot)Cue | ||
|
||
Aux | ||
|
||
Mic | ||
* add ducking controls | ||
* add cover when a Mic is not configured | ||
= button bound to [Mic],talkover, so that Preferences will open on click | ||
|
||
Vinyl | ||
* merge vinyl toggle & status light | ||
|
||
Mixer | ||
* reduce Crossfader margin | ||
|
||
Sampler | ||
* make space for 8 HotCues, window at minimal size: | ||
> shrink Sync | ||
> shrink VU meter, put Sync below | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!-- | ||
Description: | ||
A button that has click or display controls. | ||
Variables: | ||
ObjectName : object name | ||
ToolTipID : standard Tooltip from mixxx db | ||
see: https://github.com/mixxxdj/mixxx/blob/master/src/skin/TooltipIds.cpp | ||
Size : button size | ||
state_X_text : label text for state X | ||
state_X_pressed : background graphic for pressed state X | ||
state_X_unpressed : background graphic for unpressed state X | ||
Align : alignment of text | ||
ConfigKey : left-click control | ||
--> | ||
<Template> | ||
<PushButton> | ||
<TooltipId><Variable name="TooltipId"/></TooltipId> | ||
<ObjectName><Variable name="ObjectName"/></ObjectName> | ||
<Size><Variable name="Size"/></Size> | ||
<NumberStates>1</NumberStates> | ||
<State> | ||
<Number>0</Number> | ||
<Text><Variable name="state_0_text"/></Text> | ||
<Pressed>skin:/buttons/btn_<Variable name="Icon"/>_down.svg</Pressed> | ||
<Unpressed>skin:/buttons/btn_<Variable name="Icon"/>.svg</Unpressed> | ||
<Alignment><Variable name="Align"/></Alignment> | ||
</State> | ||
<Connection> | ||
<ConfigKey><Variable name="ConfigKey"/></ConfigKey> | ||
</Connection> | ||
</PushButton> | ||
</Template> |
Oops, something went wrong.