Skip to content

Commit 2edb111

Browse files
committed
update to v2.6.15
1 parent cf11e10 commit 2edb111

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
### 2.6.15 (2024-08-07)
1+
### 2.6.15 (2024-08-17)
22
- enver: changed envelope shapes order and increased curve resolution.
33
- polyMuter modules: added 'Shrink channels' and 'Show OUT channels' options in the right-click menu.
44
- polyMuter8, polyMuter16: added 'exclude -10v channels too' option in addition to channel shrinking.
5-
- sickoSampler / sickoSampler2: fixed a bug that doesn't store 'wav' extension when saving.
5+
- sickoSampler / sickoSampler2: fixed some naming bugs when samples are saved.
66

77
### 2.6.14 (2024-06-23)
88
- added 'slewer' module.

src/SickoSampler.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,6 +1003,7 @@ struct SickoSampler : Module {
10031003
char *path = osdialog_file(OSDIALOG_SAVE, NULL, NULL, filters);
10041004
if (path) {
10051005
saveMode = mode;
1006+
fileDescription = basename(path);
10061007
saveSample(path);
10071008
//storedPath = std::string(path);
10081009
std::string newPath = std::string(path);

src/SickoSampler2.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -867,6 +867,7 @@ struct SickoSampler2 : Module {
867867
char *path = osdialog_file(OSDIALOG_SAVE, NULL, NULL, filters);
868868
if (path) {
869869
saveMode = mode;
870+
fileDescription = basename(path);
870871
saveSample(path);
871872
//storedPath = std::string(path);
872873
std::string newPath = std::string(path);

0 commit comments

Comments
 (0)