You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
(11) |
Apr
(1) |
May
|
Jun
|
Jul
(5) |
Aug
(55) |
Sep
(27) |
Oct
(11) |
Nov
(19) |
Dec
(42) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(201) |
Feb
(38) |
Mar
(154) |
Apr
(91) |
May
(157) |
Jun
(42) |
Jul
(149) |
Aug
(179) |
Sep
(212) |
Oct
(92) |
Nov
(7) |
Dec
(22) |
| 2005 |
Jan
(144) |
Feb
(109) |
Mar
(125) |
Apr
(10) |
May
(18) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(12) |
Nov
|
Dec
|
| 2006 |
Jan
(3) |
Feb
(17) |
Mar
(19) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(1) |
| 2007 |
Jan
|
Feb
(6) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(25) |
Oct
(18) |
Nov
|
Dec
(2) |
| 2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(70) |
Oct
(10) |
Nov
(7) |
Dec
(16) |
| 2012 |
Jan
(12) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(2) |
Dec
|
| 2014 |
Jan
(50) |
Feb
(34) |
Mar
(29) |
Apr
(11) |
May
(10) |
Jun
(6) |
Jul
(1) |
Aug
(2) |
Sep
(8) |
Oct
(39) |
Nov
(1) |
Dec
|
| 2019 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <fra...@us...> - 2011-09-23 08:21:51
|
Revision: 1161
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1161&view=rev
Author: frankster
Date: 2011-09-23 08:21:45 +0000 (Fri, 23 Sep 2011)
Log Message:
-----------
same change to Scenes as to Libraries
Modified Paths:
--------------
trunk/JSynthLib/core/SceneFrame.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-23 00:40:31
|
Revision: 1160
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1160&view=rev
Author: frankster
Date: 2011-09-23 00:40:25 +0000 (Fri, 23 Sep 2011)
Log Message:
-----------
fixed crash/misbehaviour in cross breed dialogue
* open a library and select a patch
* select Cross Breed from the menu
* select Keep to copy whatever you generated into the library
* select Generate to make a new tone.
nothing happens because of a trapped crash
when the generated patch is pasted into the library via Keep, it notifies that the entire table has changed. this causes the selection to be reset, which causes Generate to fail as it doesn't successfully find the initial patch to breed.
I have modified the table notification so that it will notify that a patch has been added (instead of saying the whole table has changed), which prevents the selection being reset.
Modified Paths:
--------------
trunk/JSynthLib/core/AbstractLibraryFrame.java
trunk/JSynthLib/core/LibraryFrame.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-20 20:56:52
|
Revision: 1159
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1159&view=rev
Author: frankster
Date: 2011-09-20 20:56:46 +0000 (Tue, 20 Sep 2011)
Log Message:
-----------
prevent midi devices being named e.g. "No details available Delta 1010 MIDI"
Modified Paths:
--------------
trunk/JSynthLib/core/MidiUtil.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-20 01:08:51
|
Revision: 1158
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1158&view=rev
Author: frankster
Date: 2011-09-20 01:08:45 +0000 (Tue, 20 Sep 2011)
Log Message:
-----------
fixed crash which can occur at startup when less midi devices are installed than when prefs were saved.
The problem was that the midi device is stored in the prefs as an integer. When the prefs are loaded, the device number is loaded and no checks are performed causing an array out of bounds exception if you now have less devices than the device number you had previously configured.
This also caused a problem that the configured devices could change if you plugged in or unplugged a usb device that wasn't even used by JSL, as the correct device would now be in a different position in the array. Given that USB midi devices are probably a lot more common now than 10 years ago, its probably quite common now that available devices might vary from session to session.
I have changed it so that the midi device is stored as a string (using vladimir's de-duplicated name). When JSL is re-started, as long as the same device name exists, it will be configured correctly regardless of where the device appears in the array.
If a device name loaded from prefs can't be found, then it will default to device 0 which is the same behaviour as before.
Modified Paths:
--------------
trunk/JSynthLib/core/AppConfig.java
trunk/JSynthLib/core/Device.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-18 21:53:56
|
Revision: 1157
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1157&view=rev
Author: frankster
Date: 2011-09-18 21:53:50 +0000 (Sun, 18 Sep 2011)
Log Message:
-----------
LookAndFeel defaults to "Nimbus".
* changed the LookAndFeel preference to a string instead of an index into an array (which is a bit brittle)
* If no look and feel preference is found, try and load "Nimbus".
* If "Nimbus" is not found, no particular look and feel will be loaded - i.e. it will have the system default which is probably Metal.
Modified Paths:
--------------
trunk/JSynthLib/core/AppConfig.java
trunk/JSynthLib/core/GeneralConfigPanel.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <bil...@us...> - 2011-09-18 20:02:32
|
Revision: 1156
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1156&view=rev
Author: billzwicky
Date: 2011-09-18 20:02:26 +0000 (Sun, 18 Sep 2011)
Log Message:
-----------
Copy non-source resources to build/bin.
api_docs now only runs if something changed.
Reverted frankster's patch for build-run; there may be a real bug we need to track down.
Modified Paths:
--------------
trunk/JSynthLib/build.xml
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-18 09:54:56
|
Revision: 1155
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1155&view=rev
Author: frankster
Date: 2011-09-18 09:54:50 +0000 (Sun, 18 Sep 2011)
Log Message:
-----------
changed the Delete Duplicates menu action so that it now:
* opens the progress dialogue
* deletes duplicates
* closes the progress dialogue
* displays the number deleted dialogue
Modified Paths:
--------------
trunk/JSynthLib/core/Actions.java
trunk/JSynthLib/core/LibraryFrame.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-17 21:05:32
|
Revision: 1154
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1154&view=rev
Author: frankster
Date: 2011-09-17 21:05:26 +0000 (Sat, 17 Sep 2011)
Log Message:
-----------
capitalisation/spacing in message
Modified Paths:
--------------
trunk/JSynthLib/core/LibraryFrame.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-17 08:53:32
|
Revision: 1153
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1153&view=rev
Author: frankster
Date: 2011-09-17 08:53:26 +0000 (Sat, 17 Sep 2011)
Log Message:
-----------
fixed issue 3410743 reported by Martin Tarenskeen, where the table selection could be out of date after removing duplicates from a library
Modified Paths:
--------------
trunk/JSynthLib/core/LibraryFrame.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <bil...@us...> - 2011-09-16 20:01:09
|
Revision: 1152
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1152&view=rev
Author: billzwicky
Date: 2011-09-16 20:01:02 +0000 (Fri, 16 Sep 2011)
Log Message:
-----------
Remember location of main window.
Modified Paths:
--------------
trunk/JSynthLib/core/AppConfig.java
trunk/JSynthLib/core/JSLDesktop.java
trunk/JSynthLib/org/jsynthlib/jsynthlib/Dummy.java
Added Paths:
-----------
trunk/JSynthLib/org/jsynthlib/utils/AWTUtils.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <bil...@us...> - 2011-09-16 17:45:52
|
Revision: 1151
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1151&view=rev
Author: billzwicky
Date: 2011-09-16 17:45:46 +0000 (Fri, 16 Sep 2011)
Log Message:
-----------
Cleared errors.
Modified Paths:
--------------
trunk/JSynthLib/org/jsynthlib/plugins/BasicChecksum.groovy
trunk/JSynthLib/org/jsynthlib/plugins/SimpleDecoder.groovy
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <vl...@us...> - 2011-09-16 11:38:24
|
Revision: 1150
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1150&view=rev
Author: vldmr
Date: 2011-09-16 11:38:18 +0000 (Fri, 16 Sep 2011)
Log Message:
-----------
Added change to scan file data on import for the first sysex supported by one of active synths. (Tracker ID 3410327)
Modified Paths:
--------------
trunk/JSynthLib/core/DriverUtil.java
trunk/JSynthLib/core/Utility.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jem...@us...> - 2011-09-14 16:51:35
|
Revision: 1149
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1149&view=rev
Author: jemenake
Date: 2011-09-14 16:51:29 +0000 (Wed, 14 Sep 2011)
Log Message:
-----------
Converted some arrays in MidiUtil to typed Vectors
Modified Paths:
--------------
branches/UIRefactor/core/MidiScan.java
branches/UIRefactor/core/MidiUtil.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jem...@us...> - 2011-09-13 19:35:52
|
Revision: 1148
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1148&view=rev
Author: jemenake
Date: 2011-09-13 19:35:46 +0000 (Tue, 13 Sep 2011)
Log Message:
-----------
Converted serveral Vector types to ArrayList<Type> for better type-safety and easier iteration
Modified Paths:
--------------
branches/UIRefactor/core/MidiTest.java
branches/UIRefactor/core/MidiUtil.java
branches/UIRefactor/core/PrefsDialog.java
branches/UIRefactor/core/SysexHandler.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jem...@us...> - 2011-09-13 19:33:47
|
Revision: 1147
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1147&view=rev
Author: jemenake
Date: 2011-09-13 19:33:40 +0000 (Tue, 13 Sep 2011)
Log Message:
-----------
Removed LinuxCharDev midiprovider
Modified Paths:
--------------
branches/UIRefactor/org/jsynthlib/desktop/JSLDesktop.java
Removed Paths:
-------------
branches/UIRefactor/midiprovider/LinuxCharDev/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jem...@us...> - 2011-09-13 16:00:50
|
Revision: 1146
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1146&view=rev
Author: jemenake
Date: 2011-09-13 16:00:44 +0000 (Tue, 13 Sep 2011)
Log Message:
-----------
Fixed a NullPointerException when useScreenMenubar not being isn't defined. Also fixed two NullPointerExceptions which were triggering from GeneralConfigPanel when settings were being loaded.
Modified Paths:
--------------
branches/UIRefactor/core/Actions.java
branches/UIRefactor/core/ConfigPanel.java
branches/UIRefactor/core/GeneralConfigPanel.java
branches/UIRefactor/core/PrefsDialog.java
branches/UIRefactor/org/jsynthlib/desktop/sdi/SDIDesktop.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jem...@us...> - 2011-09-12 01:13:40
|
Revision: 1145
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1145&view=rev
Author: jemenake
Date: 2011-09-12 01:13:34 +0000 (Mon, 12 Sep 2011)
Log Message:
-----------
Okay... now it compiles and kinda runs. Haven't actually tried *doing* anything with it, though. I need to run it on all platforms (Win, Mac, Linux) to see how the menus/windows/toolbars lay out...
Modified Paths:
--------------
branches/UIRefactor/JSynthLib.java
branches/UIRefactor/core/AbstractLibraryFrame.java
branches/UIRefactor/core/Actions.java
branches/UIRefactor/org/jsynthlib/desktop/JSLDesktop.java
branches/UIRefactor/org/jsynthlib/desktop/JSLDesktopManager.java
branches/UIRefactor/org/jsynthlib/desktop/JSLFrame.java
branches/UIRefactor/org/jsynthlib/desktop/sdi/SDIDesktop.java
branches/UIRefactor/org/jsynthlib/desktop/sdi/SDIJFrame.java
branches/UIRefactor/synthdrivers/Line6Pod20/Line6Pod20SingleEditor.java
branches/UIRefactor/synthdrivers/YamahaDX7/common/DX7FamilyAdditionalVoiceEditor.java
branches/UIRefactor/synthdrivers/YamahaDX7/common/DX7FamilyPerformanceEditor.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jem...@us...> - 2011-09-12 01:09:16
|
Revision: 1144
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1144&view=rev
Author: jemenake
Date: 2011-09-12 01:09:10 +0000 (Mon, 12 Sep 2011)
Log Message:
-----------
Added Paths:
-----------
branches/UIRefactor/images/JSLIcon16x16.png
branches/UIRefactor/images/JSLSplash.jpg
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-11 10:06:39
|
Revision: 1143
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1143&view=rev
Author: frankster
Date: 2011-09-11 10:06:33 +0000 (Sun, 11 Sep 2011)
Log Message:
-----------
ant was including the jar file built previously inside the new jar, causing the output to increase in size every time
Modified Paths:
--------------
trunk/JSynthLib/build.xml
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jem...@us...> - 2011-09-11 05:43:05
|
Revision: 1142
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1142&view=rev
Author: jemenake
Date: 2011-09-11 05:42:59 +0000 (Sun, 11 Sep 2011)
Log Message:
-----------
Compiles now. But it crashes immediately. Slowly but surely...
Modified Paths:
--------------
branches/UIRefactor/JSynthLib.java
branches/UIRefactor/core/Actions.java
branches/UIRefactor/core/PatchEdit.java
branches/UIRefactor/org/jsynthlib/desktop/JSLDesktop.java
branches/UIRefactor/org/jsynthlib/desktop/JSLDesktopManager.java
branches/UIRefactor/org/jsynthlib/desktop/mdi/MDIDesktop.java
branches/UIRefactor/org/jsynthlib/desktop/sdi/SDIDesktop.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <bil...@us...> - 2011-09-11 04:12:02
|
Revision: 1141
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1141&view=rev
Author: billzwicky
Date: 2011-09-11 04:11:56 +0000 (Sun, 11 Sep 2011)
Log Message:
-----------
Cleared warning.
Modified Paths:
--------------
trunk/JSynthLib/org/jsynthlib/plugins/SimpleDecoder.groovy
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-10 23:46:33
|
Revision: 1140
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1140&view=rev
Author: frankster
Date: 2011-09-10 23:46:27 +0000 (Sat, 10 Sep 2011)
Log Message:
-----------
editor fix
Modified Paths:
--------------
trunk/JSynthLib/synthdrivers/TCElectronicM350/M350Model.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-10 17:30:30
|
Revision: 1139
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1139&view=rev
Author: frankster
Date: 2011-09-10 17:30:24 +0000 (Sat, 10 Sep 2011)
Log Message:
-----------
added some recent drivers to Makefile and updated synthdrivers.properties
Modified Paths:
--------------
trunk/JSynthLib/Makefile
trunk/JSynthLib/synthdrivers.properties
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <fra...@us...> - 2011-09-10 17:26:37
|
Revision: 1138
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1138&view=rev
Author: frankster
Date: 2011-09-10 17:26:31 +0000 (Sat, 10 Sep 2011)
Log Message:
-----------
added Chris Arndt's single driver for Yamaha SY85 from the patch queue
Added Paths:
-----------
trunk/JSynthLib/synthdrivers/YamahaSY85/
trunk/JSynthLib/synthdrivers/YamahaSY85/InitVce.syx
trunk/JSynthLib/synthdrivers/YamahaSY85/SY85Constants.java
trunk/JSynthLib/synthdrivers/YamahaSY85/YamahaSY85Device.java
trunk/JSynthLib/synthdrivers/YamahaSY85/YamahaSY85SingleDriver.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <bil...@us...> - 2011-09-10 01:15:19
|
Revision: 1137
http://jsynthlib.svn.sourceforge.net/jsynthlib/?rev=1137&view=rev
Author: billzwicky
Date: 2011-09-10 01:15:13 +0000 (Sat, 10 Sep 2011)
Log Message:
-----------
Updated with YamahaSY77 and TCElectronicM350.
Modified Paths:
--------------
trunk/JSynthLib/synthdrivers.properties
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|