diff --git a/ReaClassical/ReaClassical.lua b/ReaClassical/ReaClassical.lua
index 2860b62f..87f59220 100644
--- a/ReaClassical/ReaClassical.lua
+++ b/ReaClassical/ReaClassical.lua
@@ -1,9 +1,10 @@
@description ReaClassical
@author chmaha
-@version 24.5
+@version 24.4.3
@changelog
- Create Source Groups: Add track spacer after destination group
- Prepare for multi-tab S-D editing
+ Fix duplicate folder mixer view
+ Fix classical take record mixer view and arm children for record during transport stop
+ Fix commit number issue
@metapackage
@provides
[main] ReaClassical_Add Destination IN marker.lua
@@ -50,8 +51,6 @@
[main] ReaClassical_Zoom to Source OUT marker.lua
[main] ReaClassical_3-point Insert Edit.lua
[main] ReaClassical_Updater.lua
- [main] ReaClassical_Delete Source Project Marker.lua
- [main] ReaClassical_Set Source Project.lua
[rpp] ReaClassical.RPP
[theme] ReaClassical.ReaperThemeZip
[theme] ReaClassical for REAPER v6.x.ReaperThemeZip
diff --git a/ReaClassical/ReaClassical_Delete Source Project Marker.lua b/ReaClassical/ReaClassical_Delete Source Project Marker.lua
deleted file mode 100644
index 0fcf5a82..00000000
--- a/ReaClassical/ReaClassical_Delete Source Project Marker.lua
+++ /dev/null
@@ -1,40 +0,0 @@
---[[
-@noindex
-
-This file is a part of "ReaClassical" package.
-See "ReaClassical.lua" for more information.
-
-Copyright (C) 2022–2024 chmaha
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-You should have received a copy of the GNU General Public License
-along with this program. If not, see .
-]]
-
-for key in pairs(reaper) do _G[key] = reaper[key] end
-
----------------------------------------------------------------------
-
-function main()
- local i = 0;
- while true do
- local project, _ = EnumProjects(i)
- if project == nil then
- break
- else
- DeleteProjectMarker(project, 1000, false)
- end
- i = i + 1
- end
-end
-
----------------------------------------------------------------------
-
-main()
diff --git a/ReaClassical/ReaClassical_Set Source Project.lua b/ReaClassical/ReaClassical_Set Source Project.lua
deleted file mode 100644
index 3a1a01fe..00000000
--- a/ReaClassical/ReaClassical_Set Source Project.lua
+++ /dev/null
@@ -1,42 +0,0 @@
---[[
-@noindex
-
-This file is a part of "ReaClassical" package.
-See "ReaClassical.lua" for more information.
-
-Copyright (C) 2022–2024 chmaha
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-You should have received a copy of the GNU General Public License
-along with this program. If not, see .
-]]
-
-for key in pairs(reaper) do _G[key] = reaper[key] end
-
----------------------------------------------------------------------
-
-function main()
- local cur_pos = (GetPlayState() == 0) and GetCursorPosition() or GetPlayPosition()
- local i = 0;
- while true do
- local project, _ = EnumProjects(i)
- if project == nil then
- break
- else
- DeleteProjectMarker(project, 1000, false)
- end
- i = i + 1
- end
- AddProjectMarker2(-1, false, cur_pos, 0, "SOURCE PROJECT", 1000, ColorToNative(105, 79, 183) | 0x1000000)
-end
-
----------------------------------------------------------------------
-
-main()