Commit ea94e42e authored by Edi Weitz's avatar Edi Weitz
Browse files

Changes for 0.5.7 release


git-svn-id: svn://bknr.net/svn/trunk/thirdparty/cl-gd@4472 4281704c-cde7-0310-8518-8e2dc76b1ff0
parent fb919f59
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
Version 0.5.7
2009-11-22
Changes WITH-TRANSFORMATIONS so that SBCL doesn't complain (Jeff Cunningham)
Fixed typo in documentation (caught by J.P. Larocque)

Version 0.5.6
2007-07-29
Make WITH-TRANSFORMATIONS thread-safe (thanks to Alain Picard)
Made WITH-TRANSFORMATIONS thread-safe (thanks to Alain Picard)

Version 0.5.5
2007-04-24
Ugh, fix the fix once more (again thanks to Jong-won Choi)
Ugh, fixed the fix once more (again thanks to Jong-won Choi)

Version 0.5.4
2007-04-06
@@ -16,7 +21,7 @@ Fixed bug in DRAW-FREETYPE-STRING (reported by Andrei Stebakov)

Version 0.5.2
2007-02-28
Fix CONVERT-TO-CHAR-REFERENCES (bug caught by Luo Yong)
Fixed CONVERT-TO-CHAR-REFERENCES (bug caught by Luo Yong)
Documentation fixes (thanks to Yoni Rabkin Katzenell)

Version 0.5.1
+1 −1
Original line number Diff line number Diff line
/* Copyright (c) 2003-2007, Dr. Edmund Weitz.  All rights reserved. 
/* Copyright (c) 2003-2009, Dr. Edmund Weitz.  All rights reserved. 

   Redistribution and use in source and binary forms, with or without 
   modification, are permitted provided that the following conditions 
+2 −2
Original line number Diff line number Diff line
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/gd/cl-gd-test.asd,v 1.11 2007/01/01 23:41:00 edi Exp $
;;; $Header: /usr/local/cvsrep/gd/cl-gd-test.asd,v 1.12 2009/11/23 17:05:38 edi Exp $

;;; Copyright (c) 2003-2007, Dr. Edmund Weitz.  All rights reserved.
;;; Copyright (c) 2003-2009, Dr. Edmund Weitz.  All rights reserved.

;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
+2 −2
Original line number Diff line number Diff line
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-GD; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/gd/cl-gd-test.lisp,v 1.26 2007/01/01 23:41:00 edi Exp $
;;; $Header: /usr/local/cvsrep/gd/cl-gd-test.lisp,v 1.27 2009/11/23 17:05:38 edi Exp $

;;; Copyright (c) 2003-2007, Dr. Edmund Weitz.  All rights reserved.
;;; Copyright (c) 2003-2009, Dr. Edmund Weitz.  All rights reserved.

;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
+5 −5
Original line number Diff line number Diff line
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
;;; $Header: /usr/local/cvsrep/gd/cl-gd.asd,v 1.18 2007/07/29 16:37:13 edi Exp $
;;; $Header: /usr/local/cvsrep/gd/cl-gd.asd,v 1.20 2009/11/23 17:05:38 edi Exp $

;;; Copyright (c) 2003-2007, Dr. Edmund Weitz.  All rights reserved.
;;; Copyright (c) 2003-2009, Dr. Edmund Weitz.  All rights reserved.

;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
@@ -40,7 +40,7 @@
                 :defaults (parse-namestring *load-truename*)))

(defsystem :cl-gd
  :version "0.5.6"
  :version "0.5.7"
  :serial t
  :components ((:file "packages")
               (:file "util")
@@ -54,5 +54,5 @@
               (:file "drawing")
               (:file "strings")
               (:file "misc"))
  :depends-on (#-clisp :uffi
               #+clisp :cffi-uffi-compat))
  :depends-on (#-(or :clisp :openmcl) :uffi
               #+(or :clisp :openmcl) :cffi-uffi-compat))
Loading