Browse code

[NCSF] Bump version number for the previous fixes.

Naram Qashat authored on 2014/10/23 23:27:37
Showing 5 changed files
... ...
@@ -61,6 +61,11 @@ v1.10.1 - 2014-10-15 - Moved track allocation into the SSEQ command handler on a
61 61
                        allocated tracks later than expected originally.
62 62
 v1.10.2 - 2014-10-18 - Correctly handle SSEQ volume as well as fix other volume
63 63
                        issues.
64
+v1.10.3 - 2014-10-23 - Corrected attack rate calculation.
65
+                     - Corrected channel allocation causing sound cutoff, with
66
+                       lots of help from fincs.
67
+                     - Changed Sinc interpolation window to Nuttall 3-term on
68
+                       suggestion from kode54.
64 69
 
65 70
 This is a Winamp plugin to play NCSF files. NCSF is a PSF-style music format that
66 71
 uses SDAT files from Nintendo DS ROMs as it's "program".
... ...
@@ -1,7 +1,7 @@
1 1
 /*
2 2
  * SSEQ Player - Channel structures
3 3
  * By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
4
- * Last modification on 2014-10-18
4
+ * Last modification on 2014-10-23
5 5
  *
6 6
  * Adapted from source code of FeOS Sound System
7 7
  * By fincs
... ...
@@ -1,7 +1,7 @@
1 1
 /*
2 2
  * SSEQ Player - Player structure
3 3
  * By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
4
- * Last modification on 2014-10-18
4
+ * Last modification on 2014-10-23
5 5
  *
6 6
  * Adapted from source code of FeOS Sound System
7 7
  * By fincs
... ...
@@ -1,7 +1,7 @@
1 1
 /*
2 2
  * SSEQ Player - Track structure
3 3
  * By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
4
- * Last modification on 2014-10-15
4
+ * Last modification on 2014-10-23
5 5
  *
6 6
  * Adapted from source code of FeOS Sound System
7 7
  * By fincs
... ...
@@ -1,7 +1,7 @@
1 1
 /*
2 2
  * xSF - NCSF configuration
3 3
  * By Naram Qashat (CyberBotX) [cyberbotx@cyberbotx.com]
4
- * Last modification on 2014-10-15
4
+ * Last modification on 2014-10-23
5 5
  *
6 6
  * Partially based on the vio*sf framework
7 7
  */
... ...
@@ -21,7 +21,7 @@ enum
21 21
 
22 22
 unsigned XSFConfig::initSampleRate = 44100;
23 23
 std::string XSFConfig::commonName = "NCSF Decoder";
24
-std::string XSFConfig::versionNumber = "1.10.2";
24
+std::string XSFConfig::versionNumber = "1.10.3";
25 25
 unsigned XSFConfig_NCSF::initInterpolation = 4;
26 26
 std::string XSFConfig_NCSF::initMutes = "0000000000000000";
27 27