Sequencer64 0.9.11

Discuss anything new and newsworthy! See http://planet.linuxaudio.org and https://libreav.org/news for more Linux Audio News!

Announcements of proprietary software may fit better in the Marketplace.


Moderators: raboof, MattKingUSA, khz

gimmeapill
Established Member
Posts: 564
Joined: Thu Mar 12, 2015 8:41 am
Has thanked: 44 times
Been thanked: 8 times

Sequencer64 0.9.11

Post by gimmeapill »

I don't think this project gets enough exposure, let's fix that, ok? ;-)
https://github.com/ahlstromcj/sequencer64
Sequencer64 (replaces sequencer24) is a reboot of seq24 to refactor it to be
tighter and easier to transition to GTKmm 3, and much more. It is now
beyond seq24 in functionality and bug fixes; the code is *significantly*
refactored, although the heart of seq24 definitely remains intact.
Screenshot:
Image

Arch PKGBUILD:
https://aur.archlinux.org/packages/sequencer64-git/

Changelog:
Major updates:

- Version 0.9.11 fixes a bug that disabled the important queueing
feature! Many other bugs fixed as well.
- Sequencer64 loads SMF 0 files and splits the channels into separate
tracks/sequences.
- JACK support has been improved. Sequencer64 will track JACK transport
properly, and as Master, will provide the proper Bar:Beats:Ticks (BBT)
to other JACK clients. We are still investigating JackBBTFrameOffset
support.
- Pause functionality (still tweaking it) has been added to playback
under ALSA. Instead of rewinding, the Pause button leaves
playback where it is, and resumes when playback restarts. Stop
still rewinds the sequences. The Pause feature does not affect JACK
transport, which already supports pause; we would like to add rewind
to JACK transport eventually. Also added is a Pause key (by default,
the period). Pause can be disabled at configure time (--disable-pause).
- Long sequences/patterns now auto-scroll horizontally during playback
to keep up with the progress bar in the sequence/pattern editor.
- Highlighting of last sequence brought up for editing.
- Configurable progress bar, font, redraw timeouts, and more.
- MIDI Clock support has been fixed. Sequencer64 will now interact
well with QJackCtl, Hydrogen, and Klick (command-line metronome).
See the testing described in contrib/notes/jack-testing.txt.
- An event-editing window has been added, for viewing and editing a
list of events, regardless of event type. Still in progress; viewing
is fine, editing basics work.
- Two synchronized song-editor windows can now be shown on screen, to
better arrange songs with a large number of tracks.
- Added a more modern-looking, bolder font to the graphical user
interface, selectable at run-time, in the "user" configuration file.
- Added an ALSA --bus option for easier testing against a specific
hardware/software synthesizer.
- Added a --ppqn option to try to play files at the right speed. Still
in progress, as the Seq24 PPQN value of 192 affects a lot of code!
It basically seems to work, but bugs may still lurk.
- Added support for using the Mod4/Super/Windows key to keep the
performance and sequence user-interfaces in editing mode, very helpful
for certain crappy laptop trackpads. Extra "paint" key support also
gets around the limitations of some trackpads.
- Shift-left-click on the pattern slot in the pattern editor now
toggles the playing state of all other patterns. This works across
screensets. Shift-left-click on the pattern name or M in the song
editor now toggles the mute state of all other tracks.
- Added arrow key support to some of the windows and panes.
- Also supplemented the mouse with "p" to start paint/draw mode, and
"x" to escape it, in the sequence and song editors.
- The "l" and "r" keys allow arrow movement of the performance
markers, with "x" to escape this mode.
- If notes are selected in the sequence editor, the arrow keys can
be used to move the notes in time and in pitch. In the
performance editor, a pattern can be selected with the mouse and
moved right/left with the arrow keys.
- Add "z" and "Z" keys to zoom out and zoom in the pattern and song
piano rolls. "0" restores the default zoom.
- Tweaked the colors of some user-interface elements to make it
easier to see them when combined. For example, the background
sequence is now colored, and the scale bars are now light grey.
Progress bars are now red, if not running in legacy mode. Selected
events now appear as orange in the data panel.
- The "rc" configuration file has been upgraded to support a couple
more options, including the enabling/disabling of LASH session
support.
- The "user" configuration file is now written, as well as being read.
It contains more extensive run-time configuration for
the user-interface. The following items have been added so far,
though not all are internally implemented:
- [user-interface-setting]
- Style of the main-window grid is now modifiable.
- Main window rows
- Main window columns
- Main window border thickness
- Main window spacing
- Maximum sets
- Control height
- Allowing two performance editors onscreen
- The page settings of scrollbar to increase the amount of
scrolling from the too-short defaults.
- [user-midi-settings]
- Global PPQN value
- Global beats per bar
- Global beats per minute
- Global beat width
- Global MIDI buss override
- Fixed a long-standing (back to seq24) bug that caused the main window
buttons to grab focus, causing the space bar to press the button, as
well as doing its start function.
- Internal (invisible) work:
- The code has been broken up into libraries, for better separation
between GUI support and the files, MIDI, JACK, and LASH support.
- A wide range of MIDI files have been tested, to find bugs that
can crash the application. A nice increase in robustness.
- Centralized dirtiness-handling to the perform module, and
improving its accuracy and comprehensiveness.
- Set Tempo and Time Signature events are now read from
non-Sequencer64 MIDI files. They are also saved in the normal
MIDI format, so other sequencers can get them from Sequencer64
MIDI files.
- The user-interface classes have refactored to derive from
base classes providing common code.
- Sequencer64 now uses std::multimap instead of std::list as an
event-container. It works well, and loads MIDI files a lot
faster, especially when compiled for debugging. The reason seems
to be that sorting is a lot faster in the multimap. See the
SEQ64_USE_EVENT_MAP macro in the libseq64/include/event_list.hpp
module for selection of the container, and try it for yourself!
- Constant variables are slowly being assigned to new members, in
preparation for support of altering the number of sequences and
screen sets supported.
Roadmap:
https://github.com/ahlstromcj/sequencer ... er/ROADMAP
Last edited by gimmeapill on Fri May 20, 2016 1:32 pm, edited 1 time in total.
alex stone
Established Member
Posts: 351
Joined: Fri Jun 06, 2008 7:39 am
Has thanked: 67 times
Been thanked: 53 times

Re: Sequencer64 0.9.11

Post by alex stone »

Just tried installing this for a look.

Using the debian install text, it builds a deb, but no bin file.

Using plain make/install, it fails to recognize gtk2mm.so.0.

I'll wait and see if it's me (others might try this and have some success), or a problem with the install process.

Alex.

Latest AVlinux 64bit, with kxstudio repos.

EDIT, Ahh, just read Falk's reply. I'll wait.
gimmeapill
Established Member
Posts: 564
Joined: Thu Mar 12, 2015 8:41 am
Has thanked: 44 times
Been thanked: 8 times

Re: Sequencer64 0.9.11

Post by gimmeapill »

@FalkTX: Actually I didn't know Seq24 project was still alive and managed to pull a bug fix release this year.
Need to edit that first post to be fair...
On Sequencer64 side, things are apparently not set in stone yet. From the roadmap page:
https://github.com/ahlstromcj/sequencer ... er/ROADMAP
... - Branch off to an "Enhancements" branch (highly provisional). This will
not be done until we have solidified Sequencer64 at version 1.0.
For version 2.0:
- Convert to gtkmm-3.
- Add optional build using Qt 5.
...
No mention of Jack-midi though, not sure what is the status.

@alex stone: you may want to report an issue (developer is responsive):
https://github.com/ahlstromcj/sequencer64/issues
User avatar
sadko4u
Established Member
Posts: 987
Joined: Mon Sep 28, 2015 9:03 pm
Has thanked: 2 times
Been thanked: 361 times

Re: Sequencer64 0.9.11

Post by sadko4u »

falkTX wrote:I'd prefer if we did NOT move things into gtk3 if possible..
Why not GTK3? I actually don't remember what problems delivers GTK3. Could you remember me what are the main reasons?
LSP (Linux Studio Plugins) Developer and Maintainer.
ssj71
Established Member
Posts: 1294
Joined: Tue Sep 25, 2012 6:36 pm
Has thanked: 1 time

Re: Sequencer64 0.9.11

Post by ssj71 »

falkTX wrote:well, anyway, the one that gets jack-midi support working first is the one I'll use. :D
I'll use the first one that becomes an lv2 plugin :p
_ssj71

music: https://soundcloud.com/ssj71
My plugins are Infamous! http://ssj71.github.io/infamousPlugins
I just want to get back to making music!
rhydermike
Established Member
Posts: 35
Joined: Fri Apr 29, 2016 9:03 pm

Re: Sequencer64 0.9.11

Post by rhydermike »

I also had the problem with it not being able to find gtk2mm.so.0. Xubuntu 16.04.
rhydermike
Established Member
Posts: 35
Joined: Fri Apr 29, 2016 9:03 pm

Re: Sequencer64 0.9.11

Post by rhydermike »

I did a git pull this morning and it works (Ubuntu 16.04). Had a bit of play around. Good work.
Luc
Established Member
Posts: 741
Joined: Fri Mar 27, 2015 1:04 pm
Been thanked: 1 time

Re: Sequencer64 0.9.11

Post by Luc »

I wish they would publish packages once in a while. :( Release early and release often.
gimmeapill
Established Member
Posts: 564
Joined: Thu Mar 12, 2015 8:41 am
Has thanked: 44 times
Been thanked: 8 times

Re: Sequencer64 0.9.11

Post by gimmeapill »

I wish they would publish packages once in a while. :( Release early and release often.
It's a one man project in its early phases - that's what git is for ;-)

But Debian packaging shouldn't be too complicated, did you check those instructions?
https://github.com/ahlstromcj/sequencer ... ter/debian
folderol
Established Member
Posts: 2080
Joined: Mon Sep 28, 2015 8:06 pm
Location: Here, of course!
Has thanked: 227 times
Been thanked: 400 times
Contact:

Re: Sequencer64 0.9.11

Post by folderol »

... who is also involved in several other sizeable projects, and has a full-time job! 8)
The Yoshimi guy {apparently now an 'elderly'}
mixe
Established Member
Posts: 15
Joined: Sun Oct 01, 2017 11:31 am

Re: Sequencer64 0.9.11

Post by mixe »

I've been following sequencer64 for some time and it looks very promising to me.

As far as I can recall, a QT-based interface rework is going on.

I invite everybody to give it a chance, test it and provide feedback to the author.

The INSTALL file provides accurate instructions about building the application from sources. I'm not super expert, but I'd be happy to try helping anyone about this if needed.
User avatar
GraysonPeddie
Established Member
Posts: 659
Joined: Sun Feb 12, 2012 11:12 pm
Location: Altha, FL
Been thanked: 6 times
Contact:

Re: Sequencer64 0.9.11

Post by GraysonPeddie »

PLEASE read the date before posting a message in the thread! That thread is last year and I thought Sequencer64 has added something new this year but apparently not.
--Grayson Peddie

Music Interest: New Age w/ a mix of modern smooth jazz, light techno/trance & downtempo -- something Epcot Future World/Tomorrowland-flavored.
mixe
Established Member
Posts: 15
Joined: Sun Oct 01, 2017 11:31 am

Re: Sequencer64 0.9.11

Post by mixe »

Thank you for the advice, Grayson!
Sequencer64 is clearly under active development, and new features are being added.
https://github.com/ahlstromcj/sequencer ... its/master
User avatar
milkii
Established Member
Posts: 477
Joined: Tue Jan 05, 2016 9:08 am
Location: Edinburgh
Has thanked: 92 times
Been thanked: 91 times
Contact:

Re: Sequencer64 0.9.11

Post by milkii »

interesting new features have included varisets, allowing larger set sizes/dimensions, and indep mainwids, allows viewing up to three sets at a time.

Image

they/them ta / libreav.org / wiki.thingsandstuff.org/Audio and related pages / gh

Luc
Established Member
Posts: 741
Joined: Fri Mar 27, 2015 1:04 pm
Been thanked: 1 time

Re: Sequencer64 0.9.11

Post by Luc »

It counts from zero???!!!

WHY???!!!

Why do software developers ever do that?!! Who ever counts anything from zero in real life??? :x
Post Reply