Browse Source

* Set version to 0.99.beta13.

* Updated NEWS and ChangeLog.
tags/v0.99.beta14
Sam Hocevar sam 17 years ago
parent
commit
1ab0d190f6
4 changed files with 7900 additions and 1137 deletions
  1. +7885
    -1133
      ChangeLog
  2. +11
    -0
      NEWS
  3. +2
    -2
      configure.ac
  4. +2
    -2
      msvc/config.h

+ 7885
- 1133
ChangeLog
File diff suppressed because it is too large
View File


+ 11
- 0
NEWS View File

@@ -1,5 +1,16 @@
/* $Id$ */ /** \page libcaca-news Libcaca news

\section news0_99_beta13 Changes between 0.9.beta13 and 0.99.beta12

- device-dependent cursor support
- event API rewrite
- minor API improvements and extensions
- img2txt improvements
- Ruby bindings
- Massive C# bindings improvements
- Python sample code
- Visual Studio build solution

\section news0_99_beta12 Changes between 0.9.beta12 and 0.99.beta11

- support for 90-degree canvas rotation


+ 2
- 2
configure.ac View File

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

AM_INIT_AUTOMAKE(libcaca, 0.99.beta12)
AM_INIT_AUTOMAKE(libcaca, 0.99.beta13)
LT_MAJOR="0"
LT_MINOR="99"
LT_MICRO="12"
LT_MICRO="13"
AC_SUBST(LT_MAJOR)
AC_SUBST(LT_MINOR)
AC_SUBST(LT_MICRO)


+ 2
- 2
msvc/config.h View File

@@ -49,9 +49,9 @@
/* #undef USE_SLANG */
#define USE_WIN32 1
/* #undef USE_X11 */
#define VERSION "0.99.beta12"
#define VERSION "0.99.beta13"
/* #undef const */
#ifndef __cplusplus
#define inline __inline
#endif
#define strcasecmp stricmp
#define strcasecmp stricmp

Loading…
Cancel
Save