SevenDelay

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

ryukau
Established Member
Posts: 28
Joined: Tue Oct 15, 2019 12:56 am

Re: SevenDelay

Post by ryukau »

Thanks to SpotlightKid for pointing out the problem. I fixed includes now.

I meant full build log as the full output of make. Sorry for not being clear. I'm still learning English.

If you don't use CV plugins, it can also be disabled in `LV2Plugins/Makefile`.

Code: Select all

build: common \
	lv2cvport \ # Remove this line to disable CV plugins.
	CubicPadSynth \
	EnvelopedSine \
	EsPhaser \
	FDNCymbal \
	FoldShaper \
	IterativeSinCluster \
	LatticeReverb \
	LightPadSynth \
	ModuloShaper \
	OddPowShaper \
	SevenDelay \
	SoftClipper \
	SyncSawSynth \
	TrapezoidSynth \
	WaveCymbal \
User avatar
Shupacabras
Established Member
Posts: 116
Joined: Fri Jun 08, 2012 11:12 pm

Re: SevenDelay

Post by Shupacabras »

They are excellent plugins
I'm taking a look and there are amazing things.
but maybe you consider an option to invert colors?
my eyes burn

Edit: after the last fix posted on github, everything builds smoothly on 18.04
ryukau
Established Member
Posts: 28
Joined: Tue Oct 15, 2019 12:56 am

Re: SevenDelay

Post by ryukau »

I too was considering to add color configuration, so I'll do it.

Off topic: I often feels letters are wiggling when reading on dark themes. Perhaps my astigmatism is the cause of it.
User avatar
Shupacabras
Established Member
Posts: 116
Joined: Fri Jun 08, 2012 11:12 pm

Re: SevenDelay

Post by Shupacabras »

The time in front of the screens wreaks havoc on the eyes... and in our sanity too :lol: :lol: :lol:
Kott
Established Member
Posts: 820
Joined: Thu Mar 21, 2013 12:55 am
Location: Vladivostok
Has thanked: 65 times
Been thanked: 124 times

Re: SevenDelay

Post by Kott »

ryukau wrote: Sun May 17, 2020 1:56 pm I too was considering to add color configuration, so I'll do it.
Yes, please!
User avatar
lilith
Established Member
Posts: 1698
Joined: Fri May 27, 2016 11:41 pm
Location: bLACK fOREST
Has thanked: 117 times
Been thanked: 57 times
Contact:

Re: SevenDelay

Post by lilith »

I tried to get the delay working in Reaper, but it's not found.
I put the vst3 folder into ~/home/.../.vst3 and also deleted the ~/.config/REAPER/reaper-vstplugins64.ini file. Still no success.
ryukau
Established Member
Posts: 28
Joined: Tue Oct 15, 2019 12:56 am

Re: SevenDelay

Post by ryukau »

Hi, lilith.

Which Linux distribution are you using? VST 3 version is built on Ubuntu 18.04, so it probably doesn't work on other distributions.

If you are on Ubuntu 18.04, try installing following packages:

Code: Select all

sudo apt install libxcb-cursor0 libxkbcommon-x11-0
I can send local VST 3 builds if you are on Fedora 32. It probably requires packages listed on build instruction (link is available at the bottom).

For other distribution, you need to build from source code. Build instruction is available, but required package list only covers for Ubuntu and Fedora for now.

- Build instruction: https://github.com/ryukau/VSTPlugins/bl ... ruction.md
User avatar
Shupacabras
Established Member
Posts: 116
Joined: Fri Jun 08, 2012 11:12 pm

Re: SevenDelay

Post by Shupacabras »

ryukau wrote: Sun May 17, 2020 1:56 pm I too was considering to add color configuration, so I'll do it.

Off topic: I often feels letters are wiggling when reading on dark themes. Perhaps my astigmatism is the cause of it.
if you support png files i can offer to design some skins
ryukau
Established Member
Posts: 28
Joined: Tue Oct 15, 2019 12:56 am

Re: SevenDelay

Post by ryukau »

Thanks for the offer.

However, my plugins only use code for UI and integrating with png requires extensive rewrite for some parts. Writing everything in code also has advantage for better scaling support. So I'm not planning to do so. (If svg can be used I'd like to rewrite.)

That said, I'm open to style modification for UI components. UI codes are under `common/gui` directory. See `onNanoDisplay()` methods for draw calls.

Reference to NanoVG draw calls: https://distrho.github.io/DPF/classNanoVG.html
User avatar
Shupacabras
Established Member
Posts: 116
Joined: Fri Jun 08, 2012 11:12 pm

Re: SevenDelay

Post by Shupacabras »

svg is the same as inkscape exports?
I will do the attempt with pleasure, even though programming is not my thing
we'll see what turns out
User avatar
lilith
Established Member
Posts: 1698
Joined: Fri May 27, 2016 11:41 pm
Location: bLACK fOREST
Has thanked: 117 times
Been thanked: 57 times
Contact:

Re: SevenDelay

Post by lilith »

ryukau wrote: Tue May 19, 2020 5:04 am Hi, lilith.

Which Linux distribution are you using? VST 3 version is built on Ubuntu 18.04, so it probably doesn't work on other distributions.

If you are on Ubuntu 18.04, try installing following packages:

Code: Select all

sudo apt install libxcb-cursor0 libxkbcommon-x11-0
I can send local VST 3 builds if you are on Fedora 32. It probably requires packages listed on build instruction (link is available at the bottom).

For other distribution, you need to build from source code. Build instruction is available, but required package list only covers for Ubuntu and Fedora for now.

- Build instruction: https://github.com/ryukau/VSTPlugins/bl ... ruction.md

Hi,

I'm on Debian 10. I will see if I have the packages installed.
ryukau
Established Member
Posts: 28
Joined: Tue Oct 15, 2019 12:56 am

Re: SevenDelay

Post by ryukau »

To Shupacabras,

Yes, inkscape supports svg.

svg can't be used for now. I'm using DPF and VST 3 SDK to build plugins, and both don't support svg.

If you send me picture of component, I may be able to make it to code.

---

To lilith,

If installing packages doesn't work, please let me know. I'll make a VM to debug the issue.
User avatar
lilith
Established Member
Posts: 1698
Joined: Fri May 27, 2016 11:41 pm
Location: bLACK fOREST
Has thanked: 117 times
Been thanked: 57 times
Contact:

Re: SevenDelay

Post by lilith »

Hi,

I have already both packages installed.
User avatar
lilith
Established Member
Posts: 1698
Joined: Fri May 27, 2016 11:41 pm
Location: bLACK fOREST
Has thanked: 117 times
Been thanked: 57 times
Contact:

Re: SevenDelay

Post by lilith »

Hi,

I have already both packages installed.
User avatar
Shupacabras
Established Member
Posts: 116
Joined: Fri Jun 08, 2012 11:12 pm

Re: SevenDelay

Post by Shupacabras »

Thanks for the offer.

However, my plugins only use code for UI and integrating with png requires extensive rewrite for some parts. Writing everything in code also has advantage for better scaling support. So I'm not planning to do so. (If svg can be used I'd like to rewrite.)

That said, I'm open to style modification for UI components. UI codes are under `common/gui` directory. See `onNanoDisplay()` methods for draw calls.

Reference to NanoVG draw calls: https://distrho.github.io/DPF/classNanoVG.html
[/quote]

Hi ryukau

I was carefully analyzing which path would be less effort

in the end the only change of colors I think would be the most reasonable

Changing too much code apart from time would lead to unnecessary bug situations

I analyzed some current designs and I think that something like this is what best suits eye rest and differentiation
Screenshot_20200520_134810.png
Screenshot_20200520_134810.png (51.11 KiB) Viewed 1860 times
ryukau wrote: Tue May 19, 2020 6:27 am
Post Reply