OSDN Git Service

lamexp/LameXP.git
10 years agoReorganized global functions: The file "Global.h" was split into multiple file in...
LoRd_MuldeR [Sun, 3 Nov 2013 22:43:21 +0000 (23:43 +0100)]
Reorganized global functions: The file "Global.h" was split into multiple file in order to reduce the dependencies and to make things a bit more logic.

10 years agoAdded function to calculate the number threads from the number of cores. This functio...
LoRd_MuldeR [Sat, 2 Nov 2013 15:39:59 +0000 (16:39 +0100)]
Added function to calculate the number threads from the number of cores. This function is a cubic spline that resembles the current benchmarking results.

10 years agoSlightly improved benchmark code (outliers will now be dropped).
LoRd_MuldeR [Sat, 2 Nov 2013 13:28:52 +0000 (14:28 +0100)]
Slightly improved benchmark code (outliers will now be dropped).

10 years agoRemember previous dropbox position and restore it on next startup.
LoRd_MuldeR [Sat, 2 Nov 2013 00:07:23 +0000 (01:07 +0100)]
Remember previous dropbox position and restore it on next startup.

10 years agoTweaked number of threads a bit.
LoRd_MuldeR [Sat, 2 Nov 2013 00:06:45 +0000 (01:06 +0100)]
Tweaked number of threads a bit.

10 years agoFixed LockedFile to make it work with non-static Qt again. Regression in previous...
LoRd_MuldeR [Sat, 2 Nov 2013 00:06:15 +0000 (01:06 +0100)]
Fixed LockedFile to make it work with non-static Qt again. Regression in previous commit.

10 years agoTweaked the number of extractor threads. Also added a simple benchmark function ...
LoRd_MuldeR [Fri, 1 Nov 2013 18:34:27 +0000 (19:34 +0100)]
Tweaked the number of extractor threads. Also added a simple benchmark function (disabled in regular builds).

10 years agoFixed a resource (file descriptor) leak: If a QFile object was created from a C Runti...
LoRd_MuldeR [Fri, 1 Nov 2013 18:32:47 +0000 (19:32 +0100)]
Fixed a resource (file descriptor) leak: If a QFile object was created from a C Runtime file descriptor, it will *not* close the file, when QFile::close() is called or when the QFile object is destroyed. Furthermore, if a C Runtime file descriptor is obtained via _open_osfhandle(), we *must* to close that file descriptor via _close() function. Closing the underlying system HANDLE via CloseHandle() is *not* sufficient, as the file descriptor is won't be freed! On the other hand, the _close() function *does* close the underlying system HANDLE for us. In order to avoid a resource (file descriptor) leak, we will now store the file descriptor and close it properly via _close() in the destructor.

Note: The resource leak probably did not cause any harm, simply because we did not create many LockedFile objects. But it *did* cause serious issues when running the benchmark. Anyway, it should be fixed now.

10 years agoImproved dropbox widget, including proper multi-monitor (virtual desktop) support.
LoRd_MuldeR [Thu, 31 Oct 2013 23:08:40 +0000 (00:08 +0100)]
Improved dropbox widget, including proper multi-monitor (virtual desktop) support.

10 years agoAdded new drop zone image, adopted from VLC Media Player.
LoRd_MuldeR [Thu, 31 Oct 2013 00:22:21 +0000 (01:22 +0100)]
Added new drop zone image, adopted from VLC Media Player.

10 years agoAdded lamexp_init_process() function, which can be used to setup a QProcess object.
LoRd_MuldeR [Tue, 29 Oct 2013 01:05:43 +0000 (02:05 +0100)]
Added lamexp_init_process() function, which can be used to setup a QProcess object.

10 years agoUpdated GNU Wget binary to a version that doesn't use SYSTEM_WGETRC.
LoRd_MuldeR [Tue, 29 Oct 2013 01:05:00 +0000 (02:05 +0100)]
Updated GNU Wget binary to a version that doesn't use SYSTEM_WGETRC.

10 years agoUpdated GNU Wget binary to v1.14.0 (2012-08-05), compiled with GCC 4.8.1. This also...
LoRd_MuldeR [Mon, 28 Oct 2013 22:57:40 +0000 (23:57 +0100)]
Updated GNU Wget binary to v1.14.0 (2012-08-05), compiled with GCC 4.8.1. This also fixes a strange crash of Wget that only occurred on one my old Windows XP laptop (not in any of the Windows XP VM's).

10 years agoDo not set Title or Cover Art for the global meta info object, when assigning the...
LoRd_MuldeR [Sun, 27 Oct 2013 23:28:47 +0000 (00:28 +0100)]
Do not set Title or Cover Art for the global meta info object, when assigning the info from a file.

10 years agoTweaked fade in/out delta value.
LoRd_MuldeR [Sun, 27 Oct 2013 23:27:29 +0000 (00:27 +0100)]
Tweaked fade in/out delta value.

10 years agoAdded "tick" sound when switching tabs.
LoRd_MuldeR [Sun, 27 Oct 2013 23:26:54 +0000 (00:26 +0100)]
Added "tick" sound when switching tabs.

10 years agoUpdate FAQ document.
LoRd_MuldeR [Sun, 27 Oct 2013 18:43:19 +0000 (19:43 +0100)]
Update FAQ document.

10 years agoMore improvements in Splash Screen (application initialization) code. It's now comple...
LoRd_MuldeR [Sun, 27 Oct 2013 15:13:14 +0000 (16:13 +0100)]
More improvements in Splash Screen (application initialization) code. It's now completely event-driven.

10 years agoMerge branch 'master' of github.com:lordmulder/LameXP
LoRd_MuldeR [Sat, 26 Oct 2013 15:01:00 +0000 (17:01 +0200)]
Merge branch 'master' of github.com:lordmulder/LameXP

10 years agoSome code clean-up.
LoRd_MuldeR [Sat, 26 Oct 2013 13:49:16 +0000 (15:49 +0200)]
Some code clean-up.

10 years agoUpdated Ukrainian translation.
arestarh [Sat, 26 Oct 2013 10:24:56 +0000 (13:24 +0300)]
Updated Ukrainian translation.

10 years agoSlightly improved debugger thread code.
LoRd_MuldeR [Fri, 25 Oct 2013 15:55:27 +0000 (17:55 +0200)]
Slightly improved debugger thread code.

10 years agoFix copying a file's Meta Info into the Meta Data tab: Retain original "position...
LoRd_MuldeR [Fri, 25 Oct 2013 15:53:47 +0000 (17:53 +0200)]
Fix copying a file's Meta Info into the Meta Data tab: Retain original "position" value rather than overwriting it.

10 years agoImproved LameXP message logging code. This also fixes an invocation of the invalid...
LoRd_MuldeR [Fri, 25 Oct 2013 13:12:27 +0000 (15:12 +0200)]
Improved LameXP message logging code. This also fixes an invocation of the invalid message handler, when the console window gets closed unexpectedly.

10 years agoImproved file analyzer to retain the original ordering of files imported from a playlist.
LoRd_MuldeR [Thu, 24 Oct 2013 22:48:18 +0000 (00:48 +0200)]
Improved file analyzer to retain the original ordering of files imported from a playlist.

10 years agoUpdated README file.
LoRd_MuldeR [Wed, 23 Oct 2013 20:37:11 +0000 (22:37 +0200)]
Updated README file.

10 years agoUpdated license info.
LoRd_MuldeR [Wed, 23 Oct 2013 18:56:57 +0000 (20:56 +0200)]
Updated license info.

10 years agoUpdated Simplified Chinese translation, thanks to <kidneybean@sohu.com>.
LoRd_MuldeR [Mon, 21 Oct 2013 19:03:30 +0000 (21:03 +0200)]
Updated Simplified Chinese translation, thanks to <kidneybean@sohu.com>.

10 years agoFix compatibility to WindowsXP: The GetErrorMode() API requires Vista or newer, so...
LoRd_MuldeR [Mon, 21 Oct 2013 16:48:51 +0000 (18:48 +0200)]
Fix compatibility to WindowsXP: The GetErrorMode() API requires Vista or newer, so don't use it!

10 years agoFixed a problem in VS2013 project to file that always triggered a rebuild, even if...
LoRd_MuldeR [Mon, 21 Oct 2013 14:51:01 +0000 (16:51 +0200)]
Fixed a problem in VS2013 project to file that always triggered a rebuild, even if nothing had been changed.

10 years agoFix compilation with VS2012.
LoRd_MuldeR [Mon, 21 Oct 2013 14:17:42 +0000 (16:17 +0200)]
Fix compilation with VS2012.

10 years agoFixed a typo.
LoRd_MuldeR [Mon, 21 Oct 2013 13:09:44 +0000 (15:09 +0200)]
Fixed a typo.

10 years agoIntroduce QUTF8 macro and replace ".toUtf8().constData()" everywhere.
LoRd_MuldeR [Mon, 21 Oct 2013 13:00:55 +0000 (15:00 +0200)]
Introduce QUTF8 macro and replace ".toUtf8().constData()" everywhere.

10 years agoAdded compatibility manifest file. This allows for detection Windows 8.1 correctly...
LoRd_MuldeR [Mon, 21 Oct 2013 13:00:03 +0000 (15:00 +0200)]
Added compatibility manifest file. This allows for detection Windows 8.1 correctly via GetVersionEx(), though GetVersionEx() will still be broken for *future* Windows versions.

10 years agoAdded missing icon file.
LoRd_MuldeR [Mon, 21 Oct 2013 12:58:35 +0000 (14:58 +0200)]
Added missing icon file.

10 years agoUpdated patch collection.
LoRd_MuldeR [Mon, 21 Oct 2013 12:58:12 +0000 (14:58 +0200)]
Updated patch collection.

10 years agoSome improvements in Splash Screen (application initialization) code.
LoRd_MuldeR [Sun, 20 Oct 2013 21:36:53 +0000 (23:36 +0200)]
Some improvements in Splash Screen (application initialization) code.

10 years agoImproved compatibility mode detection, taking into account Windows 8.1.
LoRd_MuldeR [Sun, 20 Oct 2013 21:34:04 +0000 (23:34 +0200)]
Improved compatibility mode detection, taking into account Windows 8.1.

10 years agoMoved some resource files to correct folder in VS solution.
LoRd_MuldeR [Sun, 20 Oct 2013 21:33:25 +0000 (23:33 +0200)]
Moved some resource files to correct folder in VS solution.

10 years agoImproved InitializationThread::selfTest() function: It will now verify the hashes...
LoRd_MuldeR [Sun, 20 Oct 2013 17:12:55 +0000 (19:12 +0200)]
Improved InitializationThread::selfTest() function: It will now verify the hashes of *all* tools (it still is called in DEBUG builds only).

10 years agoImproved Windows version detection code.
LoRd_MuldeR [Sun, 20 Oct 2013 17:12:00 +0000 (19:12 +0200)]
Improved Windows version detection code.

10 years agoFix detection of Windows 8.1: Starting with Windows 8.1, the GetVersion(Ex) API has...
LoRd_MuldeR [Sat, 19 Oct 2013 14:02:22 +0000 (16:02 +0200)]
Fix detection of Windows 8.1: Starting with Windows 8.1, the GetVersion(Ex) API has been broken and will now pretend to be Windows 8.0. Since GetVersion(Ex) can no longer be relied on, we will use VerifyVersionInfo() from now on, in the hope that they won't break this one too.

10 years agoBetter method to check the network status.
LoRd_MuldeR [Sat, 19 Oct 2013 14:00:13 +0000 (16:00 +0200)]
Better method to check the network status.

10 years agoUpdated changelog and removed some debug code.
LoRd_MuldeR [Fri, 18 Oct 2013 20:12:55 +0000 (22:12 +0200)]
Updated changelog and removed some debug code.

10 years agoUse the THROW macro instead of plain "throw" in the complete project.
LoRd_MuldeR [Fri, 18 Oct 2013 19:37:40 +0000 (21:37 +0200)]
Use the THROW macro instead of plain "throw" in the complete project.

10 years agoImproved tool extraction code in InitializationThread. Also implemented better except...
LoRd_MuldeR [Fri, 18 Oct 2013 18:49:22 +0000 (20:49 +0200)]
Improved tool extraction code in InitializationThread. Also implemented better exception handling.

10 years agoUpdated deployment scripts.
LoRd_MuldeR [Fri, 18 Oct 2013 18:44:55 +0000 (20:44 +0200)]
Updated deployment scripts.

10 years agoSplit resource files even further to speed up compilation.
LoRd_MuldeR [Fri, 18 Oct 2013 18:44:07 +0000 (20:44 +0200)]
Split resource files even further to speed up compilation.

10 years agoAdded QKeccakHash libraries, compiled with VS2013.
LoRd_MuldeR [Thu, 17 Oct 2013 23:59:46 +0000 (01:59 +0200)]
Added QKeccakHash libraries, compiled with VS2013.

10 years agoAdded project/solution files for Visual Studio 2013.
LoRd_MuldeR [Thu, 17 Oct 2013 23:59:08 +0000 (01:59 +0200)]
Added project/solution files for Visual Studio 2013.

10 years agoMake sure Keccak state gets allocated aligned to 32.
LoRd_MuldeR [Thu, 17 Oct 2013 23:58:29 +0000 (01:58 +0200)]
Make sure Keccak state gets allocated aligned to 32.

10 years agoSplit resource files.
LoRd_MuldeR [Thu, 17 Oct 2013 23:56:44 +0000 (01:56 +0200)]
Split resource files.

10 years agoMake resource file compile without MFC include. Fixes compilation with VisualStudio...
LoRd_MuldeR [Thu, 17 Oct 2013 23:56:06 +0000 (01:56 +0200)]
Make resource file compile without MFC include. Fixes compilation with VisualStudio Express.

10 years agoSome more improvements of ExtractorTask class.
LoRd_MuldeR [Wed, 16 Oct 2013 16:24:16 +0000 (18:24 +0200)]
Some more improvements of ExtractorTask class.

10 years agoProperly detect Windows 8, now that Qt supports it officially.
LoRd_MuldeR [Wed, 16 Oct 2013 16:23:53 +0000 (18:23 +0200)]
Properly detect Windows 8, now that Qt supports it officially.

10 years agoUpdated Nero AAC web-site URL.
LoRd_MuldeR [Wed, 16 Oct 2013 16:23:12 +0000 (18:23 +0200)]
Updated Nero AAC web-site URL.

10 years agoDocumentation updates.
LoRd_MuldeR [Wed, 16 Oct 2013 16:22:52 +0000 (18:22 +0200)]
Documentation updates.

10 years agoUpdated GnuPG binary to v1.4.15 (2013-10-05), compiled with GCC 4.8.1.
LoRd_MuldeR [Wed, 16 Oct 2013 01:33:15 +0000 (03:33 +0200)]
Updated GnuPG binary to v1.4.15 (2013-10-05), compiled with GCC 4.8.1.

10 years agoSmall improvement in InitializationThread class.
LoRd_MuldeR [Wed, 16 Oct 2013 01:31:14 +0000 (03:31 +0200)]
Small improvement in InitializationThread class.

10 years agoRemoved some obsolete compatibility code in lamexp_detect_cpu_features().
LoRd_MuldeR [Wed, 16 Oct 2013 01:29:43 +0000 (03:29 +0200)]
Removed some obsolete compatibility code in lamexp_detect_cpu_features().

10 years agoImproved CueSheet import progress indicator.
LoRd_MuldeR [Sun, 13 Oct 2013 19:28:06 +0000 (21:28 +0200)]
Improved CueSheet import progress indicator.

10 years agoUpdated CueImportDialog and CueSheetModel as well as the CueSheet helper classes...
LoRd_MuldeR [Sun, 13 Oct 2013 18:50:12 +0000 (20:50 +0200)]
Updated CueImportDialog and CueSheetModel as well as the CueSheet helper classes to use AudioFileModel_MetaInfo. Significant code simplification.

10 years agoImproved lamexp_version_date() function.
LoRd_MuldeR [Sun, 13 Oct 2013 18:46:47 +0000 (20:46 +0200)]
Improved lamexp_version_date() function.

10 years agoUse AudioFileModel_MetaInfo instead of AudioFileModel where appropriate. Also updated...
LoRd_MuldeR [Sat, 12 Oct 2013 22:21:37 +0000 (00:21 +0200)]
Use AudioFileModel_MetaInfo instead of AudioFileModel where appropriate. Also updated MetaInfoModel to work with a AudioFileModel_MetaInfo (not only with a full AudioFileModel).

10 years agoUpdated "success" sound.
LoRd_MuldeR [Sat, 12 Oct 2013 22:19:13 +0000 (00:19 +0200)]
Updated "success" sound.

10 years agoFix compilation after previous changes to AudioFileModel in previous commit.
LoRd_MuldeR [Sat, 12 Oct 2013 20:55:41 +0000 (22:55 +0200)]
Fix compilation after previous changes to AudioFileModel in previous commit.

10 years agoMajor redesign of the AudioFileModel class: Split data into separate AudioFileModel_M...
LoRd_MuldeR [Sat, 12 Oct 2013 18:38:07 +0000 (20:38 +0200)]
Major redesign of the AudioFileModel class: Split data into separate AudioFileModel_MetaInfo and AudioFileModel_TechInfo classes.

10 years agoRedesign of the ArtworkModel in order to improve the handling of the implicitly share...
LoRd_MuldeR [Sat, 12 Oct 2013 18:36:45 +0000 (20:36 +0200)]
Redesign of the ArtworkModel in order to improve the handling of the implicitly shared data.

10 years agoYet another small overhaul of ProcessingDialog and ProcessThread.
LoRd_MuldeR [Sat, 12 Oct 2013 18:34:59 +0000 (20:34 +0200)]
Yet another small overhaul of ProcessingDialog and ProcessThread.

10 years agoSmall improvement in lamexp_finalization() function.
LoRd_MuldeR [Sat, 12 Oct 2013 18:33:13 +0000 (20:33 +0200)]
Small improvement in lamexp_finalization() function.

10 years agoUpdated some of the sound files.
LoRd_MuldeR [Sat, 12 Oct 2013 18:32:28 +0000 (20:32 +0200)]
Updated some of the sound files.

10 years agoSplit ProcessThread::start() method into ProcessThread::init() and ProcessThread...
LoRd_MuldeR [Fri, 11 Oct 2013 18:43:31 +0000 (20:43 +0200)]
Split ProcessThread::start() method into ProcessThread::init() and ProcessThread::start().

10 years agoGot ride of more legacy compatibility code.
LoRd_MuldeR [Fri, 11 Oct 2013 18:40:28 +0000 (20:40 +0200)]
Got ride of more legacy compatibility code.

10 years agoGot rid of some more legacy compatibility code in the FileSystemModelEx class.
LoRd_MuldeR [Wed, 9 Oct 2013 23:46:30 +0000 (01:46 +0200)]
Got rid of some more legacy compatibility code in the FileSystemModelEx class.

10 years agoMoved some initialization stuff out of the ProcessThread::run() function into a new...
LoRd_MuldeR [Wed, 9 Oct 2013 14:11:58 +0000 (16:11 +0200)]
Moved some initialization stuff out of the ProcessThread::run() function into a new initialization function. Also got rid of one Mutex, because file names are now generated in the init function, i.e. by the "main" thread.

10 years agoImproved lamexp_rand_str() function. Also this function now returns shorter strings...
LoRd_MuldeR [Wed, 9 Oct 2013 14:09:20 +0000 (16:09 +0200)]
Improved lamexp_rand_str() function. Also this function now returns shorter strings (by default), which still should be enough to avoid name clashes.

10 years agoMake ProcessingDialog use a QThreadPool and, accordingly, make ProcessThread inherit...
LoRd_MuldeR [Wed, 9 Oct 2013 01:14:38 +0000 (03:14 +0200)]
Make ProcessingDialog use a QThreadPool and, accordingly, make ProcessThread inherit from QRunnable rather than QThread.

10 years agoFixed compilation with VS2010 and removed an obsolete file.
LoRd_MuldeR [Tue, 8 Oct 2013 23:07:19 +0000 (01:07 +0200)]
Fixed compilation with VS2010 and removed an obsolete file.

10 years agoUpdated mpg123 decoder binary to v1.16.0 (2013-10-06), compiled with GCC 4.8.1.
LoRd_MuldeR [Tue, 8 Oct 2013 20:45:42 +0000 (22:45 +0200)]
Updated mpg123 decoder binary to v1.16.0 (2013-10-06), compiled with GCC 4.8.1.

10 years agoUpdated Simplified Chinese translation, thanks to <kidneybean@sohu.com>.
LoRd_MuldeR [Tue, 8 Oct 2013 20:41:40 +0000 (22:41 +0200)]
Updated Simplified Chinese translation, thanks to <kidneybean@sohu.com>.

10 years agoDropped VS2008 solution/project files.
LoRd_MuldeR [Tue, 8 Oct 2013 20:36:24 +0000 (22:36 +0200)]
Dropped VS2008 solution/project files.

10 years agoImplemented AbstractEncoderInfo for the AAC encoders too.
LoRd_MuldeR [Mon, 7 Oct 2013 00:28:01 +0000 (02:28 +0200)]
Implemented AbstractEncoderInfo for the AAC encoders too.

10 years agoAdded one more mirror to the list.
LoRd_MuldeR [Sun, 6 Oct 2013 22:10:05 +0000 (00:10 +0200)]
Added one more mirror to the list.

10 years agoMore code refactoring: Moved most of the Win32 API dependencies into wrapper function...
LoRd_MuldeR [Sun, 6 Oct 2013 22:01:15 +0000 (00:01 +0200)]
More code refactoring: Moved most of the Win32 API dependencies into wrapper functions in Global.cpp, which greatly reduces platform-specific includes.

10 years agoSome code-clean up. Removed "Windows.h" include from "Global.h", because most source...
LoRd_MuldeR [Sun, 6 Oct 2013 17:28:12 +0000 (19:28 +0200)]
Some code-clean up. Removed "Windows.h" include from "Global.h", because most source files won't need the Win32 API stuff. Also got rid of some Windows 2000 compatibility cruft.

10 years agoRedesigned FileAnalyzer and Analyzer task. New design is much cleaner, resulting...
LoRd_MuldeR [Sun, 6 Oct 2013 17:26:08 +0000 (19:26 +0200)]
Redesigned FileAnalyzer and Analyzer task. New design is much cleaner, resulting in simpler code and faster file import performance. Also, playlist files are now handled ahead of everything else, which makes sure the progress indicator increases monotonically. Preliminary tests show that file import performance has been more than doubled! For example, the time for importing ~1000 files decreased from 116 seconds to 46 seconds on the development machine, which corresponds to a 2.5x speed-up.

10 years agoReplaced the 64-Bit binaries with versions compressed by UPX (does now support 64...
LoRd_MuldeR [Sun, 6 Oct 2013 17:18:31 +0000 (19:18 +0200)]
Replaced the 64-Bit binaries with versions compressed by UPX (does now support 64-Bit Windows executables, yay!) instead of MPRESS. Results in slightly bigger files, but noticeably faster startup times.

10 years agoUpdate Spanish translation. Thanks to Rub3nCT <rub3nct@gmail.com>.
LoRd_MuldeR [Sun, 6 Oct 2013 17:15:59 +0000 (19:15 +0200)]
Update Spanish translation. Thanks to Rub3nCT <rub3nct@gmail.com>.

10 years agoUpdated FAQ document.
LoRd_MuldeR [Sun, 6 Oct 2013 17:15:07 +0000 (19:15 +0200)]
Updated FAQ document.

10 years agoTweaked default values for encoder settings.
LoRd_MuldeR [Thu, 3 Oct 2013 17:14:24 +0000 (19:14 +0200)]
Tweaked default values for encoder settings.

10 years agoSmall translation fix.
LoRd_MuldeR [Thu, 3 Oct 2013 17:14:06 +0000 (19:14 +0200)]
Small translation fix.

10 years agoTranslation updates.
LoRd_MuldeR [Thu, 3 Oct 2013 16:48:31 +0000 (18:48 +0200)]
Translation updates.

10 years agoImplemented AbstractEncoder for the remaining encoders, except AAC for now.
LoRd_MuldeR [Thu, 3 Oct 2013 16:48:07 +0000 (18:48 +0200)]
Implemented AbstractEncoder for the remaining encoders, except AAC for now.

10 years agoRefactored EncoderRegistry::createInstance() method to handle all common encoder...
LoRd_MuldeR [Thu, 3 Oct 2013 15:01:37 +0000 (17:01 +0200)]
Refactored EncoderRegistry::createInstance() method to handle all common encoder parameters at a single place. Also added function to load/store the custom parameters.

10 years agoMore refactoring of the SettingsModel. Also moved encoder reset function from MainWin...
LoRd_MuldeR [Thu, 3 Oct 2013 13:56:10 +0000 (15:56 +0200)]
More refactoring of the SettingsModel. Also moved encoder reset function from MainWindow to EncoderRegistry.

10 years agoImplemented AbstractEncoderInfo for some more encoders. Remaining encoders not yet...
LoRd_MuldeR [Wed, 2 Oct 2013 17:17:33 +0000 (19:17 +0200)]
Implemented AbstractEncoderInfo for some more encoders. Remaining encoders not yet working.

10 years agoRefactored Main window to use AbstractEncoderInfo rather than having all the encoder...
LoRd_MuldeR [Wed, 2 Oct 2013 14:39:26 +0000 (16:39 +0200)]
Refactored Main window to use AbstractEncoderInfo rather than having all the encoder-specific information hardcoded in the GUI code. Also much improved EncoderReistry class and some clean-up in SettingsModel class.

10 years agoBump version.
LoRd_MuldeR [Wed, 2 Oct 2013 14:37:41 +0000 (16:37 +0200)]
Bump version.

10 years agoAdded new AbstractEncoderInfo class, which provides information about a specific...
LoRd_MuldeR [Mon, 30 Sep 2013 19:39:56 +0000 (21:39 +0200)]
Added new AbstractEncoderInfo class, which provides information about a specific encoder's configuration options. Also moved code for creating encoder instances into a separate EncoderRegistry class.

10 years agoBump version. Release_408
LoRd_MuldeR [Tue, 3 Sep 2013 22:35:55 +0000 (00:35 +0200)]
Bump version.