瀏覽代碼

* test/dithering.c:

+ Fixed a minor compilation warning.
  * debian/rules:
    + Explicitely use --enable-imlib2.
  * BUGS:
    + Added a note about blinking consoles.
  * doc/Makefile.am:
    + Fixed a bashism in the HTML files installation.
tags/v0.99.beta14
Sam Hocevar sam 21 年之前
父節點
當前提交
673d941a57
共有 4 個檔案被更改,包括 10 行新增9 行删除
  1. +7
    -5
      BUGS
  2. +1
    -1
      debian/rules
  3. +2
    -2
      doc/Makefile.am
  4. +0
    -1
      test/dithering.c

+ 7
- 5
BUGS 查看文件

@@ -2,12 +2,14 @@ $Id$

Video rendering

o ncurses' hashmap scrolling optimization code causes the screen to
occasionally flicker because it tries to optimize the vertical
o ncurses' hashmap scrolling optimisation code causes the screen to
occasionally flicker because it tries to optimise the vertical
scrolling.

o Slang cannot display 256 colour pairs under Unix. This is partially
solved by the OPTIMISE_SLANG_PALETTE code.

o the X11 driver is very slow.

o some terminal emulators (Konsole, or the Linux VGA console) honour
the blink attribute instead of using it for bold or bright like any
other terminal emulator, hence reducing the amount of available
colour pairs.


+ 1
- 1
debian/rules 查看文件

@@ -12,7 +12,7 @@ else
endif

confflags += --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
confflags += --enable-ncurses --enable-slang --enable-x11
confflags += --enable-ncurses --enable-slang --enable-x11 --enable-imlib2

configure: configure-stamp
configure-stamp:


+ 2
- 2
doc/Makefile.am 查看文件

@@ -38,8 +38,8 @@ clean-local:
install-data-local:
if DOXYGEN
$(mkinstalldirs) $(DESTDIR)$(datadir)/doc/libcaca-dev/html
cp html/*.html $(DESTDIR)$(datadir)/doc/libcaca-dev/html
cp html/*.gif html/*.png $(DESTDIR)$(datadir)/doc/libcaca-dev/html
cp `find html -name '*.html' -o -name '*.gif' -o -name '*.png'` \
$(DESTDIR)$(datadir)/doc/libcaca-dev/html
$(mkinstalldirs) $(DESTDIR)$(mandir)/man3
cp man/man3/*.3caca $(DESTDIR)$(mandir)/man3
endif


+ 0
- 1
test/dithering.c 查看文件

@@ -51,7 +51,6 @@ int main(void)
for(x = 0; x < 100; x++)
for(y = 0; y < 100; y++)
{
int color = CACA_COLOR_WHITE;
char ch = '?';

/* distance to black */


Loading…
取消
儲存