Lukas W
8768769450
Fix channel indicator being on by default
2016-03-07 09:52:22 +13:00
Michael Gregorius
1f39b607ba
Fixes #2624 ("Controls window of LFO controller is not destroyed upon
...
closing a project")
When it is destroyed the ControllerView now deletes the controller sub
window in case it has one.
2016-03-06 19:04:51 +01:00
Michael Gregorius
f6317f126b
Performance fixes
...
Removes some repeated calls to Qt's font layouting by using QStaticText
in FxLine and removing the overridden method ComboBox::sizeHint.
Unifies Mixer::peakValueLeft and Mixer::peakValueRight into
Mixer::getPeakValues so the array is only iterated once.
2016-03-06 18:23:35 +01:00
Fastigium
9ff8091db3
Fix regression that caused faulty FX channel index numbers
...
Commit e919912 changed the behavior of the FX channel swapping code so that
it no longer updated the m_channelIndex member of the swapped channels. This
caused sends/receives of swapped FX channels to move about when a project
was saved and loaded again.
2016-03-06 15:57:25 +01:00
Fastigium
eefefdea6f
Merge pull request #2626 from Fastigium/m_playHandlesToRemove
...
Synchronize access to Mixer::m_playHandlesToRemove
Fixes #2610
2016-03-06 15:30:08 +01:00
tresf
1058ea4b3f
Hide splash screen before showing settings screen
...
Per #2611
2016-03-04 14:37:12 -05:00
Umcaruje
020b4dd1b5
Merge pull request #2574 from Umcaruje/gradients
...
Refactor the drawing of TCO's; Get rid of hardcoded colors in TCOs; Even out the color scheme
2016-03-03 09:22:12 +01:00
Lukas W
85011cdcf7
Move CMake locale generation from src/ to data/locale/
2016-03-03 17:37:41 +13:00
Umcaruje
f136ba3097
Refactor the drawing of TCO's; Get rid of hardcoded colors in TCOs; Make TCO gradient configurable; Even out the color scheme
...
Thanks to @Fastigium for helping with the BB Pattern redraw problem
2016-03-02 21:58:27 +01:00
Fastigium
60038b5f55
Synchronize access to Mixer::m_playHandlesToRemove
...
Put every access to m_playHandlesToRemove between lockPlayHandleRemoval() and
unlockPlayHandleRemoval(). Fixes #2610 where a SIGSEGV would occur due to
concurrent access.
2016-03-02 09:47:24 +01:00
Oskar Wallgren
cfb2c7201f
Auto save timer setting
2016-03-02 07:25:19 +01:00
Tres Finocchiaro
e56c31b96e
Merge pull request #2609 from Wallacoloo/clang-fixes
...
Only use libc++ on when using clang *on apple*
2016-02-26 00:00:20 -05:00
Colin Wallace
59276a0307
Only use libc++ on APPLE; remove LMMS_BUILD_CLANG define, as it's no longer needed
2016-02-25 20:23:32 -08:00
Tres Finocchiaro
c976514125
Merge pull request #2608 from tresf/master
...
Add Win/Qt5 build directives for Travis
2016-02-25 16:56:26 -05:00
Tres Finocchiaro
67334a84c2
Add Win/Qt5 build directives for Travis
2016-02-25 01:39:20 -05:00
Hannu Haahti
1598343b86
Remove a completely useless warning
2016-02-25 00:38:25 +02:00
Fastigium
b55b1ab059
Merge pull request #2603 from Fastigium/arpeggio-sort-fix
...
Update two NotePlayHandle methods to ignore child NotePlayHandles
Fixes #2589
2016-02-24 19:40:54 +01:00
Fastigium
b645f43cfd
Destroy the FxMixer before the Mixer when shutting down
...
Fixes #2584 .
2016-02-24 16:37:53 +01:00
Oskar Wallgren
a4649c8e6e
Merge pull request #2586 from Fastigium/buffer-fix
...
Drop PresetPreviewPlayHandle's shared buffer system
2016-02-23 16:52:44 +01:00
Fastigium
eec7f634a8
Update two NotePlayHandle methods to ignore child NotePlayHandles
...
The methods NotePlayHandle::index and NotePlayHandle::nphsOfInstrumentTrack
had not yet been brought up-to-date with the new system of attaching child
NotePlayHandles directly to the mixer. This caused strange glitches when
arpeggio was used in sort mode.
2016-02-23 10:36:35 +01:00
Lukas W
8d91dd657d
Merge pull request #2602 from LMMS/iss-2577
...
Fix some Windows data directory resolve issues
2016-02-23 20:06:12 +13:00
Umcaruje
0561d8d994
Merge pull request #2547 from Umcaruje/fxline
...
Make FxLine Stroke Themeable
2016-02-20 14:40:48 +01:00
Oskar Wallgren
95b0ea2dda
Merge pull request #2555 from zonkmachine/recentfilebug
...
Show Main Window before loading/importing project
2016-02-19 20:54:21 +01:00
Colin Wallace
cde1bcc350
Fix #2588 by making Alt+Right shortcut mirror the Alt+Left shortcut;
...
Alt+Right sets the PianoRoll to edit the *next* pattern in the song editor; Alt+Left = previous.
2016-02-18 20:16:08 -08:00
Lukas W
eec6c5b4f0
Clean up some path separator mess
2016-02-19 12:04:36 +13:00
Fastigium
76f6b18632
Drop PresetPreviewPlayHandle's shared buffer system
...
Instead, add the NotePlayHandle used for previewing directly to the mixer.
This fixes two preview problems, namely the shared buffer being released
by the NotePlayHandle but still being pulled in by the AudioPort resulting
in distortions, and certain previews being cut off at mouse release even if
a release was set in the envelope.
2016-02-18 20:27:44 +01:00
Fastigium
9d1867c7eb
Make Mixer::removePlayHandle check m_newPlayHandles, too
...
This fixes a problem where a PresetPreviewPlayHandle would be put in
m_newPlayHandles to be added, then "removed" before it was actually added,
leaving it dangling.
2016-02-16 19:23:17 +01:00
Fastigium
ca7c90a99c
Add mixer lock to EffectChain::clear to prevent a race condition
2016-02-16 19:23:17 +01:00
Fastigium
da8040764f
Require explicit types when removing PlayHandles in the Mixer
...
This fixes a few deadlocks where a PresetPreviewPlayHandle would be removed by
the creation of a new PresetPreviewPlayHandle.
2016-02-16 19:23:08 +01:00
Umcaruje
8841b89b6d
Merge pull request #2546 from Umcaruje/fixscrollbars
...
Fix inconsistent scrollbars
2016-02-15 01:38:07 +01:00
Umcaruje
cfd345ad20
Merge pull request #2554 from Umcaruje/themeablecolors
...
Get rid of hardcoded colors in the Piano Roll and Automation Editor
2016-02-15 01:35:41 +01:00
Oskar Wallgren
0721b49a1c
Show Main Window before loading/importing project
2016-02-14 00:40:33 +01:00
Umcaruje
5c602a3f97
Merge pull request #2542 from Umcaruje/fix2329
...
Make the instrument section of the sidebar themeable
2016-02-13 00:21:09 +01:00
Colin Wallace
3c9cefc6c1
Merge pull request #2553 from Umcaruje/volumevelocity
...
Rename note volume into note velocity
2016-02-11 15:59:43 -08:00
Oskar Wallgren
3bbe0e3e15
Only lmms projects allowed in recent file list. Increase recent file memmory to 50
2016-02-11 03:12:12 +01:00
Lukas W
ca8f80d44f
Fix loading relative file path samples
...
Closes #2412
2016-02-11 11:58:42 +13:00
Umcaruje
2dd403e53b
Rename note volume into note velocity
2016-02-08 19:55:44 +01:00
Umcaruje
d52d7d9fb7
Get rid of hardcoded colors in the Piano Roll and Automation Editor
2016-02-08 19:44:50 +01:00
Oskar Wallgren
69ce296c5d
Merge pull request #2533 from zonkmachine/indentedmain
...
Fixed indentation
2016-02-08 07:01:52 +01:00
Colin Wallace
1c70319fc2
Merge pull request #2541 from Wallacoloo/piano-isXKey
...
Move isWhiteKey, isBlackKey into Piano.h
2016-02-07 15:58:58 -08:00
Oskar Wallgren
76e690a1a0
Fixed indentation
2016-02-07 17:00:25 +01:00
Umcaruje
e24384e732
Make FxLine Stroke Themeable
2016-02-07 01:39:00 +01:00
Umcaruje
59f8fbd94b
Fix inconsistent scrollbars
2016-02-06 12:17:38 +01:00
Kenneth Perry (thothonegan)
6228d9ae26
If using Qt5, use Qt5LinguistTools to locate lupdate/lrelease
2016-02-05 14:52:28 -06:00
Umcaruje
8b73381517
Make the instrument section of the sidebar themeable
2016-02-05 01:34:51 +01:00
Colin Wallace
f78b6a682a
Merge pull request #2540 from Umcaruje/cssnotes
...
Make the note border radius themeable, fix rendering of notes and volume/pan sliders
2016-02-04 16:10:11 -08:00
Umcaruje
439ab30d51
Make the note border radius themeable, fix rendering of notes and volume/pan sliders
2016-02-04 23:51:47 +01:00
Colin Wallace
176e08047e
Rewrite Piano::isBlackKey for clarity
2016-02-03 18:53:05 -08:00
Colin Wallace
aa0f7a08d6
Move isWhiteKey, isBlackKey into Piano.h to make use of these functions in a wider scope
2016-02-03 18:46:59 -08:00
Umcaruje
1228de750f
Merge pull request #2530 from Umcaruje/fixbarbreak
...
Fix bar display breaking at 999
2016-02-03 13:37:28 +01:00