From 8c1d53dbb2c5bd6c6dc6c718ef51c11254bd5833 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Juha=20Vehvil=C3=A4inen?= <jusu@users.sourceforge.net>
Date: Sat, 31 Aug 2002 08:23:25 +0000
Subject: *** empty log message ***

svn path=/trunk/Framestein/; revision=101
---
 Patches/00 example-basics.pd | 39 ---------------------------------------
 Patches/00.example-basics.pd | 39 +++++++++++++++++++++++++++++++++++++++
 Patches/makefile             |  4 ++--
 Patches/vplugin.pd           |  4 ++--
 4 files changed, 43 insertions(+), 43 deletions(-)
 delete mode 100644 Patches/00 example-basics.pd
 create mode 100644 Patches/00.example-basics.pd

(limited to 'Patches')

diff --git a/Patches/00 example-basics.pd b/Patches/00 example-basics.pd
deleted file mode 100644
index dba54df..0000000
--- a/Patches/00 example-basics.pd	
+++ /dev/null
@@ -1,39 +0,0 @@
-#N canvas 228 3 650 663 12;
-#X obj 5 31 fs.main;
-#X msg 5 7 6001;
-#X msg 56 7 reset;
-#X text 32 103 fs.main connects pure data and Framestein. Only one
-at a time!;
-#X text 33 143 1st inlet: re-establish connection to given port number
-;
-#X text 33 159 2nd inlet: "reset" will re-create all fs.*-objects;
-#X obj 36 206 fs.frame;
-#X text 120 273 some commands are listed here;
-#X obj 358 273 fs.fx;
-#X text 120 304 1st outlet: fs.frame ID. Connect this to other fs.*-objects
-\, like fs.copy \, fs.info \, fs.event etc.;
-#X text 120 344 2nd outlet: reports mouse movement in the frame when
-mousetrack_1 is set. See example-docking.pd!;
-#X text 119 384 3rd outlet: report the window position when docked
-\, see example-docking2.pd!;
-#X obj 45 442 fs.copy;
-#X text 121 442 -- connect two fs.frames to copy pixels by built-in
-copy operations \, plugins or photoshop-filters.;
-#X text 122 486 1st inlet: connect the first outlet of fs.frame here.
-;
-#X text 122 505 2nd inlet: name of the copy operation \, or other parameter.
-See inside fs.copy for list of built-ins. See example-plugins.pd and
-example-photoshopfilters.pd.;
-#X text 123 557 1st outlet: connect to the fs.frame to copy to.;
-#X text 31 70 The central objects to get started with:;
-#X text 119 253 1st inlet: for a list of commands \, look inside the
-patch.;
-#X obj 344 320 fs.info;
-#X obj 416 320 fs.event;
-#X text 120 205 -- load images and video \, perform effects \, run
-plugins \, photoshop-filters \, interaction and more ...;
-#X text 49 602 Have fun! (close this patch before loading another)
-;
-#X connect 1 0 0 0;
-#X connect 1 0 2 0;
-#X connect 2 0 0 1;
diff --git a/Patches/00.example-basics.pd b/Patches/00.example-basics.pd
new file mode 100644
index 0000000..dba54df
--- /dev/null
+++ b/Patches/00.example-basics.pd
@@ -0,0 +1,39 @@
+#N canvas 228 3 650 663 12;
+#X obj 5 31 fs.main;
+#X msg 5 7 6001;
+#X msg 56 7 reset;
+#X text 32 103 fs.main connects pure data and Framestein. Only one
+at a time!;
+#X text 33 143 1st inlet: re-establish connection to given port number
+;
+#X text 33 159 2nd inlet: "reset" will re-create all fs.*-objects;
+#X obj 36 206 fs.frame;
+#X text 120 273 some commands are listed here;
+#X obj 358 273 fs.fx;
+#X text 120 304 1st outlet: fs.frame ID. Connect this to other fs.*-objects
+\, like fs.copy \, fs.info \, fs.event etc.;
+#X text 120 344 2nd outlet: reports mouse movement in the frame when
+mousetrack_1 is set. See example-docking.pd!;
+#X text 119 384 3rd outlet: report the window position when docked
+\, see example-docking2.pd!;
+#X obj 45 442 fs.copy;
+#X text 121 442 -- connect two fs.frames to copy pixels by built-in
+copy operations \, plugins or photoshop-filters.;
+#X text 122 486 1st inlet: connect the first outlet of fs.frame here.
+;
+#X text 122 505 2nd inlet: name of the copy operation \, or other parameter.
+See inside fs.copy for list of built-ins. See example-plugins.pd and
+example-photoshopfilters.pd.;
+#X text 123 557 1st outlet: connect to the fs.frame to copy to.;
+#X text 31 70 The central objects to get started with:;
+#X text 119 253 1st inlet: for a list of commands \, look inside the
+patch.;
+#X obj 344 320 fs.info;
+#X obj 416 320 fs.event;
+#X text 120 205 -- load images and video \, perform effects \, run
+plugins \, photoshop-filters \, interaction and more ...;
+#X text 49 602 Have fun! (close this patch before loading another)
+;
+#X connect 1 0 0 0;
+#X connect 1 0 2 0;
+#X connect 2 0 0 1;
diff --git a/Patches/makefile b/Patches/makefile
index 55d610f..e27df95 100644
--- a/Patches/makefile
+++ b/Patches/makefile
@@ -4,8 +4,8 @@ all: vframe vsig vsnapshot vrgb vcolor vframeread vdrawarray arraysize buildstr
 #
 # note: maximum optimization (/Ox) causes crashes with plugins..
 
-F = /DNT /DPD /LD /Gd /GD /Ogitb1 /Gs /I\system\pd\src /I..\Plugins
-L = \system\pdt17\bin\pd.lib
+F = /DNT /DPD /LD /Gd /GD /Ogitb1 /Gs /Ic:\pd\src /I..\Plugins
+L = c:\pd\bin\pd.lib
 
 vframe:
 	cl vframe.c $(F) /link /export:vframe_setup $(L) user32.lib
diff --git a/Patches/vplugin.pd b/Patches/vplugin.pd
index 5582846..e3177bf 100644
--- a/Patches/vplugin.pd
+++ b/Patches/vplugin.pd
@@ -1,9 +1,9 @@
-#N canvas 0 0 466 316 12;
+#N canvas 0 0 468 318 12;
 #X obj 70 26 inlet;
 #X obj 70 272 outlet;
 #X text 125 200 correct this path to your installation;
 #X obj 70 142 l2s;
-#X obj 70 172 makefilename g:/fsrel/framestein/plugins/%s;
+#X obj 70 172 makefilename e:/fsrel/framestein/plugins/%s;
 #X connect 0 0 3 0;
 #X connect 3 0 4 0;
 #X connect 4 0 1 0;
-- 
cgit v1.2.1