Commit graph

21 commits

Author SHA1 Message Date
mef
3a8ab8bf3e Update abcmidi from 2014-10-16 to 2014-12-25
(from doc/readme.txt)
  ---------------------
midi2abc version 2.94 January 05 2014
abc2midi version 3.42 December 25 2014 <- New
abc2abc  version 1.75 September 08 2013
yaps     version 1.56 November 04 2013
abcmatch version 1.62 January 01 2014
midicopy version 1.18 October 01 2013

  (summary from doc/CHANGES)
  --------------------------
October 29 2014

Abc2midi: more work was done with the bar repeat code in store.c
Abc2midi returns the incorrect line number when it detects a
problem with bar length on repeat.

November 02 2014

Abc2midi bug: the b code in the gchord string does not work
correctly when there are inversions. eg.

November 9 2014

Abc2midi grace bug: in the following example, the grace notes
cause a loss of synchronization between the two voices.

November 18 2014

Abc2midi fermata bug: the !fermata! instruction applied to a rest
also applies to the following chord. In the following example,

December 25 2014

Abc2midi new feature: the error and warning messages now provide
both the line and character position location in the abc tune
where the message was issued.
2015-01-23 00:02:48 +00:00
mef
4dabd30f8d Update 2012-12-01 to 2014-10-16
(doc/readme.txt), this includes the versions of:
-------------------------------
midi2abc version 2.94 January 05 2014
abc2midi version 3.37 October 16 2014
abc2abc  version 1.75 September 08 2013
yaps     version 1.56 November 04 2013
abcmatch version 1.62 January 01 2014
midicopy version 1.18 October 01 2013

(doc/CHANGES)
-------------------------------
too many lines to list here:
2015-01-09 14:06:26 +00:00
shattered
65a2325088 Update to 20121201. Changes:
abc2midi, yaps, abc2abc: The time signature C| or c| is now
interpreted as 2/2 instead of 4/4.

Added Chinese character support in lyrics.

abc2midi extension: abc2midi treats Xn the same way as Zn

bug fix: abc2abc truncated the voice ids when it encounters the first
invalid character without giving any warning.

bug fix: abc2midi was unable to trill or roll tied notes.
2013-03-03 10:19:10 +00:00
asau
2fead99d50 "user-destdir" is default these days 2012-09-11 23:59:21 +00:00
ryoon
9b295803a7 Update to 20120704
* Bugfixes
* Some new commandline options
* Better lyric etc. handling
2012-07-09 09:54:30 +00:00
ryoon
be20ad3abd Update to 20120415
Changelog:

November 18 2011

Abcmidi new feature. The MIDI commands, chordprog and bassprog have
been extended to allow for an octave offset. In the following example


November 30 2011

Abc2midi slurring bug.


December 8 2011

Abc2midi: fermata bug. When a rest is preceded by a fermata symbol
H, abc2midi fails to recognize the rest.


December 11 2011

Abc2midi: lyrics bug with inline voices.


December 19 2011

Abc2midi clef-octave bug. In the following example, the clef=treble
declaration does not restore the octave setting to zero.


January 29 2012

Abc2midi: extended %%MIDI chordname command to handle up to 10 notes (instead
of 6).


March 08 2012

Abc2midi: grace bug with voice overlay. Abc2midi loses synchronization when voice overlays and gracenotes present.


March 22 2012

Abc2midi repeat error message:

abc2midi runs without error messages if the tunes are processed
individually.


March 26 2012

Abc2midi fermata bug:


March 29 2012

Abc2midi bug: abc2midi applies fermatas to all chords in which the
length is set outside the chord.


March 30 2012

Abc2midi bug: more bugs when fermata is applied to a chord.


April 1 2012

Abc2midi: new feature. Introduced a new option (-TT)  to tune the key of
A above or below 440.0 Hz but less than a semitone. The output MIDI
file will re-tune to that frequency. The purpose of this feature
is to accommodate some instruments like the accordian which are
not tune exactly to 440.0 Hz.


April 03 2012

Abc2midi -tuning. Changed to the lower frequency limit to 414.9 to
permit A=415 Hz, a common tuning for Baroque music. The bend
variable is still limited between 0 and 16383.


April 15 2012

Abc2midi - lyrics. The function checksyllables() in genmidi.c emits
warnings even when there do not seem to be any errors in the
placement of the lyrics. I do not know how to fix this problem,
or even whether a fix exists. Furthermore, the warnings do not
appear useful as they are not very specific. Users can easily
check the placement of the syllables by viewing the score produced
by abcm2ps.  The error message in checksyllables() is now suppressed
except when running abc2midi in verbose mode.
2012-04-27 18:40:50 +00:00
ryoon
44f1446634 Update to 20111021
Changelog:
October 21 2011

Abc2midi bug: %%MIDI control command after a rest causes loss of
synchronization. In the following example



X:1
T: Synchronization Loss after rest (z2)
V:1
V:2
M: 4/4
K:F#dor
V:1
|: A,G, | F,G,F,G, A,B,A,G, | F,4-F,2 :|
V:2
%%MIDI program 65
|:\
%%MIDI control 7 40
 de|  f4 z2
%%MIDI control 7 80
GA|  f4-f2\
:|


The control command is used to modulate the loudness of the alto saxophone
in voice 2. The second control command which attenuates the saxophone
to velocity 80 introduces another delay of z2 causing the following
notes G and A to be played one beat late (into the next bar).

Analysis: The second control command introduces a beat delay because
delta_time is not zero when the function write_event is called. (Delta_time
is not zero after a rest so that the following note will be delayed.)

Fix: write_event should not introduce any delay, so that delta_time was
replaced by 0 in the function call mf_write_midi_event(..). The function
write_event is also called to turn on (off) portamento, to handle
pitch_bend, pedal on and pedal off MIDI commands. (Hopefully, this
change does not introduce a bug in the other functions.)
2011-11-08 11:04:05 +00:00
ryoon
e5c3b06e78 Patch regen with mkpatches.
Pointed out in PR pkg/45522
2011-10-27 09:56:14 +00:00
ryoon
a83e26a746 PR pkg/45522
* Regen distinfo.
* Add http://ifdo.pugmarks.com/~seymour/backup/ to MASTER_SITES
  for older distfiles.
2011-10-26 12:02:00 +00:00
ryoon
15ac2caafe Add comments. 2011-10-21 14:50:09 +00:00
ryoon
fab2b6a2ed Update to 20111019
Changelog:
* Many bug fix
* use GNU configure
2011-10-21 13:31:55 +00:00
ryoon
bb97d802fe Update to 20110101.
Changelog is too long to include.
See CHANGES file.
2011-02-17 13:54:12 +00:00
wiz
9ef453825d Fix version number in PKGNAME. Noted by reed. 2009-10-10 08:33:24 +00:00
joerg
e209761d06 Remove @dirrm entries from PLISTs 2009-06-14 17:28:16 +00:00
jlam
76ed4a5797 Mechanical changes to add full DESTDIR support to packages that install
their files via a custom do-install target.
2008-03-02 06:10:30 +00:00
rillig
9c6272cf8b Fixed PKGMANDIR. 2006-12-19 13:39:14 +00:00
wiz
b20d01b785 Reset maintainer, ben@ has resigned. 2006-12-15 14:34:18 +00:00
obache
e896edb7fe Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
ben
3093f0a841 Add forgotten patches. 2006-05-16 13:42:29 +00:00
ben
c3625483cc Update abcmidi to version 20060422.
Apply security patches from Debian.

Changes include:

(Mike Scott) The 'y' spacing character used by Barfly and
abcm2ps was being silently dropped in parseabc.c. Added
support for this (including a length specifier - is this
used by anything?) to parseabc.c and abc2abc.c; stubs in
the other modules including yaps mean they behave as before.

http://lists.debian.org/debian-security-announce/debian-security-announce-2006/msg00127.html
2006-05-16 13:41:57 +00:00
ben
db9c171d84 Initial import of abcmidi-2006-03-14, music utilities for abc.
abcMIDI is a package of programs developed by James Allwright for
processing ABC music notation files. It consists of several programs:
abc2midi, abc2abc, yaps, and midi2abc.
2006-04-01 14:35:17 +00:00