You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
(38) |
May
(22) |
Jun
(92) |
Jul
(101) |
Aug
(18) |
Sep
(286) |
Oct
(180) |
Nov
(73) |
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(18) |
Feb
(74) |
Mar
(56) |
Apr
(11) |
May
(5) |
Jun
(4) |
Jul
(20) |
Aug
(4) |
Sep
|
Oct
|
Nov
(1) |
Dec
(2) |
2006 |
Jan
(11) |
Feb
(2) |
Mar
(10) |
Apr
(2) |
May
(1) |
Jun
|
Jul
(24) |
Aug
(11) |
Sep
(5) |
Oct
(16) |
Nov
(25) |
Dec
(8) |
2007 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(1) |
Aug
|
Sep
|
Oct
(4) |
Nov
(12) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
From: Dennis S. <sy...@yo...> - 2004-09-30 16:21:24
|
Hello everyone, A good friend of mine died in a car incident, I can't focus on mail or anything else right now. I will probably be back soon but this just serves as an explanation for why I won't respond to emails. To read news about the incident: http://www.wiggy.net/tmp/accident/ Dennis |
From: Dennis S. <sy...@yo...> - 2004-09-30 15:58:14
|
On Thu, 2004-09-30 at 07:30 +0100, Andrew Godwin wrote: > > > I'm going to start trying a custom one locally; the SF databases are > > > quite slow (actually, you'll probably need to get one created if you > > > haven't already), but I can copy everything over once it's done. > > > > What created !?, I'm not sure what you mean here :) > > > You have to opt-in for a MySQL database at SourceForge. The admin has to set > it up and set a password for it. Aah ok, where to do that ? Dennis. |
From: salsaman <sal...@xs...> - 2004-09-30 09:24:34
|
salsaman wrote: > Vitaly V. Bursov wrote: > >> >> One thing: we need to borrow nice pseudo-random numbger gen algo. >> >> OK? >> >> >> > You can use these two functions adapted from LiVES: > > static uint32_t fastrand_val; > > inline uint32_t fastrand(void) > { > return (fastrand_val=fastrand_val*1073741789+32749); > } > > void fastsrand(uint32_t seed) > { > fastrand_val = seed; > } > > > > > Salsaman. > And to seed it: #include <sys/time.h> struct timeval tv; gettimeofday(&tv,NULL); fastsrand(tv.tv_usec); Salsaman. |
From: salsaman <sal...@xs...> - 2004-09-30 09:13:03
|
Vitaly V. Bursov wrote: > >One thing: we need to borrow nice pseudo-random numbger gen algo. > >OK? > > > You can use these two functions adapted from LiVES: static uint32_t fastrand_val; inline uint32_t fastrand(void) { return (fastrand_val=fastrand_val*1073741789+32749); } void fastsrand(uint32_t seed) { fastrand_val = seed; } Salsaman. |
From: Andrew G. <and...@bl...> - 2004-09-30 06:31:03
|
On Wednesday 29 September 2004 17:23, Dennis Smit wrote: > On Wed, 2004-09-29 at 14:15 +0100, Andrew Godwin wrote: > > After having a look around, it seems the best options are either Mambo or > > a custom CMS. Mambo is perhaps a bit overblown for your site, but it's > > easily extendable and has things like RSS built in, while if I make one > > out of my libraries it may not have RSS for a few days, but it's going to > > be more suited for your needs and enable us to do the banner stuff > > correctly. > > Well since we won't ever need a full blown CMS system, maybe it's better > to have our own small CMS system. OK, work's already started. The menus are already working off a DB. > > > I'm going to start trying a custom one locally; the SF databases are > > quite slow (actually, you'll probably need to get one created if you > > haven't already), but I can copy everything over once it's done. > > What created !?, I'm not sure what you mean here :) > You have to opt-in for a MySQL database at SourceForge. The admin has to set it up and set a password for it. As for the mozilla thing, I can''t make heads or tails of it. Mozilla's fine, but firefox isn't... I'll try ff on another computer. Andrew |
From: Vitaly V. B. <vit...@us...> - 2004-09-30 05:38:36
|
On Wed, 29 Sep 2004 22:05:49 +0200 Dennis Smit <sy...@yo...> wrote: > On Wed, 2004-09-29 at 21:36 +0100, salsaman wrote: > > Actually, what would be *really* nice is if a host application could set > > a random seed as in: > > > > visual_actor_set_seed(uint32_t seed); > > > > visual_actor_set_seed(123456); // set seed to 123456 > > > > visual_actor_set_seed(0); // let libvisual choose a (pseudo random) seed > > Yes that would be kinda nice, but it's difficult to do because all the > plugins need many changes to support this correctly. And the plugins > we interface through an API would just not support this. So it's kinda > hard. Hm, I don't think it's hard. :) just few lines of code. Fast way to do this is to define these globals: void visual_set_seed(uint32_t seed); uint32_t visual_get_seed(); uint32_t visual_random(); With no multi-threading everything should be absolutely reproducible ;) Next, this plugin-specific api: void visual_plugin_set_seed(VisPluginInfo*, uint32_t seed); uint32_t visual_plugin_get_seed(VisPluginInfo*); void visual_plugin_random(VisPluginInfo*); state of the random number generation algo will be strored in VisPluginInfo. One thing: we need to borrow nice pseudo-random numbger gen algo. OK? -- Vitaly GPG Key ID: F95A23B9 |
From: Duilio J. P. <dp...@fc...> - 2004-09-30 05:14:34
|
> On Wed, 2004-09-29 at 21:36 +0100, salsaman wrote: > > Actually, what would be *really* nice is if a host application could set > > a random seed as in: > > > > visual_actor_set_seed(uint32_t seed); > > > > visual_actor_set_seed(123456); // set seed to 123456 > > > > visual_actor_set_seed(0); // let libvisual choose a (pseudo random) seed > > Yes that would be kinda nice, but it's difficult to do because all the > plugins need many changes to support this correctly. And the plugins > we interface through an API would just not support this. So it's kinda > hard. A param entry can work well for this purpose, I guess. Bye, Duilio. |
From: Duilio J. P. <dp...@fc...> - 2004-09-30 03:33:06
|
> > > cleanup -> start, switching plugins kinda weird > > > sometimes. > > > QUIT WM -> start, crash. (can't reproduce anylonger..) > > > > ?? I don't understand this. > > I can't find a good reproduction pattern but, having libvisual open, > figgle in the config window, close config AND libvisual/ reopen > libvisual and config and figgle some more had some crashes for me. Well, until now, I don't have worried too much about clean up things while introducing the new configure dialog, but I'll do it before release! Bye, Duilio. |
From: Dennis S. <sy...@yo...> - 2004-09-29 20:05:55
|
On Wed, 2004-09-29 at 21:36 +0100, salsaman wrote: > Actually, what would be *really* nice is if a host application could set > a random seed as in: > > visual_actor_set_seed(uint32_t seed); > > visual_actor_set_seed(123456); // set seed to 123456 > > visual_actor_set_seed(0); // let libvisual choose a (pseudo random) seed Yes that would be kinda nice, but it's difficult to do because all the plugins need many changes to support this correctly. And the plugins we interface through an API would just not support this. So it's kinda hard. Btw, Just a request, when you reply, could you please qoute the relevant part of the messages you reply to, and leave the rest. It's easier to read that way ;) Cheers, Dennis |
From: Dennis S. <sy...@yo...> - 2004-09-29 19:44:51
|
On Wed, 2004-09-29 at 20:55 +0100, salsaman wrote: > Any chance of random seeding gforce and goom2 as well ? Will look at gforce, Already tried fixing it but without succes, it's somewhere deep inside gforce it's 'script playlist' handling which I don't master yet (the codebase size of gforce is twice that of libvisual itself, so it takes some time really mastering it.. hehe) goom2, you have to ask JC about that, remember goom2 comes from libgoom2 in which we don't have control :) > P.S last night's gig with LiVES and libvisual went very well, I should > have some of it on tape, need to check...but i will try to post some clips. Happy to hear that, I'm really curious about the clips! Cheers, Dennis |
From: salsaman <sal...@xs...> - 2004-09-29 19:22:05
|
Duilio Javier Protti wrote: >>Goals: >>* Loads of fixes. >>* XMMS Plugin stable/usable (You think this is possible Duilio ?) >> >> > >Oh yeah, just don't crashing when disabling is enough reason >to make a release, and we have more than that. > > > >>What needs to be done: >> Globally: >> * Look for issues, list them. >> >> XMMS plugin: >> crash op gl startup. >> >> > >We really must fix this. > > > >> cleanup -> start, switching plugins kinda weird >> sometimes. >> QUIT WM -> start, crash. (can't reproduce anylonger..) >> >> > >?? I don't understand this. > > > >> Completely working config dialog >> >> > >My first priority. > > > >> Libvisual: >> Finish plugin libraries (multiple plugin structures in >> one plugin). >> Log verboseness API. >> >> > >This is for me, but after config dialog. > > > >> Plugin flags (atleast integer flags). >> >> Plugins: >> Random seed infinite. >> >> > >Ok, I will see this. > > > >>What do you guys think, can we do this together and roll out a quality >>release before monday next week ? >> >> > >I'm not shure before, but maybe on monday itself. > >Bye, >Duilio. > > > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >Libvisual-devel mailing list >Lib...@li... >https://lists.sourceforge.net/lists/listinfo/libvisual-devel > > > > Actually, what would be *really* nice is if a host application could set a random seed as in: visual_actor_set_seed(uint32_t seed); visual_actor_set_seed(123456); // set seed to 123456 visual_actor_set_seed(0); // let libvisual choose a (pseudo random) seed that would allow for example, matching of previews with rendering. thanks in advance, Salsaman. |
From: Dennis S. <sy...@yo...> - 2004-09-29 18:48:08
|
On Wed, 2004-09-29 at 15:02 -0300, Duilio Javier Protti wrote: > > Added to libvisual-plugins: > > > > slide morph plugin. > > > > It's in 'plugins/morph/slide/', and it's the first plugin library > > for libvisual. The resulting morph_slide.so contains 4 plugins, > > 'slide_left', 'slide_right', 'slide_bottom', 'slide_upper'. > > > > Cheers, > > Dennis > > We can't select all of them (just slide_left) on the xmms plugin > because the other three are seeing as not valid morph. > This is due to visual_morph_valid_by_name() function calls > visual_plugin_find(), and this one don't take into account the > index into the VisPluginRef's to perform the search. actually visual_plugin_find searches in the VisRef database and at my place it works perfectly, make sure you recompile everything! Also libvisual, since libvisual changed a bit to work regarding this. The old visual_plugin_load always took the first entry... Keep in mind that after recompiling libvisual, you also need to recompile the xmms plugin, the VisPluginRef structure changed. Cheers, Dennis |
From: salsaman <sal...@xs...> - 2004-09-29 18:41:07
|
Dennis Smit wrote: >On Wed, 2004-09-29 at 14:02 -0300, Duilio Javier Protti wrote: > > >>> XMMS plugin: >>> crash op gl startup. >>> >>> >>We really must fix this. >> >> > >Yep > > > >>> cleanup -> start, switching plugins kinda weird >>> sometimes. >>> QUIT WM -> start, crash. (can't reproduce anylonger..) >>> >>> >>?? I don't understand this. >> >> > >I can't find a good reproduction pattern but, having libvisual open, >figgle in the config window, close config AND libvisual/ reopen >libvisual and config and figgle some more had some crashes for me. > > > >>> Log verboseness API. >>> >>> >>This is for me, but after config dialog. >> >> > >Ok, cool > > > >>> Random seed infinite. >>> >>> >>Ok, I will see this. >> >> > >The only thing left to make random is the start color. > > > >>I'm not shure before, but maybe on monday itself. >> >> > >Sounds fair! :) > >Cheers, >Dennis > > > > >------------------------------------------------------- >This SF.net email is sponsored by: IT Product Guide on ITManagersJournal >Use IT products in your business? Tell us what you think of them. Give us >Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more >http://productguide.itmanagersjournal.com/guidepromo.tmpl >_______________________________________________ >Libvisual-devel mailing list >Lib...@li... >https://lists.sourceforge.net/lists/listinfo/libvisual-devel > > > > Any chance of random seeding gforce and goom2 as well ? Thanks in advance, Salsaman. P.S last night's gig with LiVES and libvisual went very well, I should have some of it on tape, need to check...but i will try to post some clips. |
From: Duilio J. P. <dp...@fc...> - 2004-09-29 17:51:38
|
> Added to libvisual-plugins: > > slide morph plugin. > > It's in 'plugins/morph/slide/', and it's the first plugin library > for libvisual. The resulting morph_slide.so contains 4 plugins, > 'slide_left', 'slide_right', 'slide_bottom', 'slide_upper'. > > Cheers, > Dennis We can't select all of them (just slide_left) on the xmms plugin because the other three are seeing as not valid morph. This is due to visual_morph_valid_by_name() function calls visual_plugin_find(), and this one don't take into account the index into the VisPluginRef's to perform the search. Bye, Duilio. |
From: Dennis S. <sy...@yo...> - 2004-09-29 17:14:35
|
On Wed, 2004-09-29 at 14:01 -0300, Duilio Javier Protti wrote: > Would be nice, but I don't know if it is implementable, > I think 'clicked' is not an event on GtkListItem, but > I will check that. Apropos GtkList widget, is a shit > in general :-), and has been deprecated on gtk2. Hmms, well we'll see :), Yeah gtk2 has the treeview rock stuff. Cheers, Dennis |
From: Dennis S. <sy...@yo...> - 2004-09-29 17:05:01
|
On Wed, 2004-09-29 at 14:02 -0300, Duilio Javier Protti wrote: > > XMMS plugin: > > crash op gl startup. > > We really must fix this. Yep > > cleanup -> start, switching plugins kinda weird > > sometimes. > > QUIT WM -> start, crash. (can't reproduce anylonger..) > > ?? I don't understand this. I can't find a good reproduction pattern but, having libvisual open, figgle in the config window, close config AND libvisual/ reopen libvisual and config and figgle some more had some crashes for me. > > Log verboseness API. > > This is for me, but after config dialog. Ok, cool > > Random seed infinite. > > Ok, I will see this. The only thing left to make random is the start color. > I'm not shure before, but maybe on monday itself. Sounds fair! :) Cheers, Dennis |
From: Duilio J. P. <dp...@fc...> - 2004-09-29 16:50:36
|
> Goals: > * Loads of fixes. > * XMMS Plugin stable/usable (You think this is possible Duilio ?) Oh yeah, just don't crashing when disabling is enough reason to make a release, and we have more than that. > What needs to be done: > Globally: > * Look for issues, list them. > > XMMS plugin: > crash op gl startup. We really must fix this. > cleanup -> start, switching plugins kinda weird > sometimes. > QUIT WM -> start, crash. (can't reproduce anylonger..) ?? I don't understand this. > Completely working config dialog My first priority. > Libvisual: > Finish plugin libraries (multiple plugin structures in > one plugin). > Log verboseness API. This is for me, but after config dialog. > Plugin flags (atleast integer flags). > > Plugins: > Random seed infinite. Ok, I will see this. > > > What do you guys think, can we do this together and roll out a quality > release before monday next week ? I'm not shure before, but maybe on monday itself. Bye, Duilio. |
From: Duilio J. P. <dp...@fc...> - 2004-09-29 16:50:25
|
> Duilio I've got a suggestion for the config window: > > When double click on a plugin in the list, start a morph > to that plugin. > > What do you think about it ? Would be nice, but I don't know if it is implementable, I think 'clicked' is not an event on GtkListItem, but I will check that. Apropos GtkList widget, is a shit in general :-), and has been deprecated on gtk2. Bye, Duilio. |
From: Dennis S. <sy...@yo...> - 2004-09-29 16:23:57
|
On Wed, 2004-09-29 at 14:15 +0100, Andrew Godwin wrote: > After having a look around, it seems the best options are either Mambo or a > custom CMS. Mambo is perhaps a bit overblown for your site, but it's easily > extendable and has things like RSS built in, while if I make one out of my > libraries it may not have RSS for a few days, but it's going to be more > suited for your needs and enable us to do the banner stuff correctly. Well since we won't ever need a full blown CMS system, maybe it's better to have our own small CMS system. > I'm going to start trying a custom one locally; the SF databases are quite > slow (actually, you'll probably need to get one created if you haven't > already), but I can copy everything over once it's done. What created !?, I'm not sure what you mean here :) Cheers, Dennis |
From: Dennis S. <sy...@yo...> - 2004-09-29 16:22:52
|
On Wed, 2004-09-29 at 14:04 +0100, Andrew Godwin wrote: > Yep, my username is andrewgodwin (I'm really inventive). I've added you to the team. > You can't crop stuff in HTML (save for some strange MS extensions in IE, and > I'm not going to use those, since they wont work), so I've had to try > cropping/fading manually... have a look at > http://bytehoard.ath.cx/libvisualtest for an idea. As it is right now looks perfectly! > For some reason, the image isn't loading in firefox, but Konqueror's fine, so > I'm trying to solve that... it might just be a bad ff cache or something. It > just fits on my narrow screen (double-wide taskbar at right, universal > sidebar at left), so that's OK. Hmms it's loading great in mozilla at my place... Thanks, Dennis |
From: Andrew G. <and...@bl...> - 2004-09-29 13:15:18
|
After having a look around, it seems the best options are either Mambo or a custom CMS. Mambo is perhaps a bit overblown for your site, but it's easily extendable and has things like RSS built in, while if I make one out of my libraries it may not have RSS for a few days, but it's going to be more suited for your needs and enable us to do the banner stuff correctly. I'm going to start trying a custom one locally; the SF databases are quite slow (actually, you'll probably need to get one created if you haven't already), but I can copy everything over once it's done. Andrew |
From: Andrew G. <and...@bl...> - 2004-09-29 13:04:12
|
On Wednesday 29 September 2004 13:14, Dennis Smit wrote: > On Wed, 2004-09-29 at 12:59 +0100, Andrew Godwin wrote: > > Oh, definitely. I'll probably get most of the next lot of work done > > tonight, so I'd say getting at least a static site up by monday is a > > near-definite possibility. > > > > There's just the matter of getting more icons, the banners and the CMS. > > In fact, I'm about to have a go at the banners now. > > > > Andrew > > This is so fantastic! > > Do you have an sf.net acount so I can add you to the team as > webdeveloper ? > Yep, my username is andrewgodwin (I'm really inventive). You can't crop stuff in HTML (save for some strange MS extensions in IE, and I'm not going to use those, since they wont work), so I've had to try cropping/fading manually... have a look at http://bytehoard.ath.cx/libvisualtest for an idea. For some reason, the image isn't loading in firefox, but Konqueror's fine, so I'm trying to solve that... it might just be a bad ff cache or something. It just fits on my narrow screen (double-wide taskbar at right, universal sidebar at left), so that's OK. |
From: Dennis S. <sy...@yo...> - 2004-09-29 12:14:57
|
On Wed, 2004-09-29 at 12:59 +0100, Andrew Godwin wrote: > Oh, definitely. I'll probably get most of the next lot of work done tonight, > so I'd say getting at least a static site up by monday is a near-definite > possibility. > > There's just the matter of getting more icons, the banners and the CMS. In > fact, I'm about to have a go at the banners now. > > Andrew This is so fantastic! Do you have an sf.net acount so I can add you to the team as webdeveloper ? Cheers, Dennis |
From: Andrew G. <and...@bl...> - 2004-09-29 11:59:15
|
On Wednesday 29 September 2004 12:42, Dennis Smit wrote: > On Wed, 2004-09-29 at 12:31 +0100, Andrew Godwin wrote: > > > Aah alright, :) maybe you can just load them, and if the resolution is > > > too low just 'cut off' the right side. (that is possible right, in > > > html ? ) > > > > Hmm, I'm not sure, although I wouldn't be surprised. I'll have ago. > > Alright, sounds good... > > We want to do a release upcoming monday, Do you think it's possible > to have (atleast) a static version ready before then ? (if not, it's > no problem). Oh, definitely. I'll probably get most of the next lot of work done tonight, so I'd say getting at least a static site up by monday is a near-definite possibility. There's just the matter of getting more icons, the banners and the CMS. In fact, I'm about to have a go at the banners now. Andrew |
From: Dennis S. <sy...@yo...> - 2004-09-29 11:44:07
|
Added to libvisual-plugins: slide morph plugin. It's in 'plugins/morph/slide/', and it's the first plugin library for libvisual. The resulting morph_slide.so contains 4 plugins, 'slide_left', 'slide_right', 'slide_bottom', 'slide_upper'. Cheers, Dennis |