Skip to content

Commit b6f7467

Browse files
committed
v0.10.7
adds S3, D2 and DJM-T1 support
1 parent 1229695 commit b6f7467

5 files changed

Lines changed: 38 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ CMDR is a TSI mappings editor for NI Traktor Pro. It supports TP3.3 and specific
1414
Use CMDR to edit TSI files with basic features missing in Traktor's Controller Manager:
1515
* Copy-Paste
1616
* Mass-Edit
17-
* MAss-Automation
17+
* Mass-Automation
1818
* plus much more ([Full Changelog](docs/development/Change_Log.md))
1919

2020
CMDR is a Windows application, but there are several ways to [run it in you macOS](docs/running_on_macos.md).

cmdr/build_release.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
set -u
44
set -e
5-
65
set -x
76

87
version_file="cmdr.Editor/Properties/AssemblyInfo.cs"
@@ -13,6 +12,9 @@ version_number="$( echo "$version_line" | awk -F\" '{print $2}' | awk -F\. '{ORS
1312
tag="cmdr-${version_number}"
1413
final_file="cmdr_tsi_editor_latest.zip"
1514

15+
echo "Going to build version ${version_number}, taken from '${version_file}'. Press CTRL+C to abort."
16+
read
17+
1618
cd "cmdr.Editor/bin"
1719

1820
rsync -av --progress --delete "Debug/" "$tag"
@@ -24,6 +26,8 @@ rm "${tag}/cmdr.exe.Config" || true
2426
rm -f "$final_file"
2527
zip -r "$final_file" "$tag"
2628

29+
mv "$final_file" "../.."
30+
2731
echo "generated: $final_file"
2832

2933
exit 0

cmdr/cmdr.Editor/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@
6060
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
6161
// übernehmen, indem Sie "*" eingeben:
6262
// [assembly: AssemblyVersion("1.0.*")]
63-
[assembly: AssemblyVersion("0.10.5.0")]
64-
[assembly: AssemblyFileVersion("0.10.5.0")]
63+
[assembly: AssemblyVersion("0.10.7.0")]
64+
[assembly: AssemblyFileVersion("0.10.7.0")]

docs/development/Change_Log.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@
1717

1818
## Recent changes
1919

20+
release 0.10.7 - 9 July 2020
21+
22+
* Kontrol D2, S3 and DJM-T1 support
23+
24+
release 0.10.6 - 26 May 2020
25+
26+
* Moved project to its final home, to benefit getting more devs: https://github.com/cmdr-editor
27+
2028
release 0.10.5 - 14 May 2020
2129

2230
* Known issues:
@@ -28,6 +36,9 @@ release 0.10.5 - 14 May 2020
2836
* quaduplicate now updates the deck letter in comments as well.
2937
* To use this use " A " in your comments. Example: "DECK A JOG"
3038

39+
* Extra:
40+
* Support for D2, S3 and DJM-T1 files
41+
3142

3243
release 0.10.4 - 13 May 2020
3344

docs/development/Development_Info.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,4 +217,23 @@ Specific steps:
217217
- Fix bgs in the mapping
218218
- Only use the controller editor for on-off tests where you need to see the modifier state, etc
219219
- When ready to retest, close tracktor and then save in CMDR
220+
221+
222+
## How to make a new CMDR Release
223+
224+
Note: lots of automation opportunities here :)
225+
226+
* Raise version number in cmdr/cmdr.Editor/Properties/AssemblyInfo.cs:AssemblyFileVersion
227+
* Edit docs/development/change_log.md with the new info
228+
* Recompile code in debug mode
229+
* send cmdr/cmdr.Editor/bin/Debug/cmdr.exe to virustotal using [this app](https://support.virustotal.com/hc/en-us/articles/115002179065-Desktop-Apps) or
230+
[this app](https://github.com/SamuelTulach/VirusTotalUploader/releases)
231+
* Run cmdr/build_release.sh script
232+
* git add / git commit / git push
233+
* upload release:
234+
* Manually upload cmdr_tsi_editor_latest.zip to https://github.com/cmdr-editor/cmdr/releases/
235+
* create a new release with the changelog from docs/development/change_log.md
236+
237+
238+
220239

0 commit comments

Comments
 (0)