2018-07-07  Iban Cereijo  <ibancg@users.noreply.github.com>

	Lingot 1.0.1
	Fixed problems in the tarball regarding the unit tests.

2018-07-06  Iban Cereijo  <ibancg@users.noreply.github.com>

	Preparing release 1.0.0

	Makefile: added lingot-resources.c to CLEANFILES

2018-07-05  Iban Cereijo  <ibancg@users.noreply.github.com>

	Checking for glib-compile-resources in the configure script.

	Added bootstrap script.

	Updated i18n.

	Glade files are now bundled in GResources. Minor graphic updates.

	Smaller sleeping time for ALSA, in case we have small buffers.

	Removed compilation warnings by avoiding rendering to off-screen surfaces. The performance is good and we make less use of dynamic memory. More compliant with libcairo and GTK+ workflow. Removed XMP icon.

	Updated icon properties.

2018-07-04  Iban Cereijo  <ibancg@users.noreply.github.com>

	Renamed pixmaps -> icons and installing in /usr/share/icons/hicolor/ instead of /usr/share/pixmaps, as recommended by the AppStream guidelines in Debian.

	Added 'check' target to Makefile to pass unit tests. Fixed distcheck target.

2018-07-03  Iban Cereijo  <ibancg@users.noreply.github.com>

	Fixed compilation with PulseAudio disabled.

2018-07-03  Iban Cereijo  <ibancg@users.noreply.github.com>

	Fixed appdata file.
	Renamed:

	lingot.desktop -> org.nongnu.lingot.desktop
	lingot.appdata.xml -> org.nongnu.lingot.appdata.xml

2018-07-02  Iban Cereijo  <ibancg@users.noreply.github.com>

	Added appdata into the dist tarball.

	Added GNome AppData from file created by Ankur Sinha.

2018-07-01  Iban Cereijo  <ibancg@users.noreply.github.com>

	Applied suggestions by Nicolas Boulenguez: removed unused files.

2018-06-30  Iban Cereijo  <ibancg@users.noreply.github.com>

	lingot-audio-alsa: non-blocking IO and default buffer size for sv-54209

	lingot-audio-alsa: trying non-blocking read for bug sv-54209

	Updated NEWS and i18n files.

	lingot-audio-alsa: fixing slow read from HW devices (bug sv-54209)

	Updated version number to 1.0.0b1.

2018-06-28  Iban Cereijo  <ibancg@users.noreply.github.com>

	Merge pull request #10 from ibancg/patches-nicolas-03
	Patches nicolas 03

	Revert "Insert lingot_core_[start|stop] into lingot_core_[new|destroy]."
	This reverts commit 7ebeb306cb9950c71e72214d23d69787f8b6a661.

	Revert "Separate chebychev filter stuff from memory allocation (new and destroy)."
	This reverts commit f322ed7c7f04c096bd81e8ecb5ce1262ae324d9b.

2018-06-13  Iban Cereijo  <ibancg@users.noreply.github.com>

	Generate ChangeLog from git history.

2018-06-12  Iban Cereijo  <ibancg@users.noreply.github.com>

	Corrections after the merge

	Merge branch 'master' into patches-nicolas-03

2018-06-12  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>

	Fix various warnings. * Fix two missing #include "lingot-io-config.h". * Remove unused variables. * Make unused but required parameters explicit. * Mark some variables as unsigned, disambiguing some comparisons. Many more should be unsigned, avoiding such risks and implicit conversions. * Style: const static -> static const. * Add some const qualifiers.

	Fix position of some const qualifiers.
	const foo * bla: the referenced aera is read-only.
	foo * const bla: bla always referenc the same writable aera.

	Really compile with -Wall, add -Wextra.
	CXXFLAGS affects C++, not C.

	Remove unneeded LIBFFTW use outside lingot-fft.[ch].

	Improve comments for scale allocation.

	Separate chebychev filter stuff from memory allocation (new and destroy).

2018-06-12  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>

	Insert lingot_core_[start|stop] into lingot_core_[new|destroy].
	These procedures were always called together.
	This simplifies the interface without changing the behaviour.

	Remove this block from _stop as it has no use right before _destroy.
	int spd_size = core->conf.fft_size / 2;
	memset(core->SPL, 0, spd_size * sizeof(FLT));
	core->freq = 0.0;

2018-06-12  Iban Cereijo  <ibancg@users.noreply.github.com>

	Updated i18n and added script for generating Changelog
	* ES and GL translations updated.
	* Removed other fuzzy translations.
	* Small corrections.

	Updated i18n messages.

2018-06-11  Iban Cereijo  <ibancg@users.noreply.github.com>

	Extracted load/save operations to lingot-io-config.{c,h}
	Some other simplifications.

	Fixing some parameters not being persisted.

	Merge branch 'master' of github.com:ibancg/lingot

	Some simplifications.
	No need to check not null before free()

	Avoiding some hard-coded values

	Fixes SIGSEGV

2018-06-10  Iban Cereijo  <ibancg@users.noreply.github.com>

	Revert "Applied patches from Nocilas Boulenguez (after converting them to unix format)."
	This reverts commit f14452c1ffcbfff0a48f62a79aabb22a85d311e0.

	Fixing unit tests.

2018-06-10  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>

	Install less documentation, clean more files.
	INSTALL is of not useful outside the source tree.
	intltool-*.in were probably installed by error.
	(is src/lingot-logo.xpm useful?)

	intltool-*.in and po/Makefile.in.in may be removed by distclean.
	DISTCLEANFILES only considers files, not directories.

	In README, tell the user to create m4/, else intltoolize fails.

2018-06-10  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>

	Declare some parameters const.

	Avoid dynamic allocation for type LingotConfig.

	Avoid dynamic allocation for type LingotFFTPlan.

2018-06-10  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>

	Avoid dynamic allocation for type LingotScale.
	The pointer type was freed outside lingot-config-scale.c,
	so the patch should probably be checked.

	A NULL test is replaced with a readable enumeration.

2018-06-10  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>

	Avoid dynamic allocation for type LingotCore.

	Avoid dynamic allocation for type LingotGauge.

	Avoid dynamic allocation for type LingotFilter.

	Remove unused _ names for audio handler and audio system properties structs.

	Document -c option in manual page.

2018-06-10  Iban Cereijo  <ibancg@users.noreply.github.com>

	Remove trailing carriage return characters.

2018-06-10  Jairo Chapela-Martínez  <jairochapela@gmail.com>

	Applied patches from Nocilas Boulenguez (after converting them to unix format).

2018-06-09  Iban Cereijo  <ibancg@users.noreply.github.com>

	Fixes combo boxes formatting drop list at 6 columns.

	Improved docstrings, code formatting and added unit tests.

	Fixed wrong frequency/note when setting min/max freqs via GUI.

	Removed unnecessary runtime messages.

2018-06-08  Iban Cereijo  <ibancg@users.noreply.github.com>

	Updated README, with autotools sequence

	Removed unnecessary files from VCS

	Removing unnecessary filed from the VCS

	Updated README file.

	Changed names in copyright notices.

	More corrections regarding conditional compilation of audio modules.

	Fixed compilation when we disable some audio systems. Removed compilation warnings.

2018-06-07  Iban Cereijo  <ibancg@users.noreply.github.com>

	Updated copyright notices. Updated NEWS, Changelog and THANKS files.

	Removing unnecessary files from VCS.

	Removing unnecessary files from the VCS.

	Ignoring and removing files from repository.

	Updating rest of the GUI to GTK+ 3.10

2018-06-06  Iban Cereijo  <ibancg@users.noreply.github.com>

	Adapting autotools and main UI window to Gtk 3.1

2018-06-05  Iban Cereijo  <ibancg@users.noreply.github.com>

	Merge pull request #2 from ibancg/patches-nicolas
	Patches nicolas

2018-06-05  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>

	Add a minimal manual page

2018-06-04  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>

	Be more strict with optional audio systems.
	Ensure unselected components are never called by not compiling them.
	Stop the program with an assertion if the audio_system is invalid
	or unset when calling a lingot_audio_ routine other than _new.

	Check overflow in audio system list.

	Avoid dynamic allocation for sample rates.

	Allocate read buffer on the stack instead of the heap.
	In pulseaudio, remove a duplicate computation of size_in_bytes.

	Avoid dynamic allocation for LingotAudioHandler.
	Use audio->audio_system==-1 instead of audio==NULL.

	Update autotool stuff.
	Autoconf documentation recommends the m4 subdirectory.
	Intltool documentation recommends DISTCLEANFILES.

	Avoid dynamic allocation for LingotAudioSystemProperties.
	This patch simplifies the code and fixes a memory leak
	(the structs themselves were never deallocated).

	Description: add GenericName to desktop file Also add keywords. Bug-Debian: https://bugs.debian.org/841756 Author: Petter Reinholdtsen <pere@hungry.com> Author: Nicolas Boulenguez <nicolas@debian.org>

	Allow compilation with -format-security

2017-02-11  Iban Cereijo  <ibancg@users.noreply.github.com>

	Merge pull request #1 from trebmuh/patch-1
	Adds a French menu item comment

2017-02-11  Olivier Humbert  <trebmuh@users.noreply.github.com>

	Adds a French menu item comment

2017-02-10  Iban Cereijo  <ibancg@users.noreply.github.com>

	Merge branch 'master' of github.com:ibancg/lingot

2017-02-10  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Updated i18n Spanish translation.

	Fixed SIGABRT when selecting FFT size 256. Fixed i18n issues: default scale strings (among others) are now translatable.

	Fixed SIGSEGV when introducing empty string editing scale.

	Fixed several vulnerabilities using sprintf, using snprintf instead (patch by Hamid Zamani).

2013-10-22  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Updated i18n Spanish translation.

2013-10-17  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed SIGABRT when selecting FFT size 256. Fixed i18n issues: default scale strings (among others) are now translatable.

2013-07-04  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed SIGSEGV when introducing empty string editing scale.

2013-07-03  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed several vulnerabilities using sprintf, using snprintf instead.

2013-04-12  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag 0.9.2b8 for changeset dc8ff59bcf49

	Tagging 0.9.2b8

	Added tag 0.9.2b8 for changeset f7533d828f93

2013-03-14  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Making maximum frequency combobox entry focusable.

	Updating copyright statement.

2013-03-13  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Making input device combobox entry editable.

2013-03-07  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Made some config options obsolete. Moving some config parameters to internal config options. Removed old code.

	Improving layout.

2013-03-06  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added octave combo. Improved tooltips.

	Making some config options deprecated.

2013-03-03  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Removing unused code.

2013-03-02  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Using "optimize internal parameters" check button. Removing old code.

2013-02-13  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Changed lingot_config parameter specs.

	Using CUnit.

	Fixed bug in lingot_config_scale_get_closest_note

2013-02-12  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Modifying tests.

	Fixed bug in lingot-core (frequencies_related function).

	Implementing frequency range controls. Fixed problem in scale::closest_index (now encapsulated in lingot_config_scale).

2013-02-11  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Populating frequency response combos.

	Implementing minimum_frequency and maximum_frequency items.

2013-02-09  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Small changes before modifying the GUI.

2013-02-07  Ibán Cereijo  <ibancg@users.noreply.github.com>

	More robust to little/big endian changes.

	Supported float sample formats with ALSA and PulseAudio. OSS support can be now enabled from the configuration script.

	Supported float sample formats in ALSA. Made OSS code conditional. Organized code in lingot-audio module.

	Dev commit: detected sound wrap problem.

2013-02-06  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Dev commit imlpementing the PulseAudio sample rate estimator.

2013-02-05  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Default audio system is now configurable. Passing pa_buffer_attr to PulseAudio. Adding checks to configure.

2013-02-04  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Using 44100 Hz as the default frequency again. Recovered final iteration over the whole temporal buffer (optional).

	better audio buffers sizing up.

2013-02-02  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag 0.9.2b7 for changeset 6a94e99da837

	Updated translations.

	Added tag 0.9.2b7 for changeset 8965bc764429

	New Czech translation and typo fixed by Karel Voln?.

	Added tag 0.9.2b7 for changeset 26c16f50a9de

	New beta version.

	Trying final NR iteration over the windowed FFT-sized temporal buffer instead of the whole temporal buffer. Good response. Recovered some old signal processing functions for comparison purposes.

2013-01-29  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag 0.9.2b6 for changeset b42c5ce0fdda

	Improved frequency locker and tuned parameters. Changed default sample frequency to 48000.

2013-01-28  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Removing obsolete parameters.

2013-01-27  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed compilation problems when disabling some components in configure script.

	Implementing frequency locker.

	Implementing frequency locker.

2013-01-24  Ibán Cereijo  <ibancg@users.noreply.github.com>

	TODO on tolerance.

	Fixed bug reading FFT size. Implemented median filter for noise. Added a maximum frequency parameter.

2013-01-23  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Removing obsolete code. Replaced moving average filter using lingot_filter module. Using cairo_clip to bound the spectrum drawing area.

2013-01-22  Ibán Cereijo  <ibancg@users.noreply.github.com>

	cairo drawing optimized.

	Using background cairo surfaces.

	Optimizing spectrum drawing.

2013-01-21  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Migration to libcairo almost finished.

2013-01-17  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed aspect ratio for the main window. Starting to write the spectrum with vector graphics.

2013-01-16  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Populating FFT combo.

	Configuring resize properties.

2013-01-14  Ibán Cereijo  <ibancg@users.noreply.github.com>

	First version running with gtk-3.0.

	Changed gauge design.

2013-01-13  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Adding functions to LingotConfigScale.

2013-01-12  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Migrating drawing to libcairo.

	Converted GUI to GTK+ 2.24 (GtkBuilder format).

2013-01-11  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Migrating to GTK+ 2.24 as a transition to GTK+3

2013-01-10  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Modified frequency finding algorithm. Suppressed warnings.

2013-01-08  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Modified LingotComplex to make it compatible with fftw_complex. Started implementing (second) Quinn's FFT-bin interpolator.

2013-01-07  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Implemented moving average filter for computing noise level.

	Implemented moving average filter for computing noise level. Added some 'const'.

2013-01-06  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Updated copyright year.

	Adding unit tests.

	Removed unused variables in lingot-config. Reading double parameters instead of float from config files. Adding unit tests.

2012-01-02  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed #35222

	ChangeLog modified.

	Fixed #35220, #35221

2011-12-28  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixing bug #35183

2011-12-27  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixing bug #35183

2011-12-10  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added italian translation by Stefano Cereda.

2011-12-07  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Encapsulating FFT code inside lingot-fft module.

2011-12-05  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Merge with d142716d8ed9f37aab7a17f389e82efbd5c7b4ab

	Minor changes to LingotComplex struct to recover the original performance in FFT computation.

2011-11-30  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Next development iteration.

	Added tag 0.9.2b2 for changeset 3737b685e996

	minor changes

	Added tag 0.9.2b2 for changeset 229b50fb6fe1

	Fixed SIGSEGV when there's no scale in config file (thanks to Karel Voln?). Changed some i18n msgid's.

2011-11-29  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Next development iteration.

	Added tag 0.9.2b1 for changeset d295ed3e157a

	changes after distribution check fail

	Added tag 0.9.2b1 for changeset 43f0b7248225

	Fixed some i18n msgid's

	Added year of translation to translator-credits in .po files.

	Allowed to select JACK port.

	array resize.

	i18n

2011-11-28  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed some i18n msgid's

	Fixed some i18n msgid's

	Config validation from GUI.

	Enhanced some error messages. Implemented task #10683: config file validation.

2011-11-25  Ibán Cereijo  <ibancg@users.noreply.github.com>

	little optimization creating libfftw plan.

	Added libfftw support.

	The audio system combobox shows only the available options. Fixed compilation without PulseAudio problem.

2011-11-24  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Autodetection of PulseAudio sources. Added units to the config file.

2011-11-23  Ibán Cereijo  <ibancg@users.noreply.github.com>

	removed cancel option from lingot-audio.

	Added PulseAudio support with simple API.

	Adding PulseAudio support. Added a watchdog timer for thread cancellation in lingot-audio.

	Added PulseAudio to autotools scripts.

2011-11-22  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed potential problem in ALSA and OSS when read function captures less samples than the desired amount.

2011-11-21  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Adding PulseAudio support.

	Flickering avoided.

	Adding PulseAudio support.

	Adding PulseAudio support.

	ALSA cards autodetection.

2011-09-27  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Fixed bug #643435 in debian: error: format not a string literal and no format arguments [-Werror=format-security] Removed compilation warning [-Wunused-but-set-variable]

2011-08-22  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Merge with d83f8fa6259a033b1c4d0c20bc4fe84cfa9cfae6

	Next development iteration

	Added tag 0.9.1 for changeset 965cb55636a4

	released lingot 0.9.1

2011-08-13  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Adding configure script to the repository.

	Adding configure script to the repository.

	Adding configure script to the repository.

	Adding configure script to the repository.

	Adding configure script to the repository.

	Adding configure script to the repository.

	Adding configure script to the repository.

	Fixed bug #34007.

	Avoiding some warnings. Sgtarting implementing function for audio card autodetection.

2011-04-13  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added 48K sample rate in OSS and ALSA.

	Merge with 25f0bfcc0df4787a8d2debfccaeeb2feaff00587

	Added 48K sample rate in OSS and ALSA.

2011-04-11  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Removed some output messages.

	Fixed bug #33046 (#622038 in debian)

2011-02-22  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Adding lingot.pot in the distribution files.

	Adding lingot.pot in the distribution files.

	Next development iteration.

2011-02-21  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag v0_9_0 for changeset 7b0bfde34c3f

	Preparing release.

	Preparing release.

	Added Galician translation.

	Added Spanish translation.

	Using the i18 _() macro for externalizing strings. Added error messages when reading config files.

2011-02-20  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Configuration file load and save options from the GUI.

	Added copyright section.

	Applied a blur filter on background image.

2011-02-19  Ibán Cereijo  <ibancg@users.noreply.github.com>

	The mainframe is now created using libglade.

2011-02-18  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Renamed lingot-error to lingot-msg. Implemented the message queue as a FIFO queue. Reformatted error messages from ALSA and OSS.

	Removed shutdown callbacks.

	Fixed compilation problem when either ALSA or JACK are not present.

	The JACK client doesn't loose the status anymore when we press the 'Apply' button.

2011-02-17  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Improved scale validation. Moved scales code to lingot-config-scale.{c,h}.

	lingot-error supports now different type of messages

	Moved GUI files under prefix lingot-gui (including function names). Moved scales code to lingot-config-scale.{c,h}. Supported fractional format in scale note shift in the config file.

	Renamed 'pitch' column to 'shift' in the scale table. Added tooltips.

	Added DEL and INS key bindings to the scale tree view

2011-02-16  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Tooltip correction

	New window type: Hanning. Reactivated Hamming window.

	Added tooltips to the configuration dialog. The hamming window has been disabled.

	Implemented scale table in a different file. Updates copyright year to 2011. Removed warnings.

2011-02-15  Ibán Cereijo  <ibancg@users.noreply.github.com>

	merge

	merge

	Merge with 315755d3d97922b6733791f1b2e6b0cc37a5cc10

	Fixed bug 31532 using the patch by Ruslans Tarasovs

2010-12-11  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	Updating!

	Added French translation.

2010-12-10  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Updated brasilian portuguese translation by Carlos Lau?

2010-11-25  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	Added French translation.

2010-10-25  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag v0_8_2b4 for changeset c97212da48e2

	new beta version 0.8.2b4

	avoiding global variables

2010-10-21  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag v0_8_2b3 for changeset 3b22ab4d95c3

		* Added sync between computation and read threads over the temporal buffer. 	* The deviation value didn't work in version 0.8.2b2. 	* Released Lingot 0.8.2b3.

2010-10-19  Ibán Cereijo  <ibancg@users.noreply.github.com>

	avoiding deadlocks

	Adding eclipse IDE files

	Added tag v0_8_2b2 for changeset 77c461b4c32a

	upgrading beta version

	Added tag v0_8_2b2 for changeset 0d326f090d45

	Fixed bug #31369 )https://savannah.nongnu.org/bugs/?31369 Audio API is now transparent, providing the read thread. Improved error messages from audio device issues.

	Added tag v0_8_2b1 for changeset a20fc71449ac

2010-10-18  Ibán Cereijo  <ibancg@users.noreply.github.com>

	(no commit message)

2010-10-15  Ibán Cereijo  <ibancg@users.noreply.github.com>

	added Scala project URL in the Changelog file

2010-10-14  Ibán Cereijo  <ibancg@users.noreply.github.com>

		* Added different scales support. 	   + Scale edition in a cell table. 	   + Importation of Scala .scl files. 	   + The gauge adapts its range to the scale. 	   + The deviation control has been moved to the scale tab. 	* The sample rate control has been changed to a GtkComboBoxEntry. 	* When the sample rate is not available, the user is notified. 	* Corrected some minor errors opening audio devices. 	* Improved OSS error messages. 	* Minor changes in the capture tab in the config dialog. 	* lingot-error now supports multiple messages in the queue. 	* Added some macros to simulate try/catch. Used in audio handling. 	* The error dispatcher runs now under his own timer.

2010-03-17  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag v0_8_1 for changeset c999303635a1

	preparing release 0.8.1

	preparing release 0.8.1

2010-03-15  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag v0_8_1b2 for changeset 1928af814b49

	trying to solve bug #29091

2010-03-14  Ibán Cereijo  <ibancg@users.noreply.github.com>

	trying to solve bug #29091

	added graphical controller for MIN_FREQUENCY parameter

	trying to solve bug #29091

	added graphical controller for MIN_FREQUENCY parameter

2010-03-07  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag v0_8_1b1 for changeset 2e262769e61d

	new version 0.8.1 beta 1

	fixed SIGSEV in JACK read thread

2010-03-03  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added tag v0_8_0 for changeset 570eabc9f1a8

	preparing release 0.8.0

	(no commit message)

	preparing release 0.8.0

	removing files from repository

	(no commit message)

2009-06-04  convert-repo  <convert-repo@localhost>

	update tags

2009-06-04  Ibán Cereijo  <ibancg@users.noreply.github.com>

	fixed some memory leaks and a SIGSEGV

2009-03-28  Ibán Cereijo  <ibancg@users.noreply.github.com>

	preparing release

	preparing release

	preparing release

2009-03-21  Ibán Cereijo  <ibancg@users.noreply.github.com>

	minor graphical enhancements

	Changes in i18n files

	minor graphical enhancements

	default sample rate set to 44100

	unused code dropped

	config dialog is non modal now

	jack server mustn't be launched

2009-01-25  Ibán Cereijo  <ibancg@users.noreply.github.com>

	some SIGSEGV fixed

2009-01-06  Ibán Cereijo  <ibancg@users.noreply.github.com>

	SIGSEGV fixed

	adding jack support. config dialog redesign, using glade.

	adding jack support. config dialog redesign, using glade.

	adding jack support. config dialog redesign, using glade.

	adding jack support. config dialog redesign, using glade.

	adding jack support. config dialog redesign, using glade.

	adding jack support. config dialog redesign, using glade.

2009-01-05  Ibán Cereijo  <ibancg@users.noreply.github.com>

	adding jack support. config dialog redesign, using glade.

	adding jack support. config dialog redesing, using glade.

2008-07-28  Ibán Cereijo  <ibancg@users.noreply.github.com>

	updated italian translation by Stefano Cereda

2008-07-27  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added italian translation

2008-06-24  Ibán Cereijo  <ibancg@users.noreply.github.com>

	following recommendations of John Gustafsson about some labels deprecated configuration parameters support

	*** empty log message ***

	Added Portuguese translation by Carlos Lau? Added Polish translation by Piotr Paw?ow Change to 0.7.7b3

2008-06-21  Ibán Cereijo  <ibancg@users.noreply.github.com>

	configuration saving fix for locales having character other than "." as the radix character (by Piotr Pawlow)

	update-po

	memory leak fix (thanks to Piotr Pawlow and Carlos Lau?)

2008-05-30  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	Added Czech translation (thanks to Karel Voln?)

2008-03-06  Ibán Cereijo  <ibancg@users.noreply.github.com>

	some corrections by John Gustafsson

2008-02-20  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Added Swedish translation by John Gustafsson

2008-01-12  Ibán Cereijo  <ibancg@users.noreply.github.com>

	German translation by Roland Stigge

2008-01-03  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	Regenerating build scripts

	Removing unnecessary files. Changing version number to 0.7.7b1

2007-12-27  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	Fixed some strange issues in the configuration scripts

2007-12-23  Ibán Cereijo  <ibancg@users.noreply.github.com>

	v0_7_6

	v0_7_6b3

	v0_7_6b2

	applied patch sent by Niv Sardi: 01-lingot-menu: Pone lingot en el menu "Audio" y no en "Applications".

2007-12-22  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

2007-12-19  Ibán Cereijo  <ibancg@users.noreply.github.com>

	fixed bug #21850

2007-12-18  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

	preparing translations

	lingot 0.7.5 ready to release

2007-12-16  Ibán Cereijo  <ibancg@users.noreply.github.com>

	hamming window

2007-11-26  Ibán Cereijo  <ibancg@users.noreply.github.com>

	back to version 0.7.5b3

2007-10-31  Ibán Cereijo  <ibancg@users.noreply.github.com>

	using pango markup language for note label

	Using GLIB timeout API instead of deprecated GTK one. Due to this, the SIGSEGV bug at exit seem to be fixed (???)

2007-10-24  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

	*** empty log message ***

2007-10-23  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

2007-10-18  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

2007-10-16  Ibán Cereijo  <ibancg@users.noreply.github.com>

	version 0.7.5

2007-10-15  Ibán Cereijo  <ibancg@users.noreply.github.com>

	fixed cheby filter bug reduced logo

	*** empty log message ***

2007-09-20  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Chebyshev LP filters builtin design

2007-08-30  Ibán Cereijo  <ibancg@users.noreply.github.com>

	lingot 0.7.5b2

2007-08-28  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	First attempt on adding ALSA support.

2007-08-26  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

	forgot add those files

	from C++ to C

2007-08-23  Ibán Cereijo  <ibancg@users.noreply.github.com>

	version 0.7.4

2007-07-02  Ibán Cereijo  <ibancg@users.noreply.github.com>

	version 0.7.3

	*** empty log message ***

	*** empty log message ***

	*** empty log message ***

2007-03-16  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	0.7.2 release, now with i18n

2007-02-26  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	i18n: first attempt

2007-01-29  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	*** empty log message ***

2007-01-28  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Segmentation fault bug fixed

2007-01-28  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	The Makefile mistn't be distributed -- it must be generated by configure.

	Some minor changes.

	I18n Anjutized.

	Anjutized.

	locura

	Initial revision

	brau

	Anjutized

2006-08-28  Ibán Cereijo  <ibancg@users.noreply.github.com>

	license

2006-08-27  Ibán Cereijo  <ibancg@users.noreply.github.com>

	refactor

2006-08-25  Ibán Cereijo  <ibancg@users.noreply.github.com>

	refactoring: encapsulation

	refactoring: encapsulation

2006-08-24  Ibán Cereijo  <ibancg@users.noreply.github.com>

	enable quick messages

	using gtk timers

	renamed "Filter" class to "IIR"

	compilation under freebsd

	patch by Niv

	utf-8

	renamed "Filter" class to "IIR" to avoid collision with libsndobj

2006-08-20  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	Oh! My email. :)

2006-07-17  Ibán Cereijo  <ibancg@users.noreply.github.com>

	testing gtk timeouts instead event scheduler

2006-06-12  Ibán Cereijo  <ibancg@users.noreply.github.com>

	config.status, config.log deletion rule in Makefile.in

2006-05-01  Ibán Cereijo  <ibancg@users.noreply.github.com>

	changed version number to 0.6.2

	fixed DESTDIR problem (patch reported by Jamin W. Collins)

	changed copyright year to 2006

	new version 0.6.2

2006-04-10  Ibán Cereijo  <ibancg@users.noreply.github.com>

	solved seg fault bug

2006-04-07  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	Successless search of the bug source. :( Increased text size for the note label.

2006-04-06  Ibán Cereijo  <ibancg@users.noreply.github.com>

	move to gtk-2.0 and debian-compliant Makefile patch by Niv Altivanik

	move to gtk2.0 patch by Sardi Altivanik

2005-10-23  Ibán Cereijo  <ibancg@users.noreply.github.com>

	added specification of the new parameter MIN_FREQUENCY

2005-10-22  Ibán Cereijo  <ibancg@users.noreply.github.com>

	var name refactor

	nuevo par?metro MIN_FREQUENCY

2005-10-20  Ibán Cereijo  <ibancg@users.noreply.github.com>

	warning solved

2005-09-07  Ibán Cereijo  <ibancg@users.noreply.github.com>

	email address changed

2005-07-30  Ibán Cereijo  <ibancg@users.noreply.github.com>

	debug option disabled

2005-07-29  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

	*** empty log message ***

2005-07-28  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

	*** empty log message ***

	peak coupling improved & more

	iCVS: ---------------------------------------------------------------------- peak coupling algorithm improved

2005-07-25  Ibán Cereijo  <ibancg@users.noreply.github.com>

	lingot 0.6.1

	lingot 0.6.1

	english translation

2005-07-22  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Modified file names

	*** empty log message ***

2005-04-08  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Cambio direcci??n de correo

2005-01-28  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	two lil' things in the readme files

2004-12-25  Ibán Cereijo  <ibancg@users.noreply.github.com>

	*** empty log message ***

	*** empty log message ***

2004-12-13  Ibán Cereijo  <ibancg@users.noreply.github.com>

	Traducci?n al ingl?s de los mensajes de error.

2004-12-13  Jairo Chapela-Martínez  <jairochapela@users.noreply.github.com>

	LINGOT 0.6.0
