-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes Javascript display, Various small fixes (#53)
* removes wavesurfer-based display, now just using audio tags * Some Project.toml tweaks and fixes #52 * modernize travis and appveyor configs * Adds IntervalSets to test deps * Temporarily removes LibSndfile-based tests for wav display
- Loading branch information
Showing
14 changed files
with
103 additions
and
270 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,32 @@ | ||
# Documentation: https://github.com/JuliaCI/Appveyor.jl | ||
environment: | ||
matrix: | ||
- julia_version: 1.0 | ||
- julia_version: 1 | ||
- julia_version: nightly | ||
platform: | ||
- x86 | ||
- x64 | ||
matrix: | ||
allow_failures: | ||
- julia_version: nightly | ||
branches: | ||
only: | ||
- master | ||
- /release-.*/ | ||
notifications: | ||
- provider: Email | ||
on_build_success: false | ||
on_build_failure: false | ||
on_build_status_changed: true | ||
install: | ||
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) | ||
build_script: | ||
- echo "%JL_BUILD_SCRIPT%" | ||
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" | ||
test_script: | ||
- echo "%JL_TEST_SCRIPT%" | ||
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%" | ||
on_success: | ||
- echo "%JL_CODECOV_SCRIPT%" | ||
- C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%" |
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 |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
*.jl.mem | ||
coverage | ||
*~ | ||
Manifest.toml | ||
test/Manifest.toml |
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,43 @@ | ||
name = "SampledSignals" | ||
uuid = "bd7594eb-a658-542f-9e75-4c4d8908c167" | ||
|
||
[deps] | ||
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" | ||
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2" | ||
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" | ||
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93" | ||
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
TreeViews = "a2a6695c-b41b-5b7d-aed9-dbfdeacea5d7" | ||
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" | ||
|
||
[compat] | ||
Compat = "2" | ||
DSP = "0.6.1" | ||
FFTW = "1.1.0" | ||
FixedPointNumbers = "0.6.1" | ||
IntervalSets = "0.3.2" | ||
Unitful = "0.17.0" | ||
julia = "1" | ||
|
||
[extras] | ||
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2" | ||
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" | ||
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93" | ||
# LibSndFile = "b13ce0c6-77b0-50c6-a2db-140568b8d1a5" | ||
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" | ||
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" | ||
SampledSignals = "bd7594eb-a658-542f-9e75-4c4d8908c167" | ||
TreeViews = "a2a6695c-b41b-5b7d-aed9-dbfdeacea5d7" | ||
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953" | ||
|
||
[targets] | ||
test = ["DSP", | ||
"FileIO", | ||
"FixedPointNumbers", | ||
# "LibSndFile", | ||
"Unitful", | ||
"Compat", | ||
"SampledSignals", | ||
"TreeViews", | ||
"IntervalSets"] |
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
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.