Re: [PD] "make app" for vanilla?

2021-01-04 Thread Alexandre Torres Porres
Em seg., 4 de jan. de 2021 às 17:58, Dan Wilcox escreveu: > Alex: If the question is really "hey, can we have that 'make an app' > option that Pd-extended had?" > yup > then it perhaps makes sense to first look at the code in Pd-extended which > did this action: > > >

Re: [PD] "make app" for vanilla?

2021-01-04 Thread Dan Wilcox
> On Jan 2, 2021, at 6:26 PM, pd-list-requ...@lists.iem.at wrote: > > Date: Sat, 2 Jan 2021 17:42:54 +0100 > From: Christof Ressi mailto:i...@christofressi.com>> > You can always distribute Pd along your project and have a simple > top-level shell script resp. batch script which opens your main

Re: [PD] "make app" for vanilla?

2021-01-04 Thread Roman Haefeli
On Sat, 2021-01-02 at 22:00 +0100, João Pais wrote: > > I made a netpd.app that is basically a Pd.app containing patches > > and > > externals. I use kiosk-plugin to disable menus and Pd-console. I > > modified pd-gui.tcl to load the main patch automatically. If > > interested, have a look at: > >

Re: [PD] "make app" for vanilla?

2021-01-02 Thread IOhannes m zmölnig
Am 2. Jänner 2021 23:37:32 MEZ schrieb Christof Ressi : > > I meant you have to get the source of the externals and compile it > > yourself > Not necessarily. That is only the case if libpd is compiled with > multi-instance support exactly. in this thread we are talking about creating a

Re: [PD] "make app" for vanilla?

2021-01-02 Thread Christof Ressi
I meant you have to get the source of the externals and compile it yourself Not necessarily. That is only the case if libpd is compiled with multi-instance support and the (single-instance) external uses global variables (like 's_symbol', 's_float', etc.). The 's_*' variables will cause an

Re: [PD] "make app" for vanilla?

2021-01-02 Thread Alexandre Torres Porres
Em sáb., 2 de jan. de 2021 às 15:35, IOhannes m zmölnig escreveu: > Am 2. Jänner 2021 17:10:21 MEZ schrieb Alexandre Torres Porres < > por...@gmail.com>: > > Yeah, we > > have libpd, but that doesn't support externals out of the box, for > > instance. Yeah, I know you can compile libpd with

Re: [PD] "make app" for vanilla?

2021-01-02 Thread João Pais
I made a netpd.app that is basically a Pd.app containing patches and externals. I use kiosk-plugin to disable menus and Pd-console. I modified pd-gui.tcl to load the main patch automatically. If interested, have a look at: https://www.netpd.org/software/netpd-2.2.1_macos.dmg (for macOS)

Re: [PD] "make app" for vanilla?

2021-01-02 Thread Roman Haefeli
Hey Alex On Thu, 2020-12-31 at 18:19 -0300, Alexandre Torres Porres wrote: > Hi, we all know Pd Extended had that nice feature of sharing your > patch as an app, could that be available for Vanilla as a plugin? Maybe the answer is in your subject line? When I read it, I thought you were talking

Re: [PD] "make app" for vanilla?

2021-01-02 Thread IOhannes m zmölnig
Am 2. Jänner 2021 17:10:21 MEZ schrieb Alexandre Torres Porres : > Yeah, we > have libpd, but that doesn't support externals out of the box, for > instance. > why are you saying that? it is wrong. libpd supports externals (both abstractions and "compiled" externals) just fine. mfg.hft.fsl

Re: [PD] "make app" for vanilla?

2021-01-02 Thread Peter P.
* Christof Ressi [2021-01-02 17:42]: > You can always distribute Pd along your project and have a simple top-level > shell script resp. batch script which opens your main patch with the bundled > Pd version. Give the script a nice icon and off you go :-) > The downside is that on Windows and

Re: [PD] "make app" for vanilla?

2021-01-02 Thread Christof Ressi
You can always distribute Pd along your project and have a simple top-level shell script resp. batch script which opens your main patch with the bundled Pd version. Give the script a nice icon and off you go :-) The downside is that on Windows and macOS you get a visible terminal window, but

Re: [PD] "make app" for vanilla?

2021-01-02 Thread Alexandre Torres Porres
Seems a bit of an overkill involving other languages and all that. Yeah, we have libpd, but that doesn't support externals out of the box, for instance. The "make app" we had in Extended was much simpler. It'd replicate the Pd app and just open the patch you turned into an "app". This is

Re: [PD] "make app" for vanilla?

2021-01-02 Thread Andre Osku Schmidt
> other solutions are welcome though ;) in case you want a custom ui, and want pd only for the "it's running in the background" part, i've been experimenting with pd+osc+qml and it's pretty nice! but i guess if one needs much/fast data between pd<->qml, osc might not be enough... (i already

Re: [PD] "make app" for vanilla?

2021-01-01 Thread Alexandre Torres Porres
Em sex., 1 de jan. de 2021 às 13:36, Josh Moore escreveu: > not a vanilla solution > My original idea is that we could make a plugin for vanilla, downloadable via deken, so I don't expect this to become a "vanilla solution" out of the box. And I thought we could just get the code from Extended

Re: [PD] "make app" for vanilla?

2021-01-01 Thread Josh Moore
another thing is i've been playing around with csound and the web and the way it handles creating guis is just easier. you can get lost for days finding free javascript buttons and stuff like that.(good example is https://freefrontend.com/css-buttons/ 167 button designs, lots are 3d it's crazy...

Re: [PD] "make app" for vanilla?

2021-01-01 Thread Josh Moore
not a vanilla solution but i know ofelia allows you to do this though it's probably not as user friendly and i don't use that feature... supposedly compiles to ios, windows, macos, linux. the demo examples did compile on my machine and i checked it out and it's pretty neat but i'm not really

[PD] "make app" for vanilla?

2020-12-31 Thread Alexandre Torres Porres
Hi, we all know Pd Extended had that nice feature of sharing your patch as an app, could that be available for Vanilla as a plugin? What would it take? What other similar solution could we have instead? Of course we can just share a zipped file with the patch and all external dependencies, and