[PD] Automatic upload from CI to Deken

2017-07-18 Thread Antoine Villeret
Hi, Would it be acceptable to upload library binary from continuous integration service (i.e. Travis and Appveyor) to Deken ? In my case, it would be a pd library build for Linux (x86_64 and arm), Windows and Mac OS X. And it would be triggered by tag about twice a month. Cheers Antoine -- do

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Max
On 2017년 07월 18일 15:20, IOhannes m zmoelnig wrote: On 2017-07-18 10:41, Max wrote: On 2017년 07월 17일 20:00, IOhannes m zmölnig wrote: On 07/17/2017 04:24 PM, Max wrote: Great work, I really appreciate the more verbose INSTALL.txt. The autogen.sh process worked flawless, however, I could not

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Dan Wilcox
> On Jul 18, 2017, at 3:56 PM, Max wrote: > > On 2017년 07월 18일 15:04, Dan Wilcox wrote: >> Can you re-run configure and look through the output for the relevant Jack >> checks? It may not be finding Jack correctly. > > checking for jack_set_xrun_callback in

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Max
On 2017년 07월 18일 15:04, Dan Wilcox wrote: Can you re-run configure and look through the output for the relevant Jack checks? It may not be finding Jack correctly. checking for jack_set_xrun_callback in -ljack... yes checking for jack_set_error_function in -ljack... yes Also, what does the

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread IOhannes m zmoelnig
On 2017-07-18 10:41, Max wrote: > On 2017년 07월 17일 20:00, IOhannes m zmölnig wrote: >> On 07/17/2017 04:24 PM, Max wrote: >>> >>> Great work, I really appreciate the more verbose INSTALL.txt. >>> The autogen.sh process worked flawless, however, I could not get JACK to >>> work, even with

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Dan Wilcox
Can you re-run configure and look through the output for the relevant Jack checks? It may not be finding Jack correctly. Also, what does the final configure print out say for the Audio APIS? Is JACK listed? > On Jul 18, 2017, at 12:00 PM, pd-list-requ...@lists.iem.at wrote: > > From: Max

Re: [PD] testing some 0.48.0 GUI updates

2017-07-18 Thread Dan Wilcox
It's not related to the "blink." That is simply seeing the window resizing before all the content has been updated. I tried temporarily hiding things while the lists are updated and was able to stop most of it, but it still happens when the lists are created for the first time. I didn't create

[PD] DSP cycle - block size & overlapping

2017-07-18 Thread Pierre Guillot
Hi all, I'm experimenting with different block sizes and overlapping factors for subpatches and I encountered 2 issues (or perhaps my mind is completely scrambled, tell me...): 1st: the output of [bang~] is limited by the default block size (64 samples). I understand why it works like that - the

Re: [PD] testing some 0.48.0 GUI updates

2017-07-18 Thread Pierre Guillot
Thank a lot! In the help browser of the previous version, double clicking on a folder opens the native OS window of the folder, it was really useful. I'm on MacOS 10.12.5 Cheers, Pierre ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and

Re: [PD] testing some 0.48.0 GUI updates

2017-07-18 Thread Pierre Guillot
I don't know but I think it's related to the blink effect (like if the window disappears and reappears). Do you want me to send you a video (a GIF on github)? 2017-07-18 16:41 GMT+02:00 Dan Wilcox : > That should still be working... Maybe single click is grabbing it? > > On

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Max
On 2017년 07월 18일 16:22, Dan Wilcox wrote: On Jul 18, 2017, at 3:56 PM, Max

Re: [PD] testing some 0.48.0 GUI updates

2017-07-18 Thread Dan Wilcox
That should still be working... Maybe single click is grabbing it? > On Jul 18, 2017, at 4:40 PM, Pierre Guillot wrote: > > Thank a lot! > In the help browser of the previous version, double clicking on a folder > opens the native OS window of the folder, it was

[PD] your favorite key:value data structure?

2017-07-18 Thread Ali Momeni
Hello all, I'm looking for something analogous to the Max "coll" object, or a python dictionary, or anything with key value pairs. I'm aware of the 'cyclone' and its 'coll' object. i'm wondering if there is a pd-vanilla friendly alternative to this 3rd party external. any hints? thanks in

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Dan Wilcox
> On Jul 18, 2017, at 5:14 PM, Max wrote: > > On 2017년 07월 18일 16:22, Dan Wilcox wrote: >>> On Jul 18, 2017, at 3:56 PM, Max >> 18일 15:04, Dan Wilcox wrote: >>> i did another make and surprise! it doesn't run any more. >>>

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Max
On 2017년 07월 18일 17:53, Dan Wilcox wrote: I would do a rebuild with debug enabled and then run it through gdb to see where the crash is happening: make clean make: *** No rule to make target 'clean'. Stop. ./configure --enable-debug --enable-jack make cd bin gdb ./pd Starting program:

Re: [PD] DSP cycle - block size & overlapping

2017-07-18 Thread Christof Ressi
Hi, 1) unfortunately, all objects using clocks won't work correctly for block sizes smaller than 64, for the very reasons you already mentioned. a possible workaround is to send bangs from the parent canvas. there you can use a fast [metro] and sync it with [bang~]. 2) again, this is a clock

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Dan Wilcox
> On Jul 18, 2017, at 6:20 PM, Max wrote: > > On 2017년 07월 18일 17:53, Dan Wilcox wrote: >> I would do a rebuild with debug enabled and then run it through gdb to see >> where the crash is happening: >> make clean > make: *** No rule to make target 'clean'. Stop.

Re: [PD] DSP cycle - block size & overlapping

2017-07-18 Thread Pierre Guillot
Hi Christof, 1) So I guess it should be documented. Can you explain the workaround. The idea would be for example to generate a bang every cycles of 32 samples. 2) In fact, with [block~ 64 2 1], I don't expect to have two blocks of 32 samples but 2 blocks of 64 samples (shifted by 32 samples).

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Jonathan Wilkes via Pd-list
Variable number of keys of arbitrarily typed values, or set number of keys with set value types? -Jonathan From: Ali Momeni To: Pd-List Sent: Tuesday, July 18, 2017 1:09 PM Subject: [PD] your favorite key:value data structure? Hello all,

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Ali Momeni
Hello Jonathan, Thanks for your reply. I'm not quite sure what you mean. What pd-vanilla object do you use to implement "Variable number of keys of arbitrarily typed values" or "set number of keys with set value types"? I should add that I'm interested ultimately in a data structure that I can

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Miller Puckette
I think you can do this with "text", using "search" to find the line number containing the key and then "get". cheers Miller On Tue, Jul 18, 2017 at 01:20:46PM -0400, Ali Momeni wrote: > Hello Jonathan, > > Thanks for your reply. > I'm not quite sure what you mean. > > What pd-vanilla object

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Alexandre Torres Porres
As long as we're at it, what are the difference between [text] and [cyclone/coll] and where do they do the same thing? Also, it seems [coll] is deprecated in Max, they have a new object named [dict], which might be the "python like dictionary" kind of thing, and this is what Max suggests using

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Miller Puckette
> > My suggestion would be to start with the more expressive vanilla object-- > [text]-- and see > if it fulfills your needs. Keep in mind though that it is at core not a > key/value store but instead > a 2-dimensional array of atoms. E.g., you can decide that the first item in > each line

Re: [PD] Macbook Air Errors with 0.48 Test 1

2017-07-18 Thread Miller Puckette
Really 10.2.5? Not 10.5? I've tested on 10.6. I ues I'd better try an earlier one :) M On Tue, Jul 18, 2017 at 02:39:06PM -0400, me.grimm wrote: > Hello, > > So I have a student with a Macbook Air. Pd 0.47.1 that she downloaded hangs > and quits as detailed here: >

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Jonathan Wilkes via Pd-list
> Hello Jonathan, > Thanks for your reply. > I'm not quite sure what you mean. > What pd-vanilla object do you use to implement "Variable number of keys of > arbitrarily typed values" [text], [coll], etc. > or "set number of keys with set value types"?data structures The benefit of the

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread IOhannes m zmölnig
On 07/16/2017 11:38 PM, Miller Puckette wrote: > So those lines were present ina "good" version, then gone in a "slightly > bad" one, then got reinstated and made things worse than before. They > must be interacting with sonething else, but I don't know what. i checked and it seems that the

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Max
On 2017년 07월 18일 18:42, Dan Wilcox wrote: On Jul 18, 2017, at 6:20 PM, Max > wrote: make clean make: *** No rule to make target 'clean'. Stop. That means the the makefiles aren't generated. If so, you need to run to generate

[PD] Macbook Air Errors with 0.48 Test 1

2017-07-18 Thread me.grimm
Hello, So I have a student with a Macbook Air. Pd 0.47.1 that she downloaded hangs and quits as detailed here: https://lists.puredata.info/pipermail/pd-list/2016-12/117154.html then miller said he maybe fixed? https://lists.puredata.info/pipermail/pd-list/2016-12/117157.html So I just tried the

[PD] expr update for 0.48

2017-07-18 Thread Alexandre Torres Porres
Howdy Shahrokh, Miller and pd-list, the release notes of 0.48 mention this: "The expr family (expr, expr~, fexpr~) got an update from Shahrokh Yadegari. I'm not sure when this first came about, but expr now can access "variable" objects as variables inside expressions. Expressions using "if" skip

Re: [PD] Macbook Air Errors with 0.48 Test 1

2017-07-18 Thread Simon Iten
sierra indicates 10.12 https://en.wikipedia.org/wiki/MacOS_Sierra > On 18 Jul 2017, at 21:55, Miller Puckette wrote: > > Really 10.2.5? Not 10.5? > > I've tested on 10.6. I ues I'd better try an earlier one :) > > M > > On

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread IOhannes m zmölnig
On 07/18/2017 06:20 PM, Max wrote: > (gdb) watchdog: signaling pd... when running Pd in a debugger, you should always turn off realtime (that is: run with "-nrt") gfamrds IOhannes signature.asc Description: OpenPGP digital signature ___

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread IOhannes m zmölnig
On 07/18/2017 11:20 PM, IOhannes m zmölnig wrote: > On 07/16/2017 11:38 PM, Miller Puckette wrote: >> So those lines were present ina "good" version, then gone in a "slightly >> bad" one, then got reinstated and made things worse than before. They >> must be interacting with sonething else, but I

Re: [PD] Relationship between constant-Q and FFT - can you do it in vanilla?

2017-07-18 Thread Thomas Grill
Btw., just committed the solution to github, additionally implementing the mel frequency scale. https://github.com/g/spect_scaled Looking forward to contributions. best, Thomas -- Thomas Grill http://g.org > Am 13.07.2017 um 02:00 schrieb Thomas Grill : > > Hi, >

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Ali Momeni
Thanks for clarifying Alexandre. I would like a pure Vanilla solution because I need to run my application on a raspberry pi, an iOS device, and Android, and in the browser. I'll make do with the 'text' object for now unless there is an obvious alternative (or a way to use 'struct' with 'keys').

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Alexandre Torres Porres
2017-07-18 17:45 GMT-03:00 Ali Momeni : > > My understanding is that 'coll' is NOT a part of vanilla, but rather a > part of 'cyclone', not maintained by Miller. Since I'm looking for a pure > Vanilla solution, this is not a good choice. right? > Yep, [coll] is an external

Re: [PD] [PD-announce] pd 0.48-0test1 released

2017-07-18 Thread Dan Wilcox
Relatedly, I saw a similar issue using the buggy Tk 8.5.9 included with macOS. The issue went away using either 8.4 or a newer 8.6. In that case, it was the audio dialog opening in a slightly lower position each time. > On Jul 18, 2017, at 11:21 PM, pd-list-requ...@lists.iem.at wrote: > >

Re: [PD] DSP cycle - block size & overlapping

2017-07-18 Thread Christof Ressi
1) the question I just asked myself is, how would you use these bangs? since all clock timeouts will still be handled every 64 samples I can't think of any real applications... 2) in your case, the blocks do have 64 samples, it's just that it's two times the same block instead of two blocks 32

Re: [PD] your favorite key:value data structure?

2017-07-18 Thread Ali Momeni
Thanks everyone, this is all very helpful. "text": Great. Can use search, works fine. "coll": My understanding is that 'coll' is NOT a part of vanilla, but rather a part of 'cyclone', not maintained by Miller. Since I'm looking for a pure Vanilla solution, this is not a good choice. right?

[PD] Pd 0.48.0.test1 fails to create all the gop objects of an existing patch

2017-07-18 Thread David Adams
I uninstalled 0.47.1 and installed 0.48.0.test1 and tried to open a file of seven placed abstractions but only two appear as the expected gop objects. (the dark green canvas was moved manually). Screenshot 1 Uninstalled 0.48 and reinstalled 0.47.1 and the file opens correctly. Screenshot 2 Cheers