Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2003 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(19) |
Feb
(86) |
Mar
(186) |
Apr
(60) |
May
(12) |
Jun
(30) |
Jul
(16) |
Aug
(19) |
Sep
(33) |
Oct
(17) |
Nov
(26) |
Dec
(32) |
2005 |
Jan
(39) |
Feb
(15) |
Mar
(9) |
Apr
(11) |
May
(14) |
Jun
(24) |
Jul
(79) |
Aug
(69) |
Sep
(22) |
Oct
(76) |
Nov
(40) |
Dec
(15) |
2006 |
Jan
(73) |
Feb
(61) |
Mar
(29) |
Apr
(26) |
May
(19) |
Jun
(30) |
Jul
(16) |
Aug
(38) |
Sep
(32) |
Oct
(29) |
Nov
(23) |
Dec
(20) |
2007 |
Jan
(19) |
Feb
(13) |
Mar
(10) |
Apr
(2) |
May
(9) |
Jun
(7) |
Jul
(4) |
Aug
(18) |
Sep
(5) |
Oct
(6) |
Nov
(10) |
Dec
(21) |
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(10) |
Jun
(7) |
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2009 |
Jan
|
Feb
(3) |
Mar
|
Apr
(3) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
(2) |
8
|
9
|
10
|
11
|
12
|
13
(4) |
14
|
15
(5) |
16
|
17
|
18
|
19
|
20
|
21
(2) |
22
(2) |
23
(1) |
24
|
25
(2) |
26
|
27
(4) |
28
(2) |
29
|
30
|
|
|
From: Kevin DeKorte <kdekorte@us...> - 2005-06-07 15:11:44
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22183/Source Modified Files: plugin-setup.cpp plugin-threads.cpp plugin.cpp plugin.h Log Message: Added options nomouseinput and noconsolecontrols to config file to disable (set to 0) or enable (set to 1 [default]) Index: plugin.h =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin.h,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** plugin.h 19 Mar 2005 15:31:12 -0000 1.62 --- plugin.h 7 Jun 2005 15:11:34 -0000 1.63 *************** *** 177,180 **** --- 177,182 ---- int hidden; int black_background; + int nomouseinput; + int noconsolecontrols; #ifdef GTK_ENABLED Index: plugin-setup.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-setup.cpp,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** plugin-setup.cpp 6 May 2005 22:38:17 -0000 1.63 --- plugin-setup.cpp 7 Jun 2005 15:11:33 -0000 1.64 *************** *** 943,946 **** --- 943,964 ---- } + if (strncasecmp(buffer, "nomouseinput", 12) == 0) { + snprintf(parse, 1000, "%s", strtok(buffer, "=")); + snprintf(parse, 1000, "%s", strtok(NULL, "=")); + sscanf(parse, "%i", &instance->nomouseinput); + if (instance->nomouseinput != 0) + instance->nomouseinput = 1; + continue; + } + + if (strncasecmp(buffer, "noconsolecontrols", 17) == 0) { + snprintf(parse, 1000, "%s", strtok(buffer, "=")); + snprintf(parse, 1000, "%s", strtok(NULL, "=")); + sscanf(parse, "%i", &instance->noconsolecontrols); + if (instance->noconsolecontrols != 0) + instance->noconsolecontrols = 1; + continue; + } + if (strncasecmp(buffer, "osdlevel", 8) == 0) { snprintf(parse, 1000, "%s", strtok(buffer, "=")); Index: plugin-threads.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-threads.cpp,v retrieving revision 1.143 retrieving revision 1.144 diff -C2 -d -r1.143 -r1.144 *** plugin-threads.cpp 27 May 2005 23:18:13 -0000 1.143 --- plugin-threads.cpp 7 Jun 2005 15:11:33 -0000 1.144 *************** *** 300,304 **** NPN_MemFree(filename); } else { ! if ((instance->nomediacache == 0) && (instance->td->list->bytes > 0)) { if (strlen(instance->td->list->fname) == 0) { snprintf(instance->td->list->fname, 1024, "%s", --- 300,305 ---- NPN_MemFree(filename); } else { ! if ((instance->nomediacache == 0) ! && (instance->td->list->bytes > 0)) { if (strlen(instance->td->list->fname) == 0) { snprintf(instance->td->list->fname, 1024, "%s", *************** *** 521,526 **** snprintf(buffer, 1024, "-nojoystick"); /* annoying... */ instance->td->argv[i++] = strdup(buffer); ! snprintf(buffer, 1024, "-noconsolecontrols"); ! instance->td->argv[i++] = strdup(buffer); // snprintf(buffer, 1024, "-nofs"); /* no full screen */ // instance->td->argv[i++] = strdup(buffer); --- 522,529 ---- snprintf(buffer, 1024, "-nojoystick"); /* annoying... */ instance->td->argv[i++] = strdup(buffer); ! if (instance->noconsolecontrols) { ! snprintf(buffer, 1024, "-noconsolecontrols"); ! instance->td->argv[i++] = strdup(buffer); ! } // snprintf(buffer, 1024, "-nofs"); /* no full screen */ // instance->td->argv[i++] = strdup(buffer); *************** *** 1081,1085 **** pthread_testcancel(); if (strstr(buffer, "nomouseinput") != NULL) { ! *nomouseinput = 1; tryagain = TRYAGAIN_TRUE; break; --- 1084,1088 ---- pthread_testcancel(); if (strstr(buffer, "nomouseinput") != NULL) { ! *nomouseinput = 0; tryagain = TRYAGAIN_TRUE; break; *************** *** 1409,1413 **** usefps = 0; ! nomouseinput = 0; maybeplaylist = 0; --- 1412,1416 ---- usefps = 0; ! nomouseinput = local_td->instance->nomouseinput; maybeplaylist = 0; *************** *** 1453,1460 **** } ! if (nomouseinput == 0) { local_td->argv[argc++] = strdup("-nomouseinput"); ! } else { ! nomouseinput = 1; } --- 1456,1463 ---- } ! if (nomouseinput) { local_td->argv[argc++] = strdup("-nomouseinput"); ! // } else { ! // nomouseinput = 0; } Index: plugin.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin.cpp,v retrieving revision 1.187 retrieving revision 1.188 diff -C2 -d -r1.187 -r1.188 *** plugin.cpp 9 May 2005 22:36:24 -0000 1.187 --- plugin.cpp 7 Jun 2005 15:11:34 -0000 1.188 *************** *** 204,207 **** --- 204,209 ---- DPMSEnabled = 0; black_background = 0; + nomouseinput = 1; + noconsolecontrols = 1; #ifdef GTK_ENABLED |
From: Kevin DeKorte <kdekorte@us...> - 2005-06-07 15:11:42
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22183 Modified Files: ChangeLog Log Message: Added options nomouseinput and noconsolecontrols to config file to disable (set to 0) or enable (set to 1 [default]) Index: ChangeLog =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/ChangeLog,v retrieving revision 1.237 retrieving revision 1.238 diff -C2 -d -r1.237 -r1.238 *** ChangeLog 27 May 2005 23:18:12 -0000 1.237 --- ChangeLog 7 Jun 2005 15:11:33 -0000 1.238 *************** *** 21,24 **** --- 21,25 ---- Spanish translation by Azael Avalos getTime and getPercent patches from anonymous + Added options nomouseinput and noconsolecontrols to config file to disable (set to 0) or enable (set to 1 [default]) 2.80 Fix DPMS value on quit |