Re: [PD] how to write different types to [text]

2022-03-29 Thread Christof Ressi
On 28.03.2022 22:43, Roman Haefeli wrote: ``` eins; zwei; drei, vier; fuenf; ``` [text size] returns 5. [2(-[text get] returns 'symbol drei'. The message after that is accessed with [3(-[text get]. Wow, you're right of course! *big facepalm* In all these years I never realized that comma sep

Re: [PD] how to write different types to [text]

2022-03-29 Thread Christof Ressi
You cannot _create_ lists ending with a comma, however. I propose a 'type' inlet in [text set] and [text insert], just for completeness and consistency. [11 12 13( [2( [1( <- type | / / [text insert ] with above text buffer example would create: 1 2 3, foo bar baz, 11 12 13, 5

Re: [PD] how to write different types to [text]

2022-03-29 Thread Christof Ressi
Another side note: it would be nice if a negative field count for [text get] would output all fields up to the next seperator (comma or semi). I agree and it does so already. I don't think so: 1 2 3 a b c d e f; [0 3 -1( -> [text get] gives me: "text get: bad field count (-1)"

Re: [PD] how to write different types to [text]

2022-03-29 Thread Roman Haefeli
On Tue, 2022-03-29 at 10:55 +0200, Christof Ressi wrote: > > How am I supposed to know that > > 1 2 3, a b c, foo bar baz; > actually counts as 3 "lines"? > > I think a more proper term would be "message". I think the > documentation has to be improved. @porres to the rescue!! :-) +1 Roman s

Re: [PD] [PD-announce] Pd 0.52-2 released

2022-03-29 Thread Alexandre Torres Porres
Em seg., 28 de mar. de 2022 às 07:17, Dan Wilcox escreveu: > Howdy Miller, > > the macOS 10.10+ build is working fine and supports both x86_64 & arm64. I > think you can remove the link to my previous 0.52-1 arm64-only build on the > download page. > Great to know that, so let me see if I get it

Re: [PD] [PD-announce] Pd 0.52-2 released

2022-03-29 Thread Christof Ressi
If you have an apple silicon, it'll run under the hood the arm code and then it will only find and load 'arm64' externals? From my understanding, yes. For that reason, I guess it's not a good idea to provide universal binaries at this point and we should rather ship seperate binaries. Once most

Re: [PD] more features for [file] (Get directory of current patch)

2022-03-29 Thread Alexandre Torres Porres
Em sáb., 26 de mar. de 2022 às 03:46, IOhannes m zmölnig escreveu: > > yeah, that's great. I have a n external that does that [slice] > > yeah. and zexy has [niagara] that does this. > my git history only reaches back to 2002, and it was there back then. > > but i was really talking about [list s

Re: [PD] [PD-announce] Pd 0.52-2 released

2022-03-29 Thread Philip Stone via Pd-list
--- An HTML attachment was scrubbed... URL: <http://lists.puredata.info/pipermail/pd-list/attachments/20220329/31ea5abf/attachment-0001.htm> -- Message: 3 Date: Tue, 29 Mar 2022 16:10:31 +0200 From: Christof Ressi To: pd-list@lists.iem.at Subject: Re: [PD] [PD-an

Re: [PD] [PD-announce] Pd 0.52-2 released

2022-03-29 Thread Dan Wilcox
it works the same as *any* existing application that is compiled for multiple architectures: it uses the current system architecture but default. If you want, you can force an architecture via using "arch" on the command line: https://medium.com/swlh/run-x86-terminal-apps-like-homebrew-on-your-n

Re: [PD] [PD-announce] Pd 0.52-2 released

2022-03-29 Thread Dan Wilcox
Ah right, as Edwin wrote, you can also right-click on the application, choose Get Info, the check Open in Rosetta to force running as x86_64 on M1 macs. However, as Phil notes, this means Pd is running under arch emulation and will be slower, so this is more of a temporary workaround until you c

Re: [PD] [PD-announce] Pd 0.52-2 released

2022-03-29 Thread Alexandre Torres Porres
Em ter., 29 de mar. de 2022 às 11:12, Christof Ressi escreveu: > From my understanding, yes. For that reason, I guess it's not a good idea > to provide universal binaries at this point and we should rather ship > seperate binaries. Once most externals are available as universal binaries, > we mig