Skip to content

Commit

Permalink
0.16.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalcieslak committed Feb 1, 2020
1 parent f4c4450 commit cc05788
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
unreleased:
harmonyseq 0.16.1:
- Maintenance only release.
- Ported user interface code to use GTK3 and gtkmm-3.0 / 3.24.
- Fixed compatibility with modern C++ compilers.
- Cleaned up unnecessary autotool files.
Expand Down Expand Up @@ -56,7 +57,7 @@ harmonyseq 0.13 "polyphony"
- Included harmonySEQ icon and used it used widely
- Basic shortcuts support
- Added integration with desktop - menu entry, icon, MIME type support

harmonyseq 0.12
- Added ability to bind multiple melodies to one sequencer
- Added Play/Pause button
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.67])
AC_INIT([harmonySEQ], [0.16], [https://bugs.launchpad.net/harmonyseq])
AC_INIT([harmonySEQ], [0.16.1], [https://bugs.launchpad.net/harmonyseq])
AC_CONFIG_SRCDIR([src/Sequencer.h])
AC_CONFIG_HEADERS([src/config.h])
AM_INIT_AUTOMAKE([harmonySEQ], [0.16])
AM_INIT_AUTOMAKE([harmonySEQ], [0.16.1])
AM_GNU_GETTEXT_VERSION([0.18.1])
AM_GNU_GETTEXT([external])

Expand Down
11 changes: 7 additions & 4 deletions src/Files.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,16 @@ bool LoadFile(Glib::ustring file){
//File is older
sprintf(temp,_("This file was created by older harmonySEQ version (%d.%d)"),VA,VB);
sprintf(temp2,_("This file contains data in format, which is too old."));
if(VA == 0 && VB == 15){
Info(temp,_("harmonySEQ will convert this file automatically. This may take a while."));
e_flag = ConvertFile_0_15_to_0_16(&kf);
}else{
if(VA == 0 && VB < 15){
// Unsupported.
Info(temp2,_("Sorry, but harmonySEQ cannot convert this file to current format.\nThis applies only to files from harmonySEQ older than 0.15.\n\nIf you really need to open this file, try downloading harmonySEQ 0.15, and using it to convert this file to 0.15 format, which will make it openable with this harmonySEQ version."));
return 1;
}
if(VA == 0 && VB == 15){
Info(temp,_("harmonySEQ will convert this file from 0.15 to 0.16 format. This may take a while."));
e_flag = ConvertFile_0_15_to_0_16(&kf);
VA = 0; VB = 16; VC = 0;
}

}

Expand Down
4 changes: 2 additions & 2 deletions src/global.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
#include <gdkmm/pixbuf.h>
#include "gettext.h"

#define VERSION_STRING "0.16"//VERSION is provided by autotools in config.h
#define VERSION_STRING "0.16.1"//VERSION is provided by autotools in config.h
#define VERSION_A 0
#define VERSION_B 16
#define VERSION_C 0
#define VERSION_C 1

#define ENDL "\n"
//Internal resolution of ALSA sequencer.
Expand Down

0 comments on commit cc05788

Please sign in to comment.