Skip to content

Commit b5b611e

Browse files
committed
Prepare v3.1.2
1 parent 7f13dfa commit b5b611e

File tree

4 files changed

+56
-15
lines changed

4 files changed

+56
-15
lines changed

Changelog

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
Version 3.1.2
2+
=============
3+
Bugfix release
4+
5+
* [QOA] Failed to compile on some systems.
6+
* [SID] Remove debug messages sent to the console
7+
* [FontSize control logic]
8+
* Was not the consistent between SDL and X11 driver.
9+
* Was not possible to change away from 8x16 if window could not grow and fit 16x32.
10+
* Help screen would reset font-size on X11. Now help screen follow to global selected font size instead.
11+
* [Windows]
12+
* OCP.INI update Messages: Do not use escape codes, use correct wide-char path and refer to `del` instead of `rm`.
13+
* Debug messages with paths for HomePath etc, now use wide-char paths.
14+
* Use wide-char version of fopen() when opening OCP.INI (support international user-names)
15+
* [MIDI]
16+
* Font-browser dialog had minor hickup in scrolling, and incorrect highlight for "No soundfont found".
17+
* When file wraps, do no free data and reload the file - reuse the already loaded data.
18+
* Remove double free() when attempting to load an invalid MIDI fil
19+
* [CURL]
20+
* Mention CURL in README.md and ocp.spec
21+
* Improve errors-messages if unable to launch the helper program
22+
123
Version 3.1.1
224
=============
325
Bugfix release

configure

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.72 for ocp 3.1.1.
3+
# Generated by GNU Autoconf 2.72 for ocp 3.1.2.
44
#
55
# Report bugs to <stian.skjelstad@gmail.com>.
66
#
@@ -604,8 +604,8 @@ MAKEFLAGS=
604604
# Identity of this package.
605605
PACKAGE_NAME='ocp'
606606
PACKAGE_TARNAME='ocp'
607-
PACKAGE_VERSION='3.1.1'
608-
PACKAGE_STRING='ocp 3.1.1'
607+
PACKAGE_VERSION='3.1.2'
608+
PACKAGE_STRING='ocp 3.1.2'
609609
PACKAGE_BUGREPORT='stian.skjelstad@gmail.com'
610610
PACKAGE_URL=''
611611

@@ -1488,7 +1488,7 @@ if test "$ac_init_help" = "long"; then
14881488
# Omit some internal or obsolete options to make the list less imposing.
14891489
# This message is too long to be a string in the A/UX 3.1 sh.
14901490
cat <<_ACEOF
1491-
'configure' configures ocp 3.1.1 to adapt to many kinds of systems.
1491+
'configure' configures ocp 3.1.2 to adapt to many kinds of systems.
14921492

14931493
Usage: $0 [OPTION]... [VAR=VALUE]...
14941494

@@ -1554,7 +1554,7 @@ fi
15541554

15551555
if test -n "$ac_init_help"; then
15561556
case $ac_init_help in
1557-
short | recursive ) echo "Configuration of ocp 3.1.1:";;
1557+
short | recursive ) echo "Configuration of ocp 3.1.2:";;
15581558
esac
15591559
cat <<\_ACEOF
15601560

@@ -1789,7 +1789,7 @@ fi
17891789
test -n "$ac_init_help" && exit $ac_status
17901790
if $ac_init_version; then
17911791
cat <<\_ACEOF
1792-
ocp configure 3.1.1
1792+
ocp configure 3.1.2
17931793
generated by GNU Autoconf 2.72
17941794

17951795
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -2702,7 +2702,7 @@ cat >config.log <<_ACEOF
27022702
This file contains any messages produced by compilers while
27032703
running configure, to aid debugging if configure makes a mistake.
27042704

2705-
It was created by ocp $as_me 3.1.1, which was
2705+
It was created by ocp $as_me 3.1.2, which was
27062706
generated by GNU Autoconf 2.72. Invocation command line was
27072707

27082708
$ $0$ac_configure_args_raw
@@ -3693,20 +3693,20 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
36933693

36943694

36953695
cat >>confdefs.h <<_ACEOF
3696-
#define DLLVERSION `printf 0x%04x%02x%02x 3 1 1`
3696+
#define DLLVERSION `printf 0x%04x%02x%02x 3 1 2`
36973697
_ACEOF
36983698

36993699
MAJOR_VERSION=3
37003700

37013701
MINOR_VERSION=1
37023702

3703-
PATCH_VERSION=1
3703+
PATCH_VERSION=2
37043704

37053705
printf "%s\n" "#define OCP_MAJOR_VERSION 3" >>confdefs.h
37063706

37073707
printf "%s\n" "#define OCP_MINOR_VERSION 1" >>confdefs.h
37083708

3709-
printf "%s\n" "#define OCP_PATCH_VERSION 1" >>confdefs.h
3709+
printf "%s\n" "#define OCP_PATCH_VERSION 2" >>confdefs.h
37103710

37113711

37123712

@@ -21961,7 +21961,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2196121961
# report actual input values of CONFIG_FILES etc. instead of their
2196221962
# values after options handling.
2196321963
ac_log="
21964-
This file was extended by ocp $as_me 3.1.1, which was
21964+
This file was extended by ocp $as_me 3.1.2, which was
2196521965
generated by GNU Autoconf 2.72. Invocation command line was
2196621966

2196721967
CONFIG_FILES = $CONFIG_FILES
@@ -22025,7 +22025,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
2202522025
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2202622026
ac_cs_config='$ac_cs_config_escaped'
2202722027
ac_cs_version="\\
22028-
ocp config.status 3.1.1
22028+
ocp config.status 3.1.2
2202922029
configured by $0, generated by GNU Autoconf 2.72,
2203022030
with options \\"\$ac_cs_config\\"
2203122031

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
m4_define([MAJOR_VERSION], [3])
22
m4_define([MINOR_VERSION], [1])
3-
m4_define([PATCH_VERSION], [1])
3+
m4_define([PATCH_VERSION], [2])
44
AC_INIT([ocp],[MAJOR_VERSION.MINOR_VERSION.PATCH_VERSION],[stian.skjelstad@gmail.com])
55
AC_DEFINE_UNQUOTED(DLLVERSION, `printf 0x%04x%02x%02x MAJOR_VERSION MINOR_VERSION PATCH_VERSION`)
66
AC_SUBST([MAJOR_VERSION], [MAJOR_VERSION])

ocp.spec

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# rpm spec file for RedHat / Fedora linux
22

33
%define name ocp
4-
%define version 3.1.1
4+
%define version 3.1.2
55

66
Name: %{name}
77
Version: %{version}
@@ -34,7 +34,26 @@ frontend, with some few optional features in graphical. Plays modules, sids,
3434
wave and mp3
3535

3636
%changelog
37-
Changes from version 3.0.1 to 3.1.1:
37+
Changes from version 3.1.1 to 3.1.2:
38+
* [QOA] Failed to compile on some systems.
39+
* [SID] Remove debug messages sent to the console
40+
* [FontSize control logic]
41+
* Was not the consistent between SDL and X11 driver.
42+
* Was not possible to change away from 8x16 if window could not grow and fit 16x32.
43+
* Help screen would reset font-size on X11. Now help screen follow to global selected font size instead.
44+
* [Windows]
45+
* OCP.INI update Messages: Do not use escape codes, use correct wide-char path and refer to `del` instead of `rm`.
46+
* Debug messages with paths for HomePath etc, now use wide-char paths.
47+
* Use wide-char version of fopen() when opening OCP.INI (support international user-names)
48+
* [MIDI]
49+
* Font-browser dialog had minor hickup in scrolling, and incorrect highlight for "No soundfont found".
50+
* When file wraps, do no free data and reload the file - reuse the already loaded data.
51+
* Remove double free() when attempting to load an invalid MIDI fil
52+
* [CURL]
53+
* Mention CURL in README.md and ocp.spec
54+
* Improve errors-messages if unable to launch the helper program
55+
56+
Changes from version 3.1.0 to 3.1.1:
3857
* [MIDI] loading files would cause crash (null dereference) if ~/.timidity.cfg not present
3958
* Avoid using extended SED syntax in stuff/Makefile
4059

0 commit comments

Comments
 (0)