From 68c0fbeb0fbcb76e105dbf34cf9b6c4051364972 Mon Sep 17 00:00:00 2001 From: Rishabh606 Date: Sat, 24 Mar 2018 16:01:12 +0530 Subject: [PATCH 1/2] Update README Issue #426 --- README.md | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 6ee59eef0..2d94f7d94 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ maintainers: [Mailing List](http://disis.music.vt.edu/cgi-bin/mailman/listinfo/l2ork-dev) * [One Paragraph Overview](#one-paragraph-overview) -* [Flavors of Pure Data](#flavors-of-pure-data) * [Three Paragraph Overview](#three-paragraph-overview) * [Goals](#goals) +* [Relationship of Purr Data to Pure Data](#relationship-of-purr-data-to-pure-data) * [Downloads](#downloads) * [Build Guide](#build-guide) * [Gnu/Linux](#linux) @@ -32,19 +32,7 @@ create software graphically by drawing diagrams instead of writing lines of code. These diagrams show how data flows through the software, displaying on the screen what text-based languages require you to piece together in your mind. -### Flavors of Pure Data -There are three maintained distributions of Pure Data: - -1. Purr Data. This is the 2.0 version of Pd-l2ork. It ships with lots of - external libraries and uses a modern GUI written using HTML5. -2. Pd-L2Ork 1.0, the version used by Ivica Bukvic for his laptop orchestra. - Pd-l2ork 1.0 uses tcl/tk (and tkpath) for the GUI. You can find it - [here](http://l2ork.music.vt.edu/main/make-your-own-l2ork/software/) -3. Pure Data "Vanilla". Miller Puckette's personal version which he hosts on - his website and maintains. It doesn't come with external libraries - pre-installed, but it does include an interface you can use to search - and install external libraries maintained and packaged by other developers. ### Three Paragraph Overview @@ -78,6 +66,20 @@ Pd-L2ork has the following goals: documentation. We like documentation, so it follows that we like consistent interfaces. +### Relationship of Purr Data to Pure Data + +There are three maintained distributions of Pure Data: + +1. Purr Data. This is the 2.0 version of Pd-l2ork. It ships with lots of + external libraries and uses a modern GUI written using HTML5. +2. Pd-L2Ork 1.0, the version used by Ivica Bukvic for his laptop orchestra. + Pd-l2ork 1.0 uses tcl/tk (and tkpath) for the GUI. You can find it + [here](http://l2ork.music.vt.edu/main/make-your-own-l2ork/software/) +3. Pure Data "Vanilla". Miller Puckette's personal version which he hosts on + his website and maintains. It doesn't come with external libraries + pre-installed, but it does include an interface you can use to search + and install external libraries maintained and packaged by other developers. + ### Downloads You can download a precompiled installer for Gnu/Linux, Windows, or OSX @@ -601,4 +603,4 @@ primitives (numbers, strings, and arrays). For the arrays, Javascript's array notation is used. This is a highly idiosyncratic, quick-and-dirty approach. But the point is that the idiosyncracy exists in a single file of the source code, and can be easily made more modular (or replaced entirely by something -else) without affecting _any_ of the rest of the C code. +else) without affecting _any_ of the rest of the C code. \ No newline at end of file -- GitLab From 5d25e09744bb9dbdb8ba8e82e641a25c42bbd0ab Mon Sep 17 00:00:00 2001 From: Rishabh606 Date: Sat, 24 Mar 2018 16:09:54 +0530 Subject: [PATCH 2/2] Now displays legacy Number --- pd/doc/about/about.pd | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pd/doc/about/about.pd b/pd/doc/about/about.pd index 367d9a7cb..fc27b9c27 100644 --- a/pd/doc/about/about.pd +++ b/pd/doc/about/about.pd @@ -1,14 +1,16 @@ #N struct cat float x float y; -#N canvas 323 210 525 457 12; -#N canvas 367 202 450 346 version 0; +#N canvas 1096 235 525 480 12; +#N canvas 1297 252 450 346 version 1; #X msg 61 51 l2ork_version; #X obj 61 76 pdinfo; #X obj 61 26 loadbang; #X obj 61 101 makefilename Pd-l2ork-%s; #X msg 61 126 label \$1; #X obj 61 151 s \$0-about_text; +#X obj 305 61 print legacy_version; #X connect 0 0 1 0; #X connect 1 0 3 0; +#X connect 1 0 6 0; #X connect 2 0 0 0; #X connect 3 0 4 0; #X connect 4 0 5 0; @@ -33,8 +35,8 @@ version of Pd-l2ork. An introduction to Purr Data can be found at: #X text 18 360 Reference documentation for Pd lives in:; #X obj 18 378 pddp/pddplink @pd_help/../1.manual/index.htm -text doc/1.manual/index.htm ; -#X obj 36 21 cnv 15 432 33 empty \$0-about_text Pd-l2ork 20 12 0 18 --261139 -1 0; +#X obj 36 21 cnv 15 432 33 empty \$0-about_text Pd-l2ork-2.4.9\ 20180131-rev.d59b08eb +20 12 0 18 -261139 -1 0; #N canvas 430 372 450 323 cat 0; #X obj 16 180 draw sprite ./cat; #X obj 16 21 struct cat float x float y; -- GitLab