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.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(182) |
Nov
(302) |
Dec
(141) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(142) |
Feb
(214) |
Mar
(291) |
Apr
(355) |
May
(185) |
Jun
(167) |
Jul
(281) |
Aug
(462) |
Sep
(227) |
Oct
(371) |
Nov
(303) |
Dec
(103) |
2002 |
Jan
(173) |
Feb
(204) |
Mar
(345) |
Apr
(427) |
May
(330) |
Jun
(296) |
Jul
(233) |
Aug
(163) |
Sep
(104) |
Oct
(162) |
Nov
(188) |
Dec
(197) |
2003 |
Jan
(328) |
Feb
(333) |
Mar
(169) |
Apr
(177) |
May
(150) |
Jun
(262) |
Jul
(316) |
Aug
(249) |
Sep
(218) |
Oct
(492) |
Nov
(399) |
Dec
(404) |
2004 |
Jan
(766) |
Feb
(779) |
Mar
(632) |
Apr
(690) |
May
(690) |
Jun
(418) |
Jul
(867) |
Aug
(653) |
Sep
(414) |
Oct
(661) |
Nov
(521) |
Dec
(633) |
2005 |
Jan
(818) |
Feb
(576) |
Mar
(932) |
Apr
(792) |
May
(790) |
Jun
(727) |
Jul
(648) |
Aug
(794) |
Sep
(1165) |
Oct
(1618) |
Nov
(777) |
Dec
(1140) |
2006 |
Jan
(1370) |
Feb
(1036) |
Mar
(1357) |
Apr
(1342) |
May
(968) |
Jun
(1010) |
Jul
(1320) |
Aug
(1506) |
Sep
(1396) |
Oct
(1108) |
Nov
(605) |
Dec
(650) |
2007 |
Jan
(727) |
Feb
(532) |
Mar
(1309) |
Apr
(719) |
May
(546) |
Jun
(651) |
Jul
(1299) |
Aug
(1042) |
Sep
(525) |
Oct
(701) |
Nov
(1750) |
Dec
(751) |
2008 |
Jan
(547) |
Feb
(529) |
Mar
(586) |
Apr
(571) |
May
(633) |
Jun
(453) |
Jul
(519) |
Aug
(365) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(112) |
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
(10) |
2
|
3
(4) |
4
(7) |
5
(5) |
6
(1) |
7
(21) |
8
(55) |
9
|
10
|
11
(11) |
12
|
13
(3) |
14
(14) |
15
(2) |
16
(2) |
17
(1) |
18
(2) |
19
(10) |
20
(4) |
21
(3) |
22
|
23
|
24
(6) |
25
(6) |
26
(10) |
27
(4) |
28
|
29
(7) |
30
|
From: <enlightenment-cvs@li...> - 2002-11-06 22:45:00
|
Enlightenment CVS committal Author : atmosphere Project : e17 Module : apps/ebindings Dir : e17/apps/ebindings/src Modified Files: Tag: SPLIT Makefile.am focus_interface.c interface.c interface.h Added Files: Tag: SPLIT desktops.c desktops.h Log Message: change your number of desktops turn on/off desktop scrolling set the size of your virtual desktops =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/ebindings/src/Makefile.am,v retrieving revision 1.3.2.1 retrieving revision 1.3.2.2 diff -u -3 -r1.3.2.1 -r1.3.2.2 --- Makefile.am 21 Sep 2002 19:44:54 -0000 1.3.2.1 +++ Makefile.am 6 Nov 2002 22:44:56 -0000 1.3.2.2 @@ -17,6 +17,7 @@ focus_interface.c focus_interface.h \ callbacks.c callbacks.h \ interface.c interface.h \ + desktops.c desktops.h \ main.c ebindings_LDADD = \ =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/ebindings/src/focus_interface.c,v retrieving revision 1.3.2.3 retrieving revision 1.3.2.4 diff -u -3 -r1.3.2.3 -r1.3.2.4 --- focus_interface.c 2 Oct 2002 22:14:32 -0000 1.3.2.3 +++ focus_interface.c 6 Nov 2002 22:44:57 -0000 1.3.2.4 @@ -225,7 +225,7 @@ else raise_adj = gtk_adjustment_new(0.00, 0.00, 5.00, 0.02, 1.0, 0); raise_gauge = gtk_spin_button_new(GTK_ADJUSTMENT(raise_adj), 0.05, 3); - gtk_table_attach(GTK_TABLE(table), raise_gauge, 0, 1, 5, 6, GTK_FILL, 0, 2, + gtk_table_attach(GTK_TABLE(table), raise_gauge, 0, 1, 5, 6, 0, 0, 2, 2); gtk_signal_connect(GTK_OBJECT(raise_gauge), "changed", GTK_SIGNAL_FUNC(focus_autoraise_timeout_cb), NULL); @@ -259,7 +259,7 @@ guide_x = gtk_spin_button_new(GTK_ADJUSTMENT(guide_x_adj), 0.50, 2); gtk_widget_set_name(GTK_WIDGET(guide_x), "horiz_guide"); - gtk_table_attach(GTK_TABLE(table2), guide_x, 0, 1, 1, 2, GTK_FILL, 0, 2, + gtk_table_attach(GTK_TABLE(table2), guide_x, 0, 1, 1, 2, 0, 0, 2, 2); gtk_signal_connect(GTK_OBJECT(guide_x), "changed", GTK_SIGNAL_FUNC(focus_guides_location_change_cb), NULL); @@ -279,7 +279,7 @@ guide_y_adj = gtk_adjustment_new(50.0, 0.00, 100.00, 0.5, 3.0, 0); guide_y = gtk_spin_button_new(GTK_ADJUSTMENT(guide_y_adj), 0.05, 2); gtk_widget_set_name(GTK_WIDGET(guide_y), "vert_guide"); - gtk_table_attach(GTK_TABLE(table2), guide_y, 1, 2, 1, 2, GTK_FILL, 0, 2, + gtk_table_attach(GTK_TABLE(table2), guide_y, 1, 2, 1, 2, 0, 0, 2, 2); gtk_signal_connect(GTK_OBJECT(guide_y), "changed", GTK_SIGNAL_FUNC(focus_guides_location_change_cb), NULL); =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/ebindings/src/interface.c,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -u -3 -r1.3 -r1.3.2.1 --- interface.c 3 Nov 2001 16:54:04 -0000 1.3 +++ interface.c 6 Nov 2002 22:44:58 -0000 1.3.2.1 @@ -80,6 +80,7 @@ add_menu_notebook(win, notebook, 0); add_keybinds_notebook(win, notebook, 1); add_focus_notebook(win, notebook, 2); + add_desks_notebook(win, notebook, 3); gtk_box_pack_start(GTK_BOX(vbox), menu_bar, FALSE, FALSE, 1); gtk_box_pack_start(GTK_BOX(vbox), notebook, TRUE, TRUE, 1); =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/ebindings/src/interface.h,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -u -3 -r1.3 -r1.3.2.1 --- interface.h 3 Nov 2001 16:54:04 -0000 1.3 +++ interface.h 6 Nov 2002 22:44:58 -0000 1.3.2.1 @@ -13,6 +13,7 @@ #include "keybind_interface.h" #include "action_extra.h" #include "focus_interface.h" +#include "desktops.h" GtkWidget *create_main_ebindings_window(void); |