File SDL_bgi.changes of Package SDL_bgi

-------------------------------------------------------------------
Thu Sep  5 17:03:17 UTC 2024 - Jan Engelhardt <jengelh@inai.de>

- Update to release 3.0.2
  * variable PALETTE_SIZE is accessible again
  * added clearmouseclick() function
  * initwindow() was extended
  * added a `bgicc` script
  * updated documentation and demo programs

-------------------------------------------------------------------
Wed Feb 28 20:16:30 UTC 2024 - Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>

- Align path for document installation between openSUSE versions.
  (Resolve failure to build the .spec because of a change in
  the default docdir for %cmake in SUSE.)

-------------------------------------------------------------------
Thu Dec 15 18:02:14 UTC 2022 - Jan Engelhardt <jengelh@inai.de>

- Update to release 3.0.0
  * fixed compatibility bugs in detectgraph(), gettextsettings(),
    getfillsettings(), drawpoly(), fillpoly(), setcolor(), lastkey(),
  * changed definition of `struct palettetype` (compatibility)
  * added colorname(), kdelay()

-------------------------------------------------------------------
Wed Jun  1 10:32:40 UTC 2022 - Jan Engelhardt <jengelh@inai.de>

- Update to release 2.6.0
  * added getclick(), doubleclick(), extended mouseclick()

-------------------------------------------------------------------
Wed May  4 08:41:32 UTC 2022 - Marcus Meissner <meissner@suse.com>

- updated source url to https

-------------------------------------------------------------------
Sun Feb 13 22:26:21 UTC 2022 - Jan Engelhardt <jengelh@inai.de>

- Update to release 2.5.0
  * Modified functions putpixel(), setbkcolor(), setcolor(),
    setfillpattern(), setfillstyle(), setpalette(), and
    setalpha() to handle colours given as out of range numbers.
  * Simplified floodfill() function (implemented recursive version)
  * Improved setpalette() to change currently drawn pixels.
  * Added getrgbpalette(), setallrgbpalette(), and RGBPALETTE().
  * Implemented getwindowwidth() and getwindowheight() as macros
    for WinBGIm compatibility.

-------------------------------------------------------------------
Tue May  4 13:32:58 UTC 2021 - Jan Engelhardt <jengelh@inai.de>

- Update to release 2.4.4
  * Fixed bug that affected floodfill() with fill patterns in
    rare cases

-------------------------------------------------------------------
Thu Mar  4 09:17:01 UTC 2021 - Jan Engelhardt <jengelh@inai.de>

- Update to release 2.4.3
  * modified getscreensize() behaviour
  * added setwintitle()

-------------------------------------------------------------------
Wed Nov 11 11:55:12 UTC 2020 - Jan Engelhardt <jengelh@inai.de>

- Update to release 2.4.2
  * Implemented native vector fonts, compatible with Borland .CHR
    fonts.
  * Implemented long-forgotten graphics error checks.
  * Added resetwinoptions(), getscreensize(), edelay(),
    getmaxheight(), getmaxwidth(), resizepalette(), added
    undocumented clearviewport() in setbkcolor().
  * Changed setwinoptions() to reset options for newly created
    windows.
  * Fixed graphresult() to provide actual error codes
  * Fixed compatibility in getpalette(), getpalettesize(),
    setallpalette(), setusercharsize().
  * Fixed setrgbpalette() to avoid out of range errors.
  * Improved fill patterns.

-------------------------------------------------------------------
Tue Aug 11 11:58:03 UTC 2020 - Jan Engelhardt <jengelh@inai.de>

- Update to release 2.4.1
  * Implemented a 16-color palette that uses the same RGB values
    as Turbo C. This palette is used if the environment variable
    SDL_BGI_PALETTE is set to "BGI".
  * Extended the setpalette() function to modify the default 16
    colors too.
  * Added initpalette() to restore the original 16 colors.
  * Added more Hershey fonts: Cursive, Futural, Rowmant, and
    Timesr.
  * Fine tuning of Hershey font metrics; now they equal the
    metrics of corresponding .CHR fonts.
  * Preliminary .CHR font loading support.

-------------------------------------------------------------------
Thu Feb 20 15:46:54 UTC 2020 - Jan Engelhardt <jengelh@inai.de>

- Update to release 2.4.0
  * Hershey font support as a replacement for the original
    Borland .chr fonts.
  * If the SDL_BGI_RES environment variable is set to "VGA",
    initgraph (DETECT, ...) forces VGA (640x480) resolution.
  * Added getlinebuffer() and putlinebuffer()
  * Changed 8x8 bitmap font using the one from the DosBox emulator.
- Drop sdlbgi-automake.diff, add sdlbgi-cmake.diff.

-------------------------------------------------------------------
Wed Jan 22 17:32:44 UTC 2020 - Jan Engelhardt <jengelh@inai.de>

- Update to release 2.3.1
  * Added getbuffer(), putbuffer(), COLOR32(), and colorRGB
    (macro) for faster pixel manipulation; added showinfobox(),
    getleftclick(), getmiddleclick(), and getrightclick();
    documentation updates and improvements.

-------------------------------------------------------------------
Tue Aug 20 18:51:01 UTC 2019 - Jan Engelhardt <jengelh@inai.de>

- Update to new upstream release 2.3.0
  * Added "auto mode": initgraph() performs automatic screen
    refresh when the environment variable SDL_BGI_RATE is set to
    "auto" or to the desired refresh rate (e.g. 60). This can be
    used as an alternative to "slow mode", and it provides a huge
    performance boost. The new function sdlbgiauto() is also
    available. BEWARE: automatic refresh may not work on some
    NVIDIA graphics cards.
  * Added compatibility with C++ programs
  * Added a showerrorbox() function

-------------------------------------------------------------------
Mon Nov 19 08:37:19 UTC 2018 - Jan Engelhardt <jengelh@inai.de>

- Update to new upstream release 2.2.4
  * Added some graphics modes for better compatibility with
    old programs

-------------------------------------------------------------------
Wed Sep 19 12:48:29 UTC 2018 - Jan Engelhardt <jengelh@inai.de>

- Update to new upstream release 2.2.3
  * fixed unspecified bug in setalpha()

-------------------------------------------------------------------
Tue Sep 11 11:11:35 UTC 2018 - Jan Engelhardt <jengelh@inai.de>

- Update to new upstream release 2.2.2
  * The constants TMP_FG_COL, TMP_BG_COL, and TMP_FILL_COL
    were added.

-------------------------------------------------------------------
Wed Aug 15 10:47:45 UTC 2018 - jengelh@inai.de

- Update to new upstream release 2.2.1
  * renamed getch() to bgi_getch() and added the macro getch()
    to avoid Mingw bug
  * delay() rewritten to take care of key presses
  * added ALPHA_VALUE()

-------------------------------------------------------------------
Thu Jul 26 14:19:01 UTC 2018 - jengelh@inai.de

- Update to new upstream release 2.2.0
  * Added setwinoptions() for window title, position, and SDL
    flags.
  * Added support for multiple windows: extended initwindow(),
    added getcurrentwindow(), setcurrentwindow(), closewindow().
  * SDL_QUIT support in getch(), getevent(), kbhit(), xkbhit().

-------------------------------------------------------------------
Sun Jun 10 10:14:52 UTC 2018 - jengelh@inai.de

- Update to new upstream release 2.1.2
  * Support for some Windows IDEs

-------------------------------------------------------------------
Fri Jan  5 11:09:14 UTC 2018 - jengelh@inai.de

- Update to new upstream release 2.1.0
  * fixed a bug in getch()
  * added mouse wheel up/down events

-------------------------------------------------------------------
Tue Nov 15 23:27:02 UTC 2016 - jengelh@inai.de

- Update to new upstream release 2.0.8
* fixed unspecified bug in palette-manipulating functions

-------------------------------------------------------------------
Fri Nov 11 20:10:34 UTC 2016 - jengelh@inai.de

- Update to new upstream release 2.0.7
* fixed unspecified bug in event()
* added the eventtype() funntion

-------------------------------------------------------------------
Fri Mar  4 17:04:06 UTC 2016 - jengelh@inai.de

- Update to new upstream release 2.0.6
* fixed bug in writeimagefile()
* implemented clipping in readimagefile()
* turtle graphics improvements

-------------------------------------------------------------------
Wed Dec 23 11:34:14 UTC 2015 - jengelh@inai.de

- Update to new upstream release 2.0.5
* fillpoly() correctly implemented
* rewritten to use SDL_Surfaces only instead of
  bitmaps in main RAM
* ellipse() and fillellipse() improved
* xkbhit() added

-------------------------------------------------------------------
Mon Oct 12 16:52:07 UTC 2015 - jengelh@inai.de

- Update to new upstream release 2.0.3
* in "slow mode", screen refresh is also
  triggered by kbhit() and getch()
* minimal dos.h and conio.h provided
* kbhit() rewritten to avoid buffered keys

-------------------------------------------------------------------
Wed Jun  3 22:26:55 UTC 2015 - jengelh@inai.de

- Update to new upstream release 2.0.2
* fill patterns (not for floodfill())
* setfillpattern() / getfillpattern () implemented
* writeimagefile() added
* documentation updates

-------------------------------------------------------------------
Tue May 12 10:56:49 UTC 2015 - jengelh@inai.de

- Update to new upstream release 2.0.1
* Support line patterns
* Improvements to flood fills

-------------------------------------------------------------------
Thu May  7 11:24:57 UTC 2015 - jengelh@inai.de

- Update to new upstream release 2.0.0
* This uses SDL2 as backend

-------------------------------------------------------------------
Thu Dec 18 09:25:45 UTC 2014 - jengelh@inai.de

- Initial package for build.opensuse.org (version 1.0.1).
  Add sdlbgi-automake.diff for a normal build that supports DESTDIR
  and uses pkgconfig.
openSUSE Build Service is sponsored by