Updated TODO.
[ahxm.git] / RELEASE_NOTES
blob3a631d97245e3b546bdb6c35cb39a004d3dec794
1 Ann Hell Ex Machina Release Notes
2 =================================
4 1.0.9
5 -----
7  * The wobble effect now accepts a 'gain' argument, to control the amount
8    of effect applied to the signal. If not set, it uses a default of 0.8
9    (previous versions acted as if a 1.0 value was set).
10  * The way of ending a softsynth song has changed; instead of waiting for
11    the end of events and then abruptly ending (which led to adding fake
12    silences and notes until all sound is off), now the instruments are
13    monitored and only exits when no more sound is generated.
14  * A new special mark is supported, START, that can be defined anywhere
15    and used as the starting point for the following new tracks.
16  * A new special mark is support, END, that will be automatically set
17    to the longest time seen on a track. So, combining the START and END
18    marks, it's possible to mix different songs to play one after the other,
19    as in
21         /* first song */
22         `song1.ahs`
23         
24         /* move to the furthest point */
25         @END
26         
27         /* set start of new tracks there */
28         ^START
29         
30         \
31         /* second song */
32         `song2.ahs`
34 1.0.8
35 -----
37  * Big rename; main executable has been changed from 'annhell' to 'ahxm',
38    the personal sample library changed from $HOME/annhell to $HOME/ahxmlib,
39    and the temporary cache moved to /tmp/ahxm-$PID.
40  * Paged wave loading now include an adaptive algorithm that sequentially
41    increases the memory block assigned to that wave if it pages frequently.
42    This way it's much less possible to be bitten by bug #1108.
43  * New command 'A' to set the key signature as a list of alterations
44    to natural notes.
45  * New effect 'half_wobble'; same as 'wobble', but letting pass only the
46    first pass of a period.
47  * New directive 'portamento', allowing notes to slide up or down.
48  * New distortion effect 'foldback'.
50 1.0.7
51 -----
53  * Number of channels no longer default to 2, but to all the channels used
54    in the song (this way, WAV files are automatically generated with all the
55    defined channels and not clipped to 2). Other output devices are still
56    silently clipped to 2 and the rest of channels dropped.
57  * The arpeggiator subcommand @ (track) has been changed to /, as it was
58    confusing the parser. Also, the track is relative instead of absolute
59    (now it means a track offset), so it can be reused.
60  * Midiin has been fixed, as it was severely broken (no initializations).
61  * OSS's fragment changed so that real-time applications (as midiin) work
62    again. This seems to be necessary when using ALSA's OSS emulation.
63  * A new midi2ahs.pl script, to crudely convert MIDI files to .ahs scripts.
65 1.0.6
66 -----
68  * Minor internal changes.
69  * First public version.
71 1.0.5
72 -----
74  * Channel spreading of wave files into instruments can now be partially
75    controlled with the optional "first channel" and "skip channels"
76    parameters. This allow using samples where the left and right channel
77    are in different wave files.
78  * New randomized blocks.
80 1.0.4
81 -----
83  * A new directive, 'song_info', to add author and name metadata to a song.
84  * A new command line option, -C, to generate a .cue file.
85  * Fixed a critical bug when loading .wav files directly (instead of
86    converted from other formats as .flac).
88 1.0.3
89 -----
91  * This release allows working with huge wave files, as they are
92    loaded page by page instead of full in memory (but beware of
93    bug #1108).
95 1.0.2b
96 ------
98  * This release includes no new features, but just some internal
99    refactoring (towards supporting paged instruments).
101 1.0.2
102 -----
104  * Tempo changes has been fixed.
105  * New '-P' command line switch to show time progress.
107 1.0.1
108 -----
110  * The performance of the 'skip seconds' option has been dramatically
111    improved; but take note that output will sound differently, as notes
112    that started playing before the time boundary will no longer sound
113    (this will also happen with a real MIDI synthesizer, where note on
114    events will never be sent).
116 1.0.0
117 -----
119  * First stable version.