Skip to content

Commit

Permalink
Release Spectrum3D v2.7.2
Browse files Browse the repository at this point in the history
Release notes for Spectrum3d version 2.7.2:

This new release corrects a bug when diplay was paused on Ubuntu 7.10.

* display.c : swap buffer has been changed : it is called only when drawing is effective, not during pauses (diplay problem);

---
filename: 'spectrum3d-2.7.2.tar.gz'
sha256: '274ec3cb16070e2441d3d202fce946c4c4c22c9ac6275d950ad989ed5111e4cb'
...
  • Loading branch information
Bernard Victor Delvaux committed Nov 25, 2017
1 parent b710839 commit ffce9e8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2017-11-25 Bernard Victor Delvaux <[email protected]>
Version : Spectrum3d-2.7.2 :
* display.c : swap buffer has been changed : it is called only when drawing is effective, not during pauses (diplay problem);

2016-12-24 Bernard Victor Delvaux <[email protected]>
Version : Spectrum3d-2.7.1 :
* events.c : Some new key/mouse bindings and gestures;
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.69 for Spectrum3d 2.7.1.
# Generated by GNU Autoconf 2.69 for Spectrum3d 2.7.2.
#
# Report bugs to <[email protected]>.
#
Expand Down Expand Up @@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='Spectrum3d'
PACKAGE_TARNAME='spectrum3d'
PACKAGE_VERSION='2.7.1'
PACKAGE_STRING='Spectrum3d 2.7.1'
PACKAGE_VERSION='2.7.2'
PACKAGE_STRING='Spectrum3d 2.7.2'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_URL='https://sourceforge.net/projects/spectrum3d/'

Expand Down Expand Up @@ -1300,7 +1300,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 Spectrum3d 2.7.1 to adapt to many kinds of systems.
\`configure' configures Spectrum3d 2.7.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1367,7 +1367,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of Spectrum3d 2.7.1:";;
short | recursive ) echo "Configuration of Spectrum3d 2.7.2:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1477,7 +1477,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
Spectrum3d configure 2.7.1
Spectrum3d configure 2.7.2
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1846,7 +1846,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 Spectrum3d $as_me 2.7.1, which was
It was created by Spectrum3d $as_me 2.7.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2711,7 +2711,7 @@ fi

# Define the identity of the package.
PACKAGE='spectrum3d'
VERSION='2.7.1'
VERSION='2.7.2'


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -5668,7 +5668,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 Spectrum3d $as_me 2.7.1, which was
This file was extended by Spectrum3d $as_me 2.7.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -5735,7 +5735,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
Spectrum3d config.status 2.7.1
Spectrum3d config.status 2.7.2
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
############### INITIALIZE EVERYTHING ######################

AC_INIT([Spectrum3d],
[2.7.1],
[2.7.2],
[[email protected]],
[spectrum3d],
[https://sourceforge.net/projects/spectrum3d/])
Expand Down
6 changes: 3 additions & 3 deletions src/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,8 @@ gboolean display_spectro(Spectrum3dGui *spectrum3dGui){
if (spectrum3dGui->lineScale == TRUE) {
drawScale();
}

}

/* The call to 'swap buffer' or 'end gl' function, depending on the use of gtkglext1, gtkglext3 or sdl */
/* The call to 'swap buffer' or 'end gl' function, depending on the use of gtkglext1, gtkglext3 or sdl */
#ifdef GTKGLEXT3
gtk_widget_end_gl (spectrum3dGui->drawing_area, TRUE);
#elif defined GTKGLEXT1
Expand All @@ -335,6 +333,8 @@ gboolean display_spectro(Spectrum3dGui *spectrum3dGui){
#elif defined HAVE_LIBSDL
SDL_GL_SwapBuffers();
#endif

}


return TRUE;
Expand Down

0 comments on commit ffce9e8

Please sign in to comment.