-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from bigman73/bugfix/update-dep
+ .NET 4.6.2
- Loading branch information
Showing
17 changed files
with
77 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Practice# Change Log 🎸 | ||
|
||
## 2.1.0, 2020-11-28 | ||
+ .NET 4.6.2 | ||
+ Nuget updated dependencies (NAudio) | ||
+ Latest soundtouch library dll (2.1.1) | ||
+ Improved installer build documentation | ||
|
||
## 1.6.4, 2013-03-20 | ||
+ SoundTouch library updated to 1.7 (optimizations and fixes by library author) | ||
+ NAudio library updated to 1.6 (optimizations and fixes by library author) | ||
+ Change in logic: Cue now occurs in front of the loop instead of at the end | ||
+ Change: Pitch resolution is now in 1/4 semi-tones, instead of 1/2 semi-tones | ||
+ Bug fixes |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Practice# installater build | ||
|
||
## Steps | ||
1. Get `Wix Installer` zip | ||
http://wixtoolset.org/ | ||
|
||
As of Nov 2020, Wix 3.11.2 is available | ||
https://github.com/wixtoolset/wix3/releases/tag/wix3112rtm | ||
|
||
2. Extract the zip into the Installer folder | ||
There should be a folder under the Installer folder named wix311-binaries | ||
|
||
``` | ||
practicesharp | ||
Installer | ||
wix311-binaries | ||
``` | ||
|
||
3. Rebuild Practice# solution in `Release` mode | ||
|
||
4. Run the batch file `PracticeShare\Installer\CompilePracticeSharpWix.bat` | ||
|
||
Expected Result: An MSI file `PracticeSharp.msi` is generated under the `\MSI` folder |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<?xml version="1.0"?> | ||
<configuration> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup></configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="NAudio" version="1.8.4" targetFramework="net35" /> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="NAudio" version="1.10.0" targetFramework="net461" /> | ||
</packages> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="NAudio" version="1.8.4" targetFramework="net35" /> | ||
<package id="NAudio.Flac" version="1.0.5702.29018" targetFramework="net45" /> | ||
<package id="NAudio.Wma" version="1.0.1" targetFramework="net35" /> | ||
<package id="NLog" version="4.4.12" targetFramework="net35" /> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="NAudio" version="1.10.0" targetFramework="net461" /> | ||
<package id="NAudio.Flac" version="1.0.5702.29018" targetFramework="net45" /> | ||
<package id="NAudio.Wma" version="1.0.1" targetFramework="net35" /> | ||
<package id="NLog" version="4.7.5" targetFramework="net461" /> | ||
</packages> |