Skip to content

Commit b26ea2c

Browse files
committed
license upgraded to GPLv3
Readme upated, screenshot added version bump to 1.4.0
1 parent e9f96e9 commit b26ea2c

16 files changed

+634
-296
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.9)
22
project( EASSynth
3-
VERSION 1.3.0
3+
VERSION 1.4.0
44
DESCRIPTION "Sonivox EAS for Linux and Qt" )
55

66
set(CMAKE_CXX_STANDARD 11)

LICENSE

Lines changed: 618 additions & 282 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ This project is a Linux MIDI Synth library based on the Sonivox EAS Synthesizer
55
It is a real time GM synthesizer without needing external soundfonts, using embedded samples instead. It consumes very little resources, so
66
it may be indicated in Linux projects for small embedded devices.
77

8+
![Screenshot](screenshot.png)
9+
810
A multiplatform alternative fork of this project can be found here: [multiplatform-sonivoxeas](https://github.com/pedrolcl/multiplatform-sonivoxeas).
911

1012
The library uses ALSA Sequencer MIDI input and PulseAudio output. Complete compile-time dependencies are:
@@ -35,7 +37,7 @@ Copyright (C) 2016-2022 Pedro López-Cabanillas.
3537

3638
This program is free software; you can redistribute it and/or modify
3739
it under the terms of the GNU General Public License as published by
38-
the Free Software Foundation; either version 2 of the License, or
40+
the Free Software Foundation; either version 3 of the License, or
3941
(at your option) any later version.
4042

4143
This program is distributed in the hope that it will be useful,

cmdlnsynth/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This library is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
7+
the Free Software Foundation; either version 3 of the License, or
88
(at your option) any later version.
99
1010
This library is distributed in the hope that it will be useful,

guisynth/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This library is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
7+
the Free Software Foundation; either version 3 of the License, or
88
(at your option) any later version.
99
1010
This library is distributed in the hope that it will be useful,

guisynth/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This library is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
7+
the Free Software Foundation; either version 3 of the License, or
88
(at your option) any later version.
99
1010
This library is distributed in the hope that it will be useful,

guisynth/mainwindow.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This library is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
7+
the Free Software Foundation; either version 3 of the License, or
88
(at your option) any later version.
99
1010
This library is distributed in the hope that it will be useful,

libsvoxeas/filewrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This library is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
7+
the Free Software Foundation; either version 3 of the License, or
88
(at your option) any later version.
99
1010
This library is distributed in the hope that it will be useful,

libsvoxeas/filewrapper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This library is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
7+
the Free Software Foundation; either version 3 of the License, or
88
(at your option) any later version.
99
1010
This library is distributed in the hope that it will be useful,

libsvoxeas/programsettings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This library is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
7+
the Free Software Foundation; either version 3 of the License, or
88
(at your option) any later version.
99
1010
This library is distributed in the hope that it will be useful,

0 commit comments

Comments
 (0)