Skip to content

Commit

Permalink
Prepare v0.2.103
Browse files Browse the repository at this point in the history
  • Loading branch information
mywave82 committed Feb 18, 2023
1 parent a81615e commit 2e88e84
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 41 deletions.
17 changes: 17 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Version 0.2.103
===============

* If an autoload plugin fails to load, do not hard fail if all the core plugins are statically linked in
* version 0.2.91 update missed setting the color for XM files in ocp.ini
* Fix logic for setting screenmode vs ocp.ini. This is now the scheme and default values that SDL, SDL2 and X11 drivers use:
[screen]
screentype=5 ; 0=80x25, 1=80x30, 2=80x50, 3=80x60, 4=132x25, 5=132x30, 6=132x50, 7=132x60, 8=custom
fontsize=1 ; if screentype=8: 0=8x8, 1=8x16
winwidth=1024 ; if screentype=8
winheight=768 ; if screentype=8
* insttype= setting in ocp.ini was no longer working and it was not maintained between songs.
* Remove more external symbols from the devp*.so and devw*.so files, and API updates
* setup:/devp/ and setup:/devw/ directories has been replaced with dialogs
* Detect that C++17 is available, needed due to libancient
* Failed detection of `update-mime-database` did not halt ./configure causing errors later during make instead

Version 0.2.102
===============

Expand Down
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for ocp 0.2.102.
# Generated by GNU Autoconf 2.71 for ocp 0.2.103.
#
# Report bugs to <[email protected]>.
#
Expand Down Expand Up @@ -611,8 +611,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='ocp'
PACKAGE_TARNAME='ocp'
PACKAGE_VERSION='0.2.102'
PACKAGE_STRING='ocp 0.2.102'
PACKAGE_VERSION='0.2.103'
PACKAGE_STRING='ocp 0.2.103'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_URL=''

Expand Down Expand Up @@ -1477,7 +1477,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures ocp 0.2.102 to adapt to many kinds of systems.
\`configure' configures ocp 0.2.103 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1543,7 +1543,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of ocp 0.2.102:";;
short | recursive ) echo "Configuration of ocp 0.2.103:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1770,7 +1770,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
ocp configure 0.2.102
ocp configure 0.2.103
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
Expand Down Expand Up @@ -2656,7 +2656,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by ocp $as_me 0.2.102, which was
It was created by ocp $as_me 0.2.103, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -3628,7 +3628,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
ac_compiler_gnu=$ac_cv_c_compiler_gnu


printf "%s\n" "#define DLLVERSION 0x00000266" >>confdefs.h
printf "%s\n" "#define DLLVERSION 0x00000267" >>confdefs.h



Expand Down Expand Up @@ -18099,7 +18099,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by ocp $as_me 0.2.102, which was
This file was extended by ocp $as_me 0.2.103, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -18163,7 +18163,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
ocp config.status 0.2.102
ocp config.status 0.2.103
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_INIT([ocp],[0.2.102],[[email protected]])
AC_DEFINE(DLLVERSION, [0x00000266])
AC_INIT([ocp],[0.2.103],[[email protected]])
AC_DEFINE(DLLVERSION, [0x00000267])

AC_CANONICAL_HOST

Expand Down
50 changes: 21 additions & 29 deletions ocp.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# rpm spec file for RedHat / Fedora linux

%define name ocp
%define version 0.2.102
%define version 0.2.103

# Default to _with_libmad if neither _with_libmad or _without_libmad is defined
%{!?_with_libmad: %{!?_without_libmad: %define _with_libmad --with-libmad}}
Expand Down Expand Up @@ -42,34 +42,26 @@ frontend, with some few optional features in graphical. Plays modules, sids,
wave and mp3

%changelog
Changes from version 0.2.101 to 0.2.102:
* IT files did not detect reverse jumps are song being looped
* IT playback plugin did not reset all state variables on load
* XDG Base Directory compliance
* Comply with both $XDG_CONFIG_HOME and $XDG_DATA_HOME
* Migrate $HOME/.ocp/
* Add support for files compressed on Amiga systems with the system built-in
compression routines using the library known as 'ancient'
* Updates for building on Haiku
* If iconv CP437 fails to load, fall back to CP850 and then ASCII
* Some few calls to iconv() were not protected against "NULL"
* Add MIME for entries missing in the freedesktop MIME database
* Update desktop file with additional MIME types
* Call update_mime_database and update_desktop_database
* Starting ocp with files as arguments stopped no loger was working
* If a file fails to load, display error message in the fileselector
* Replace setup:/alsa/*.dev files with a single setup:/alsaconfig.dev dialog
* nprintf() didn't limit UTF-8 strings correctly
* Only accept .TAR files that contains the ustar magic
* If playback plugin are not operational, multiple corner-case issues has now
been fixed
* When editing fixed UTF-8 text-fields, backspace / delete-key would not
unreserve the buffer-space, artificailly shrinking the available text until
a new edit was initialized
* Add the rReverb and iReverb plugins from the original DOS project, with some
additional fixes
* Show both panning/balance and chorus/reverb at the same time if they both can
be active and can fit on screen
Changes from version 0.2.102 to 0.2.103:

* If an autoload plugin fails to load, do not hard fail if all the core plugins
are statically linked in.
* version 0.2.91 update missed setting the color for XM files in ocp.ini
* Fix logic for setting screenmode vs ocp.ini. This is now the scheme and
default values that SDL, SDL2 and X11 drivers use:
[screen]
screentype=5 ; 0=80x25, 1=80x30, 2=80x50, 3=80x60, 4=132x25, 5=132x30, 6=132x50, 7=132x60, 8=custom
fontsize=1 ; if screentype=8: 0=8x8, 1=8x16
winwidth=1024 ; if screentype=8
winheight=768 ; if screentype=8
* insttype= setting in ocp.ini was no longer working and it was not maintained
between songs.
* Remove more external symbols from the devp*.so and devw*.so files, and API
updates.
* setup:/devp/ and setup:/devw/ directories has been replaced with dialogs
* Detect that C++17 is available, needed due to libancient.
* Failed detection of `update-mime-database` did not halt ./configure causing
errors later during make instead.

%prep
%setup -q -n %{name}-%{version}
Expand Down

0 comments on commit 2e88e84

Please sign in to comment.