easyaspi314

Results 132 comments of easyaspi314

I noticed this [here](src/midi/MidiFile.cpp#L902) ```cpp ControlChangeEvent *ctrl = dynamic_cast(event); if(ctrl){ // insert all ControlChanges on first position // playerMap->insert(msOfTick(cursorTick())-1, ctrl); } ``` Uncommenting `// playerMap->insert(msOfTick(cursorTick())-1, ctrl);` seems to fix this,...

Notes: Target Computer: Mac OS X El Capitan 10.11.6 (64-bit) MacBook (13-inch, Mid 2009) - MacBook5,2 2.13 GHz Intel Core 2 Duo 4 GB 667 MHz DDR2 SDRAM NVIDIA GeForce...

Progress: MIDI output through speakers is working via CoreMIDI. Needs an external synthesizer like FluidSynth or SimpleSynth.

@abreheret I just pushed my WIP changes. 9e07833c4fd797c191290bc6c3aada4a6e9c6224 I finally managed to make CMake compile resources.rcc into MidiEditor.app. It took way too long. I am also updating to Qt 5.9.1...

I managed to get the combined toolbar working. ![screen shot 2017-09-09 at 8 44 59 pm](https://user-images.githubusercontent.com/6258309/30245195-dba7c9da-959f-11e7-86cf-82d727fff82d.png) Also, while I managed to get smooth 360° scrolling *working*, there is a serious...

1fbd7cf is the ultimate dump. This greatly improved macOS compatibility, especially with the new scrolling engine. The new engine avoids repainting whenever possible, caches old copies, and paints static images...

Hooray! In making macOS compatibility, I completely broke Windows compatibility. Fun. Now I gotta fix that too. As for scrolling performance, my testing wasn't thorough enough. Turns out that while...

It's rough (as you can tell from the mass commenting) and untested on Windows for now, but try this CMakeLists.txt for size. You should no longer need the hacky WINMAIN....

Actually, scratch that because that is guaranteed to not build. I am gonna commit to my branch with my potential fix when I get home. Basically, I disabled everything Remote...

Try this version ``` $ git clone https://github.com/easyaspi314/MidiEditor MidiEditor-easyaspi314 $ cd MidiEditor-easyaspi314 $ git checkout gba ``` While I have been not really working on it recently, this is mostly...