Login
Check-in [01b6b75005]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Change default reverb send level to 64. Bump version and tag as v2.0.0
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | v2.0.0
Files: files | file ages | folders
SHA3-256: 01b6b7500584e86b99956e4a7bddfb05f26b5da8b761afc60ff999a2aff2fd76
User & Date: alexa 2022-05-07 18:14:01
Context
2022-05-07
18:55
Update readme check-in: b26e9f120b user: alexa tags: trunk
18:14
Change default reverb send level to 64. Bump version and tag as v2.0.0 check-in: 01b6b75005 user: alexa tags: trunk, v2.0.0
2022-05-03
18:23
Update readme check-in: cb9162336d user: alexa tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to cl-meltysynth.asd.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(require 'asdf)
(in-package :asdf-user)

(defun %do-block-compile (thunk)
  (apply thunk (when (uiop:featurep :sbcl) '(:block-compile t))))

(asdf:defsystem cl-meltysynth
  :long-name "cl-meltysynth"
  :version "1.99.0"
  :license "AGPLv3 (see LICENSE for details)"
  :maintainer "Remilia Scarlet"
  :author "Remilia Scarlet"

  :depends-on (:cl-sdm)

  :in-order-to








|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(require 'asdf)
(in-package :asdf-user)

(defun %do-block-compile (thunk)
  (apply thunk (when (uiop:featurep :sbcl) '(:block-compile t))))

(asdf:defsystem cl-meltysynth
  :long-name "cl-meltysynth"
  :version "2.0.0"
  :license "AGPLv3 (see LICENSE for details)"
  :maintainer "Remilia Scarlet"
  :author "Remilia Scarlet"

  :depends-on (:cl-sdm)

  :in-order-to

Changes to src/common.lisp.

40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  (+maximum-max-polyphony+ 256)
  (+default-max-polyphony+ 64)

  (+default-reverb-type+ :zita)

  (+minimum-reverb-send+ 0)
  (+maximum-reverb-send+ 255)
  (+default-reverb-send+ 40)

  (+minimum-chorus-send+ 0)
  (+maximum-chorus-send+ 255)
  (+default-chorus-send+ 0)

  (+minimum-inst-reverb-override+ 0)
  (+maximum-inst-reverb-override+ 1000)







|







40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  (+maximum-max-polyphony+ 256)
  (+default-max-polyphony+ 64)

  (+default-reverb-type+ :zita)

  (+minimum-reverb-send+ 0)
  (+maximum-reverb-send+ 255)
  (+default-reverb-send+ 64)

  (+minimum-chorus-send+ 0)
  (+maximum-chorus-send+ 255)
  (+default-chorus-send+ 0)

  (+minimum-inst-reverb-override+ 0)
  (+maximum-inst-reverb-override+ 1000)