Browse Source

* 0.9 release.

tags/v0.99.beta14
Sam Hocevar sam 21 years ago
parent
commit
cb227abc0c
6 changed files with 88 additions and 3 deletions
  1. +66
    -0
      ChangeLog
  2. +8
    -0
      NEWS
  3. +1
    -1
      configure.ac
  4. +6
    -0
      debian/changelog
  5. +4
    -1
      libcaca.spec
  6. +3
    -1
      msvc/config.h

+ 66
- 0
ChangeLog View File

@@ -1,3 +1,69 @@
------------------------------------------------------------------------
r258 | sam | 2004-01-26 11:52:30 +0100 (Mon, 26 Jan 2004) | 5 lines
Changed paths:
M /trunk/configure.ac
M /trunk/debian/changelog
M /trunk/src/caca.c
M /trunk/src/event.c
M /trunk/src/graphics.c

* configure.ac:
+ Check for curses.h as well as ncurses.h.
* src/caca.c src/event.c src/graphics.c:
+ Include curses.h if ncurses.h was not found.

------------------------------------------------------------------------
r257 | sam | 2004-01-23 10:20:39 +0100 (Fri, 23 Jan 2004) | 3 lines
Changed paths:
M /trunk/examples/cacaview.c

* examples/cacaview.c:
+ Moved statusbar and help menu handling in separate functions.

------------------------------------------------------------------------
r256 | sam | 2004-01-23 10:15:42 +0100 (Fri, 23 Jan 2004) | 4 lines
Changed paths:
M /trunk/src/caca.c

* src/caca.c:
+ Alloc the AllocConsole() call to fail in case the process already has
a console.

------------------------------------------------------------------------
r255 | sam | 2004-01-21 18:25:18 +0100 (Wed, 21 Jan 2004) | 6 lines
Changed paths:
M /trunk/examples/cacaview.c

* examples/cacaview.c:
+ Proper aspect ratio support.
+ Finer zoom support.
+ Handle mouse clicks as next/prev picture command.
+ Removed useless iterations in draw_checkers().

------------------------------------------------------------------------
r254 | sam | 2004-01-21 14:49:26 +0100 (Wed, 21 Jan 2004) | 8 lines
Changed paths:
M /trunk/THANKS
M /trunk/src/event.c
M /trunk/src/graphics.c

* src/graphics.c:
+ Fixed a buffer overflow due to bad signed/unsigned handling.
* src/event.c:
+ Disallow zero width or height in the X11 driver.
+ Fixed resizing in ncurses and slang.
* THANKS:
+ Added the Source Mage maintainer.

------------------------------------------------------------------------
r253 | sam | 2004-01-18 05:48:09 +0100 (Sun, 18 Jan 2004) | 2 lines
Changed paths:
A /branches/0.8 (from /trunk:252)
M /branches/0.8/ChangeLog
M /trunk/ChangeLog

* 0.8 branch.

------------------------------------------------------------------------
r252 | sam | 2004-01-18 05:45:28 +0100 (Sun, 18 Jan 2004) | 2 lines
Changed paths:


+ 8
- 0
NEWS View File

@@ -1,5 +1,13 @@
$Id$

Changes between 0.8 and 0.9:
----------------------------

* fix for a buffer overflow in the line rendering
* fixed resizing in the ncurses and slang drivers
* aspect ratio and finer zoom support in cacaview
* minor compilation fixes

Changes between 0.7 and 0.8:
----------------------------



+ 1
- 1
configure.ac View File

@@ -6,7 +6,7 @@ AC_PREREQ(2.50)
AC_CONFIG_AUX_DIR(autotools)
AC_CANONICAL_SYSTEM

AM_INIT_AUTOMAKE(libcaca, 0.8)
AM_INIT_AUTOMAKE(libcaca, 0.9)
AM_CONFIG_HEADER(config.h)

AM_PROG_CC_C_O


+ 6
- 0
debian/changelog View File

@@ -1,3 +1,9 @@
libcaca (0.9-1) unstable; urgency=low

* New upstream release.

-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Mon, 2 Feb 2004 03:50:43 +0100

libcaca (0.8-2) unstable; urgency=low

* src/caca.c src/event.c src/graphics.c:


+ 4
- 1
libcaca.spec View File

@@ -1,5 +1,5 @@
%define name libcaca
%define version 0.8
%define version 0.9
%define release 1

Name: %{name}
@@ -110,6 +110,9 @@ rm -rf %{buildroot}
%{_prefix}/share/man/man1/cacaview.1*

%changelog
* Sun Feb 2 2004 Sam Hocevar (RPM packages) <sam+rpm@zoy.org> 0.9-1
- new release

* Sun Jan 18 2004 Sam Hocevar (RPM packages) <sam+rpm@zoy.org> 0.8-1
- new release



+ 3
- 1
msvc/config.h View File

@@ -2,11 +2,13 @@

#define ALLOCCONSOLE_IN_WINDOWS_H 1
/* #undef HAVE_CONIO_H */
/* #undef HAVE_CURSES_H */
/* #undef HAVE_ENDIAN_H */
#define HAVE_GETENV 1
/* #undef HAVE_GETTIMEOFDAY */
/* #undef HAVE_IMLIB2_H */
/* #undef HAVE_INTTYPES_H */
/* #undef HAVE_IOCTL */
#define HAVE_MEMORY_H 1
/* #undef HAVE_NCURSES_H */
#define HAVE_PUTENV 1
@@ -44,7 +46,7 @@
/* #undef USE_SLANG */
#define USE_WIN32 1
/* #undef USE_X11 */
#define VERSION "0.8"
#define VERSION "0.9"
/* #undef const */
#ifndef __cplusplus
#define inline __inline


Loading…
Cancel
Save