Thread: [Tuxpaint-devel] Rails plugin release
An award-winning drawing program for children of all ages
Brought to you by:
wkendrick
|
From: foo-script <foo...@o2...> - 2008-07-13 19:55:10
|
Due to Pere Pujal i Carabantes idea I created "Rails" plugin. Available at: http://szn.republika.pl/tuxpaint-magic-rails.tar.gz Comments, ideas, bugs(?) are invited. Enjoy! :) Best, Adam |
|
From: Bill K. <nb...@so...> - 2008-07-14 00:15:52
|
On Sun, Jul 13, 2008 at 09:55:14PM +0200, foo-script wrote: > Due to Pere Pujal i Carabantes idea I created "Rails" plugin. > > Available at: http://szn.republika.pl/tuxpaint-magic-rails.tar.gz > > Comments, ideas, bugs(?) are invited. So far I get a segmentation fault when I try to run it. I'll see if I can debug. :) -- -bill! "Tux Paint" - free children's drawing software for Windows / Mac OS X / Linux! Download it today! http://www.tuxpaint.org/ |
|
From: Bill K. <nb...@so...> - 2008-07-14 00:42:14
|
On Sun, Jul 13, 2008 at 05:15:56PM -0700, Bill Kendrick wrote: > > So far I get a segmentation fault when I try to run it. > I'll see if I can debug. :) Found it. switchin() and switchout() were lacking 'mode' args. I've corrected that, changed the description text a little, and committed it to CVS. Unfortunately, so far, it doesn't seem to _work_ very well, but you can work on that next. :) Thanks, -- -bill! "Tux Paint" - free children's drawing software for Windows / Mac OS X / Linux! Download it today! http://www.tuxpaint.org/ |
|
From: foo-script <foo...@o2...> - 2008-07-14 01:55:05
|
Dnia 14 lipca 2008 2:42 Bill Kendrick <nb...@so...> napisał(a): > Unfortunately, so far, it doesn't seem to _work_ very well, but > you can work on that next. :) why? BTW: A short howto: double click same area: insert an image or rotate existing one. When you want to make a "crossroad" just set all the rails' directions correctly and then click the area between. |
|
From: Bill K. <nb...@so...> - 2008-07-14 06:55:43
|
On Mon, Jul 14, 2008 at 03:55:11AM +0200, foo-script wrote: > Dnia 14 lipca 2008 2:42 Bill Kendrick <nb...@so...> napisa??(a): > > > Unfortunately, so far, it doesn't seem to _work_ very well, but > > you can work on that next. :) > > why? Oh, well, maybe I don't understand how it's SUPPOSED to work. As I clicked and dragged, it seemed to draw randomly-changing directions of track. > BTW: A short howto: > > double click same area: insert an image or rotate existing one. > > When you want to make a "crossroad" just set all the rails' directions correctly and then click the area between. Oh, er. Ok, I guess I'll need to give it another go. I don't think I like the idea of double-clicking, but we'll see how it works. Thanks, -- -bill! "Tux Paint" - free children's drawing software for Windows / Mac OS X / Linux! Download it today! http://www.tuxpaint.org/ |
|
From: Bill K. <nb...@so...> - 2008-07-14 07:10:48
|
On Sun, Jul 13, 2008 at 11:55:51PM -0700, Bill Kendrick wrote:
> Oh, well, maybe I don't understand how it's SUPPOSED to work.
> As I clicked and dragged, it seemed to draw randomly-changing directions
> of track.
I see what's going on. I figured it'd be a paint kind of tool, like
Bricks. But I guess what's happening is as I clicked and dragged, it
was changing the orientation of the rail (North/South to East/West and back)
multiple times, very quickly, as I dragged across its cell.
> > BTW: A short howto:
> >
> > double click same area: insert an image or rotate existing one.
> >
> > When you want to make a "crossroad" just set all the rails' directions correctly and then click the area between.
I'm finding the crossroad feature _very_ difficult to use. I got it to
work once, so far. (I _am_ in bed, and using a laptop with a trackpad,
but still... not a bad way to simulate a young kid!)
I'd suggest re-thinking the UI. Have it draw tracks as you drag around.
If your mouse is moving top-to-bottom (north to south, so to speak),
it draws up-and-down rails. If you suddenly start going sideways, it
draws a curved track at the bottom of the up-down tracks, and then
starts painting left-right tracks.
If you ever double-back over your previous tracks, that's when the
crossroads effect would take place.
I haven't looked closely at your code yet, but I think it'd be a simple
matter of setting two (or more) of four bits/flags for each cell, one
for each of the cardinal directions: up, down, left, right.
If your mouse comes into a cell from the right, and leaves it to the left,
then the left and right bits get set. When it goes to (re)draw the
piece of track in that cell, it should draw a left-right track.
I think possibilities of what kind of rail to draw would boil down to simply:
Bits Shape
LR --
--
UD ||
||
D R /-
||
DL -\
||
U R ||
\-
U L ||
-/
And when you cross over:
UDLR ++
++
DLR =\/=
||
U LR ||
=/\=
UDL ||
-/|
-\|
||
UD R ||
|\-
|/-
||
Whew!
--
-bill!
"Tux Paint" - free children's drawing software for Windows / Mac OS X / Linux!
Download it today! http://www.tuxpaint.org/
|
|
From: Begasus <Be...@sk...> - 2008-07-14 09:11:38
|
Trying to compile the rail tool on gcc 2.95 (BeOS) fails on line 162 and line 260 (probly due to the use of the _Bool function). The other warnings are something shown in the BlackAndWhite tool also. Greetings, Luc /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:22: warning: no previous prototype for `rails_api_version' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:27: warning: no previous prototype for `rails_modes' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_modes': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:26: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:26: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:32: warning: no previous prototype for `rails_set_color' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_set_color': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused parameter `r' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused parameter `g' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused parameter `b' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:36: warning: no previous prototype for `rails_init' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:60: warning: no previous prototype for `rails_get_tool_count' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_get_tool_count': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:59: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:65: warning: no previous prototype for `rails_get_icon' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_get_icon': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:64: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: no previous prototype for `rails_get_name' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_get_name': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: no previous prototype for `rails_get_description' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_get_description': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused parameter `mode' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: no previous prototype for `rails_requires_colors' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_requires_colors': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:83: warning: no previous prototype for `rails_release' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_release': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:80: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:80: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:81: warning: unused parameter `canvas' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:81: warning: unused parameter `snapshot' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused parameter `x' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused parameter `y' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused parameter `update_rect' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:87: warning: no previous prototype for `rails_shutdown' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_shutdown': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:86: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:104: warning: no previous prototype for `rails_switchin' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_switchin': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused parameter `mode' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:117: warning: no previous prototype for `rails_switchout' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_switchout': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused parameter `mode' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused parameter `canvas' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:134: warning: no previous prototype for `rails_get_segment' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:146: warning: no previous prototype for `rails_extract_coords_from_segment' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:162: parse error before `_Bool' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:164: warning: function declaration isn't a prototype /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_rotate': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: `ptr' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: (Each undeclared identifier is reported only once /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: for each function it appears in.) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:168: `direction' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:170: `dest' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:172: `src' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:186: warning: no previous prototype for `rails_click' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_click': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:183: warning: unused parameter `mode' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_select_image': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:198: warning: comparison between signed and unsigned /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_draw': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:260: `_Bool' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:260: parse error before `use_temp' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:262: `use_temp' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:254: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:254: warning: unused parameter `last' make: *** [magic/rails.so] Error 1 |
|
From: foo-script <foo...@o2...> - 2008-07-14 12:43:04
|
Luc, what version of Rails are you using? Primary (from szn.republika.pl), or CVS? _Bool is a cstdlib data type, it came with C99, so your compiler should recognize this type. For sure, I will change it to Uint8. Newest version at: http://szn.republika.pl/tuxpaint-magic-rails.tar.gz This release throws no warnings about comparison between signed and unsigned types. I've also written about idea's author. Best, Adam Dnia 14 lipca 2008 13:07 Begasus <Be...@sk...> napisał(a): > Trying to compile the rail tool on gcc 2.95 (BeOS) fails on line 162 and > line 260 (probly due to the use of the _Bool function). > The other warnings are something shown in the BlackAndWhite tool also. > > Greetings, > > Luc > > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:22: warning: no > previous prototype for `rails_api_version' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:27: warning: no > previous prototype for `rails_modes' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_modes': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:26: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:26: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:32: warning: no > previous prototype for `rails_set_color' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_set_color': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused > parameter `r' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused > parameter `g' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused > parameter `b' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:36: warning: no > previous prototype for `rails_init' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:60: warning: no > previous prototype for `rails_get_tool_count' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_get_tool_count': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:59: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:65: warning: no > previous prototype for `rails_get_icon' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_get_icon': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:64: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: no > previous prototype for `rails_get_name' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_get_name': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: no > previous prototype for `rails_get_description' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_get_description': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused > parameter `mode' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: no > previous prototype for `rails_requires_colors' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_requires_colors': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:83: warning: no > previous prototype for `rails_release' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_release': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:80: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:80: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:81: warning: unused > parameter `canvas' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:81: warning: unused > parameter `snapshot' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused > parameter `x' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused > parameter `y' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused > parameter `update_rect' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:87: warning: no > previous prototype for `rails_shutdown' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_shutdown': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:86: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:104: warning: no > previous prototype for `rails_switchin' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_switchin': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused > parameter `mode' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:117: warning: no > previous prototype for `rails_switchout' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_switchout': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused > parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused > parameter `mode' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused > parameter `canvas' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:134: warning: no > previous prototype for `rails_get_segment' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:146: warning: no > previous prototype for `rails_extract_coords_from_segment' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:162: parse error > before `_Bool' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:164: warning: function > declaration isn't a prototype > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_rotate': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: `ptr' undeclared > (first use in this function) > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: (Each undeclared > identifier is reported only once > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: for each function > it appears in.) > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:168: `direction' > undeclared (first use in this function) > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:170: `dest' undeclared > (first use in this function) > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:172: `src' undeclared > (first use in this function) > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:186: warning: no > previous prototype for `rails_click' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_click': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:183: warning: unused > parameter `mode' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_select_image': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:198: warning: > comparison between signed and unsigned > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function > `rails_draw': > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:260: `_Bool' > undeclared (first use in this function) > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:260: parse error > before `use_temp' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:262: `use_temp' > undeclared (first use in this function) > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:254: warning: unused > parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:254: warning: unused > parameter `last' > make: *** [magic/rails.so] Error 1 > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Tuxpaint-devel mailing list > Tux...@li... > https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel > |
|
From: Bill K. <nb...@so...> - 2008-07-14 20:22:23
|
On Mon, Jul 14, 2008 at 02:43:06PM +0200, foo-script wrote: > > Luc, what version of Rails are you using? Primary (from szn.republika.pl), or CVS? > > _Bool is a cstdlib data type, it came with C99, so your compiler should recognize this type. Ah, but he's on BeOS, so he might not have a C99 compiler! > For sure, I will change it to Uint8. > > Newest version at: http://szn.republika.pl/tuxpaint-magic-rails.tar.gz Please make changes in CVS from now on, thanks! -bill! |
|
From: Begasus <Be...@sk...> - 2008-07-14 21:07:30
|
On 2008-07-14 at 20:22:26 [+0000], Bill Kendrick <nb...@so...> wrote: > On Mon, Jul 14, 2008 at 02:43:06PM +0200, foo-script wrote: > > > > Luc, what version of Rails are you using? Primary (from > > szn.republika.pl), or CVS? > > Was running cvs version btw. > > _Bool is a cstdlib data type, it came with C99, so your compiler should > > recognize this type. > > Ah, but he's on BeOS, so he might not have a C99 compiler! > Running gcc 2.95.3 on BeOS platform (there is a gcc 3.4.3 version around but it's not a very clean one and has no real setup files for it ... installing is a hasstle to say the least). > > > For sure, I will change it to Uint8. > > > > Newest version at: http://szn.republika.pl/tuxpaint-magic-rails.tar.gz > Try'd with the above link and a new cvs checkout .. both with the same errors as before. Getting lots of unused parameters also with the magic tools, don't know if it is known (can't check on linux atm - laptop is in for repair). /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:173: warning: no previous prototype for `blackAndWhite_drag' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:191: warning: no previous prototype for `blackAndWhite_click' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:208: warning: no previous prototype for `blackAndWhite_release' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c: In function `blackAndWhite_release': /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:205: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:205: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:206: warning: unused parameter `canvas' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:206: warning: unused parameter `last' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: warning: unused parameter `x' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: warning: unused parameter `y' /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: warning: unused parameter `update_rect' Most of them are reacuring in all the magic tools I think. Greets, Luc > Please make changes in CVS from now on, thanks! > > -bill! > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Tuxpaint-devel mailing list > Tux...@li... > https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel |
|
From: Bill K. <nb...@so...> - 2008-07-14 22:24:37
|
On Mon, Jul 14, 2008 at 11:03:38PM +0000, Begasus wrote: > Try'd with the above link and a new cvs checkout .. both with the same > errors as before. > Getting lots of unused parameters also with the magic tools, don't know if > it is known (can't check on linux atm - laptop is in for repair). <snip> > Most of them are reacuring in all the magic tools I think. The warnings are due to the compiler settings being bumped up a bit. The source files need to be modified a bit to shut the compiler up, but you should be able to safely ignore the warnings. Did you still get _errors_? -- -bill! "Tux Paint" - free children's drawing software for Windows / Mac OS X / Linux! Download it today! http://www.tuxpaint.org/ |
|
From: foo-script <foo...@o2...> - 2008-07-14 22:46:15
|
Dear Luc, I've just read your mail. First: all the warnings below comes from BlackAndWhite.c file (author: A. Corcoran), not rails.c All these warning are not important, I even do not see any error there. All the warning are about unused parameter. This is normal and should not terminate compilation process. You can turn it off in in Makefile. In case of any problems feel free to write to me. On the other hand: I've checked all the possibilities they could create any error and did not anything. Best, Adam Dnia 15 lipca 2008 1:03 Begasus <Be...@sk...> napisał(a): > On 2008-07-14 at 20:22:26 [+0000], Bill Kendrick wrote: > > On Mon, Jul 14, 2008 at 02:43:06PM +0200, foo-script wrote: > > > > > > Luc, what version of Rails are you using? Primary (from > > > szn.republika.pl), or CVS? > > > > > Was running cvs version btw. > > > > _Bool is a cstdlib data type, it came with C99, so your compiler should > > > recognize this type. > > > > Ah, but he's on BeOS, so he might not have a C99 compiler! > > > > Running gcc 2.95.3 on BeOS platform (there is a gcc 3.4.3 version around but > it's not a very clean one and has no real setup files for it ... installing > is a hasstle to say the least). > > > > > > For sure, I will change it to Uint8. > > > > > > Newest version at: http://szn.republika.pl/tuxpaint-magic-rails.tar.gz > > > > Try'd with the above link and a new cvs checkout .. both with the same > errors as before. > Getting lots of unused parameters also with the magic tools, don't know if > it is known (can't check on linux atm - laptop is in for repair). > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:173: warning: > no previous prototype for `blackAndWhite_drag' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:191: warning: > no previous prototype for `blackAndWhite_click' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:208: warning: > no previous prototype for `blackAndWhite_release' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c: In function > `blackAndWhite_release': > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:205: warning: > unused parameter `api' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:205: warning: > unused parameter `which' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:206: warning: > unused parameter `canvas' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:206: warning: > unused parameter `last' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: warning: > unused parameter `x' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: warning: > unused parameter `y' > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: warning: > unused parameter `update_rect' > > Most of them are reacuring in all the magic tools I think. > > Greets, > > Luc > > > Please make changes in CVS from now on, thanks! > > > > -bill! > > > > ------------------------------------------------------------------------- > > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > > Studies have shown that voting for your favorite open source project, > > along with a healthy diet, reduces your potential for chronic lameness > > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > > _______________________________________________ > > Tuxpaint-devel mailing list > > Tux...@li... > > https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Tuxpaint-devel mailing list > Tux...@li... > https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel > |
|
From: Begasus <Be...@sk...> - 2008-07-15 05:29:54
|
Hi Adam, the error that I was talking about was not in the list of parameters etc that where undeclared. Giving you the outcom of the list of rails.c (ignore the warnings) still 2 errors that jump up. 1. /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:162: parse error before `_Bool' 2. /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:260: parse error before `use_temp' Luc /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:22: warning: no previous prototype for `rails_api_version' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:27: warning: no previous prototype for `rails_modes' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_modes': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:26: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:26: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:32: warning: no previous prototype for `rails_set_color' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_set_color': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused parameter `r' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused parameter `g' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:31: warning: unused parameter `b' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:36: warning: no previous prototype for `rails_init' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:60: warning: no previous prototype for `rails_get_tool_count' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_get_tool_count': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:59: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:65: warning: no previous prototype for `rails_get_icon' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_get_icon': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:64: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: no previous prototype for `rails_get_name' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_get_name': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:74: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: no previous prototype for `rails_get_description' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_get_description': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:76: warning: unused parameter `mode' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: no previous prototype for `rails_requires_colors' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_requires_colors': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:78: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:83: warning: no previous prototype for `rails_release' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_release': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:80: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:80: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:81: warning: unused parameter `canvas' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:81: warning: unused parameter `snapshot' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused parameter `x' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused parameter `y' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:82: warning: unused parameter `update_rect' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:87: warning: no previous prototype for `rails_shutdown' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_shutdown': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:86: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:104: warning: no previous prototype for `rails_switchin' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_switchin': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:103: warning: unused parameter `mode' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:117: warning: no previous prototype for `rails_switchout' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_switchout': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused parameter `api' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused parameter `mode' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:116: warning: unused parameter `canvas' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:134: warning: no previous prototype for `rails_get_segment' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:146: warning: no previous prototype for `rails_extract_coords_from_segment' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:162: parse error before `_Bool' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:164: warning: function declaration isn't a prototype /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_rotate': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: `ptr' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: (Each undeclared identifier is reported only once /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:165: for each function it appears in.) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:168: `direction' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:170: `dest' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:172: `src' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: At top level: /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:186: warning: no previous prototype for `rails_click' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_click': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:183: warning: unused parameter `mode' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_select_image': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:198: warning: comparison between signed and unsigned /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c: In function `rails_draw': /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:260: `_Bool' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:260: parse error before `use_temp' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:262: `use_temp' undeclared (first use in this function) /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:254: warning: unused parameter `which' /boot/home/Desktop/develop/tuxpaint/magic/src/rails.c:254: warning: unused parameter `last' make: *** [magic/rails.so] Error 1 On 2008-07-14 at 22:46:21 [+0000], foo-script <foo...@o2...> wrote: > Dear Luc, > > I've just read your mail. First: all the warnings below comes from > BlackAndWhite.c file (author: A. Corcoran), not rails.c > > All these warning are not important, I even do not see any error there. > All the warning are about unused parameter. This is normal and should not > terminate compilation process. You can turn it off in in Makefile. In case > of any problems feel free to write to me. > On the other hand: I've checked all the possibilities they could create any > error and did not anything. > > Best, > Adam > > > Dnia 15 lipca 2008 1:03 Begasus <Be...@sk...> napisał(a): > > > On 2008-07-14 at 20:22:26 [+0000], Bill Kendrick wrote: > > > On Mon, Jul 14, 2008 at 02:43:06PM +0200, foo-script wrote: > > > > > > > > Luc, what version of Rails are you using? Primary (from > > > > szn.republika.pl), or CVS? > > > > > > > > Was running cvs version btw. > > > > > > _Bool is a cstdlib data type, it came with C99, so your compiler > > > > should > > > > recognize this type. > > > > > > Ah, but he's on BeOS, so he might not have a C99 compiler! > > > > > > > Running gcc 2.95.3 on BeOS platform (there is a gcc 3.4.3 version around > > but > > it's not a very clean one and has no real setup files for it ... > > installing > > is a hasstle to say the least). > > > > > > > > > For sure, I will change it to Uint8. > > > > > > > > Newest version at: http://szn.republika.pl/tuxpaint-magic-rails.tar.gz > > > > > > > Try'd with the above link and a new cvs checkout .. both with the same > > errors as before. > > Getting lots of unused parameters also with the magic tools, don't know if > > it is known (can't check on linux atm - laptop is in for repair). > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:173: > > warning: > > no previous prototype for `blackAndWhite_drag' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:191: > > warning: > > no previous prototype for `blackAndWhite_click' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:208: > > warning: > > no previous prototype for `blackAndWhite_release' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c: In function > > `blackAndWhite_release': > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:205: > > warning: > > unused parameter `api' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:205: > > warning: > > unused parameter `which' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:206: > > warning: > > unused parameter `canvas' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:206: > > warning: > > unused parameter `last' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: > > warning: > > unused parameter `x' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: > > warning: > > unused parameter `y' > > /boot/home/Desktop/develop/tuxpaint/magic/src/blackAndWhite.c:207: > > warning: > > unused parameter `update_rect' > > > > Most of them are reacuring in all the magic tools I think. > > > > Greets, > > > > Luc > > > > > Please make changes in CVS from now on, thanks! > > > > > > -bill! > > > > > > ------------------------------------------------------------------------ > > > - > > > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > > > Studies have shown that voting for your favorite open source project, > > > along with a healthy diet, reduces your potential for chronic lameness > > > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > > > _______________________________________________ > > > Tuxpaint-devel mailing list > > > Tux...@li... > > > https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel > > > > ------------------------------------------------------------------------- > > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > > Studies have shown that voting for your favorite open source project, > > along with a healthy diet, reduces your potential for chronic lameness > > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > > _______________________________________________ > > Tuxpaint-devel mailing list > > Tux...@li... > > https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel > > > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Tuxpaint-devel mailing list > Tux...@li... > https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel |
|
From: Bill K. <nb...@so...> - 2008-07-30 19:43:38
|
Hi Adam - I haven't seen any updates from you recently. :( (I did get the private email about translating things, but that's not really related to GSOC :) ) What have you been working on? Thx, -bill! On Sun, Jul 13, 2008 at 09:55:14PM +0200, foo-script wrote: > Due to Pere Pujal i Carabantes idea I created "Rails" plugin. > > Available at: http://szn.republika.pl/tuxpaint-magic-rails.tar.gz > > Comments, ideas, bugs(?) are invited. > > Enjoy! :) > > > Best, > Adam > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Tuxpaint-devel mailing list > Tux...@li... > https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel -- -bill! "Tux Paint" - free children's drawing software for Windows / Mac OS X / Linux! Download it today! http://www.tuxpaint.org/ |