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.
2005 |
Jan
|
Feb
|
Mar
(52) |
Apr
(78) |
May
(134) |
Jun
(64) |
Jul
(110) |
Aug
(88) |
Sep
(2) |
Oct
(33) |
Nov
(41) |
Dec
(25) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(56) |
Feb
(5) |
Mar
(25) |
Apr
(22) |
May
(6) |
Jun
(2) |
Jul
(12) |
Aug
(11) |
Sep
(3) |
Oct
(16) |
Nov
(19) |
Dec
(31) |
2007 |
Jan
(17) |
Feb
(28) |
Mar
(9) |
Apr
(14) |
May
(47) |
Jun
(16) |
Jul
(45) |
Aug
(31) |
Sep
(28) |
Oct
(37) |
Nov
(46) |
Dec
(19) |
2008 |
Jan
(51) |
Feb
(22) |
Mar
(18) |
Apr
(25) |
May
(19) |
Jun
(51) |
Jul
(18) |
Aug
(5) |
Sep
(4) |
Oct
(21) |
Nov
(18) |
Dec
(11) |
2009 |
Jan
(39) |
Feb
(13) |
Mar
(9) |
Apr
(27) |
May
(34) |
Jun
(9) |
Jul
(17) |
Aug
(3) |
Sep
(37) |
Oct
(32) |
Nov
(71) |
Dec
(36) |
2010 |
Jan
(11) |
Feb
(16) |
Mar
(44) |
Apr
(208) |
May
(133) |
Jun
(24) |
Jul
(39) |
Aug
(9) |
Sep
(20) |
Oct
(82) |
Nov
(19) |
Dec
|
2011 |
Jan
(4) |
Feb
|
Mar
(3) |
Apr
(3) |
May
(7) |
Jun
|
Jul
(1) |
Aug
(7) |
Sep
(3) |
Oct
(4) |
Nov
(18) |
Dec
(3) |
2012 |
Jan
(12) |
Feb
(12) |
Mar
(18) |
Apr
(14) |
May
(10) |
Jun
(4) |
Jul
(14) |
Aug
(9) |
Sep
(16) |
Oct
(10) |
Nov
(20) |
Dec
(8) |
2013 |
Jan
(13) |
Feb
(7) |
Mar
(2) |
Apr
(12) |
May
(13) |
Jun
(1) |
Jul
(8) |
Aug
(3) |
Sep
(11) |
Oct
(7) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(14) |
Feb
(20) |
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
(1) |
Aug
|
Sep
(2) |
Oct
(3) |
Nov
(2) |
Dec
|
2015 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
(1) |
23
|
24
(1) |
25
(1) |
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
|
|
From: Andy Stewart <lazycat.manatee@gm...> - 2009-08-25 02:08:57
|
Hi all. When i test below sentence: putStrLn $ "Permissions: " ++ (show (fromMaybe [] (VFS.fileInfoPermissions x))) I got error: Manatee: gnomevfs/System/Gnome/VFS/Constants.hsc:(94,4)-(109,39): Non-exhaustive patterns in function toEnum I recompile gtk2hs source code after add toEnum n = error ("unknown GnomeVFSFilePermissions value " ++ show n) after toEnum #{const GNOME_VFS_PERM_ACCESS_EXECUTABLE} = PermAccessExecutable Then run putStrLn $ "Permissions: " ++ (show (fromMaybe [] (fileInfoPermissions fi))) I got: Manatee: unknown GnomeVFSFilePermissions value 2049 I think 2049 is missed match constant for type FilePermissions. Hope maintainer fix this bug. Thanks! -- Andy |
From: Andy Stewart <lazycat.manatee@gm...> - 2009-08-24 15:15:19
|
Hi all. When i run below code .... putStrLn "Debug in" path <- treeModelSortConvertChildPathToPath sortModel childPath putStrLn "Debug out" .... I got error: Debug in Manatee: schedule: re-entered unsafely. Perhaps a 'foreign import unsafe' should be 'safe'? Exactly, just have "Debug in" in output, error occur at function `treeModelSortConvertChildPathToPath`. This is bug of treeModelSortConvertChildPathToPath ? How to fix this bug? Thanks! -- Andy |
From: Duncan Coutts <duncan.coutts@wo...> - 2009-08-22 03:34:55
|
All, I hear there isn't a windows installer yet for ghc-6.10.4. I did a gtk2hs build for ghc-6.10.4 something I'm working on. If it's useful to anyone until the proper build is done then it's here: http://haskell.org/~duncan/gtk2hs/gtk2hs-0.10.1-win32-installer.exe I warn that I've not tested it much beyond checking that the packages register with ghc-pkg and load in ghci. It's minimal in the sense that it only includes glib, cairo and gtk, none of the other packages. It doesn't include docs or demos. It does have ghci and profiling libs though. The current win32 build scripts are a little flakey. In particular after the install win32-build-version.sh fails at line 55: cp -a $PREFIX/* ${INSTALL_CLIBS_DIR} || exit 1 This is because $PREFIX does not exist, because we never install to $PREFIX, only to the $DESTDIR. In fact I've no idea how that line is supposed to work. There's no setting in the file (or .conf file) anywhere for the location of the gtk C libs. I see no reason they should be at $PREFIX. Anyway, after doing the last install steps manually and updating the gtk2hs.iss for ghc-6.10.4 and gtk2hs-0.10.1 then it all works ok. By the way, it would be jolly useful to Windows users to continue to post the gtk bundles like we used to do: http://haskell.org/gtk2hs/win32/ Those are the bundles produced by the scripts in tools/win32. The -dev version is needed to build gtk2hs from source while the non-dev version is the useful one for users because that's what you need to make deployable gtk2hs apps, like: http://haskell.org/~duncan/gtk2hs/LSystemSetup.exe I'm slightly suspicious of the current tools/win32/download.sh. I appreciate that it takes advantage of the gtk bundle zip file that the gtk people provide now. However, unfortunately they only provide a bundle for one version, the latest version. So if you run the scripts right now you find the download fails because the older bundle file doesn't exist any more. The older version of the download script was more verbose because it had to download individual packages however it was reproducible. The combination of not posting the bundles used to generate the windows installer and not being able to reproduce them oneself makes it rather hard to make a deployable gtk2hs app. The solution is to prepare a fresh gtk bundle oneself and build gtk2hs using it, which on windows has always been a bit of a trial. Sorry if this all sounds like a stream of complaints! :-) I hope some of it is useful. Duncan ps. I noticed on the development page of the website and in the AUTHORS file I'm still listed as a maintainer! :-) I've fixed both. |