Skip to content

Commit

Permalink
Auto stash before merge of "master" and "origin/master"
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Nov 12, 2019
1 parent ab0078b commit dafe426
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
name = "MusicVisualizations"
uuid = "8e838768-4b4f-4130-9d6d-43f7b35ca0d6"
repo = "https://github.com/JuliaMusic/MusicVisualizations.jl.git"
version = "0.1.0"
version = "0.2.0"

[deps]
DefaultApplication = "3f0dd361-4fe0-5fc6-8523-80b14ec94d85"
MusicManipulations = "274955c0-c284-5bf7-b122-5ecd51c559de"
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
julia = "1.1"
MusicManipulations = "1.0"
DefaultApplication = "0.1"
PyPlot = "2.8.1"
Reexport = "0.2, 0.3, 1.0"


[extras]
Expand Down
4 changes: 3 additions & 1 deletion src/MusicVisualizations.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module MusicVisualizations

using MusicManipulations, PyPlot, DefaultApplication
using PyPlot, DefaultApplication
using Reexport
@reexport using MusicManipulations

include("musescore.jl")
include("noteplotter.jl")
Expand Down
6 changes: 3 additions & 3 deletions src/musescore.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export musescore
export musescore, musescore_drumkey

using MusicManipulations, DefaultApplication

Expand Down Expand Up @@ -61,15 +61,15 @@ end


"""
MuseScore.drumkey
musescore_drumkey
A dictionary that given the drum instrument as a string it returns the
MIDI pitch that MuseScore uses.
Notice that to import a MIDI file into MuseScore and the drumset to be the selected
instrument, you should write the MIDI notes to channel `9`.
"""
const drumkey = begin
const musescore_drumkey = begin
a =
Dict(
"Acoustic Bass Drum" => "B1",
Expand Down
1 change: 1 addition & 0 deletions src/noteplotter.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using PyPlot
export noteplotter
maxnotevel(::Note) = 127
maxnotevel(::MoreVelNote) = 157
Expand Down

2 comments on commit dafe426

@Datseris
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/5320

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" dafe426470b7109d0d9706d686709ee72d2f5084
git push origin v0.2.0

Please sign in to comment.