1. 2b0b11d small doc updates and added notes about GUS support by Mateusz Viste · 7 years ago
  2. ffcab2f gus_find() returns 0 on error by Mateusz Viste · 7 years ago
  3. b728bab added gus test by Mateusz Viste · 7 years ago
  4. 5305c38 GUS support (relies on the ULTRAMID API) by Mateusz Viste · 7 years ago
  5. 94c1dcd replace time.h dependency by using DOSMid internal timer (keeps the _TEXT segment under 64K) by Mateusz Viste · 7 years ago
  6. 29d6c66 do not apply the grand piano reset to percussion channel by Mateusz Viste · 7 years ago
  7. a684cd5 version bump by Mateusz Viste · 7 years ago
  8. 01b6d7d adapted the sysex test to the latest api by Mateusz Viste · 7 years ago
  9. 07d3b46 UI displays channels as "piano" if nothing is explicitely loaded by Mateusz Viste · 7 years ago
  10. dd4549b updated LSM data by Mateusz Viste · 7 years ago
  11. c1d2970 pre-release doc update by Mateusz Viste · 7 years ago
  12. f4b6314 reverted to 2-bytes boundaries on struct packing, to remain compatible with xms moves that require 16bit alignment. this wastes 8% of RAM, but that's life by Mateusz Viste · 7 years ago
  13. 46e2614 replaced ints by shorts, for clarity by Mateusz Viste · 7 years ago
  14. f557dc4 micro optimization (saved 16 bytes) by Mateusz Viste · 7 years ago
  15. 4010a06 comment cleanup by Mateusz Viste · 7 years ago
  16. 2951f07 micro-optimization, saved 32 bytes... by Mateusz Viste · 7 years ago
  17. 74528f5 improved debug output for sysex events by Mateusz Viste · 7 years ago
  18. a85e7ca improved debug output for sysex events by Mateusz Viste · 7 years ago
  19. c33b68f sysex strings are handled differently, so event structure can be smaller (hence saving memory usage) by Mateusz Viste · 7 years ago
  20. adab0ca /noxms uses smaller allocation pools to use memory more efficiently by Mateusz Viste · 7 years ago
  21. d4a21dd avoid structures padding, so I can pack more data in memory by Mateusz Viste · 7 years ago
  22. d18f63a pre-release doc updates by Mateusz Viste · 7 years ago
  23. bde1341 sequential playing of playlists, inspired by a patch proposed by Graham Wiseman by Mateusz Viste · 7 years ago
  24. cb11a21 fixed parsing of the /SBMIDI=xxx option (bug reported by James-F from vogons) by Mateusz Viste · 7 years ago
  25. 9564629 pre-release changes by Mateusz Viste · 8 years ago
  26. ad5fa4a converted to CR/LF line endings by Mateusz Viste · 8 years ago
  27. c5ee20a converted to CR/LF line endings by Mateusz Viste · 8 years ago
  28. e298387 few documentation fixes by Mateusz Viste · 8 years ago
  29. 6a22c2d updated documentation to include /delay by Mateusz Viste · 8 years ago
  30. 5a4bd05 apply a 100ms delay after loading a syx file by Mateusz Viste · 8 years ago
  31. 7bd1afe fixed memorizing the syx file when set from config file by Mateusz Viste · 8 years ago
  32. 339a561 clearing device moved back to happen after playing song, but without the 'reset all patches to piano' part, which is left before the playback starts by Mateusz Viste · 8 years ago
  33. db38706 increased version and added a note to the changelog by Mateusz Viste · 8 years ago
  34. e1fda93 clear the sound device before playing song, instead of after by Mateusz Viste · 8 years ago
  35. f64f067 reset all channels to piano before playing by Mateusz Viste · 8 years ago
  36. 54ba7c0 documentation rewording and pre-release preparations by Mateusz Viste · 9 years ago
  37. 3882fc7 documentation fix about /xmsdelay by Mateusz Viste · 9 years ago
  38. 0e918dd renamed the /delay command-line option to /xmsdelay by Mateusz Viste · 9 years ago
  39. 8c0b1b4 makefile ignores the WCL env variable, also documented a few additional bits of the file by Mateusz Viste · 9 years ago
  40. d41614d improved the default OPL instruments set by Mateusz Viste · 9 years ago
  41. 954acbb add a (commented out) routine to dump OPL instruments to a C file by Mateusz Viste · 9 years ago
  42. 73c14c6 <no title> is indicated for any title-less file format, no only MIDI by Mateusz Viste · 9 years ago
  43. 4c9258c cli args are case-insensitive by Mateusz Viste · 9 years ago
  44. 35d8a06 the 'format' field displays the actual file format, instead of the midi subtype by Mateusz Viste · 9 years ago
  45. 0e91ff5 replace inp() timing at OPL init by a delay() call - CT2760 do not react well to massive hw calls during init time by Mateusz Viste · 9 years ago
  46. 0605b76 reset master volume via sysex at each dev_clear() by Mateusz Viste · 9 years ago
  47. 57c8b38 filenames are displayed in all uppercase by Mateusz Viste · 9 years ago
  48. 4e88b90 SBMIDI dev name changed to shorter SB by Mateusz Viste · 9 years ago
  49. b7f0f87 reorganized the screen so textual data is shown on a 5-line scrolling window, and all the tech data is moved to the right side of the screen by Mateusz Viste · 9 years ago
  50. 5ab7bf5 ignore leading empty title lines by Mateusz Viste · 9 years ago
  51. 5a91c86 add a note about empty titles, when no textual data could be found in the midi file by Mateusz Viste · 9 years ago
  52. 0b70bdc midi-loading routine returns an error in case of a malformed midi file by Mateusz Viste · 9 years ago
  53. 40e98ab documentation improvements by Mateusz Viste · 9 years ago
  54. bfe3626 refactored track2events() into specialized sub-routines for parsing each midi message type by Mateusz Viste · 9 years ago
  55. e60013b fetching more textual data from MIDI files (text events, tracks titles, marker events...) and displaying it on a little scrolling window by Mateusz Viste · 9 years ago
  56. f916896 replaced sleep() calls with equivalent udelay() calls (makes the binary 128 bytes lighter) by Mateusz Viste · 9 years ago
  57. 5bcd327 if too many 'soft' errors occur in a row, dosmid aborts (protects against 'soft errors loops', typically with playlist filled with non-existing files) by Mateusz Viste · 9 years ago
  58. 56b4777 fixed freezing when fed with an empty playlist by Mateusz Viste · 9 years ago
  59. eb1bd1e send off messages at dev_clear() independently of what hardware we have by Mateusz Viste · 9 years ago
  60. 52e5972 init sound hardware only once, instead of reiniting at every song by Mateusz Viste · 9 years ago
  61. 7ecd32b 2s silence gap is inserted only in playlist mode (no reason to wait 2s for a single file) by Mateusz Viste · 9 years ago
  62. bee13bd hw init feedback provides detailed error messages by Mateusz Viste · 9 years ago
  63. d975d5c short documentation of memory models by Mateusz Viste · 9 years ago
  64. 150df55 added an empty and self-documented configuration file by Mateusz Viste · 9 years ago
  65. 2db0dbc refactored option-loading routines and implemented config file support by Mateusz Viste · 9 years ago
  66. d8cda11 DOSMID supports custom sound banks (IBK on OPL hardware and SBK on AWE) by Mateusz Viste · 9 years ago
  67. e145106 support for OPL custom IBK percussion, also fixes around how OPL percussion is handled by Mateusz Viste · 9 years ago
  68. 399a6aa the opl lib comes with an IBK-loading function for custom sound fonts by Mateusz Viste · 9 years ago
  69. 79de68c increased delays between sysex messages to avoid 'buffer overflow' errors on MT-32 by Mateusz Viste · 9 years ago
  70. 2d9ab10 documentation updates before release by Mateusz Viste · 9 years ago
  71. a907172 sysex strings are passed as unsigned bytes by Mateusz Viste · 9 years ago
  72. 2314463 added tests for sysex handling by Mateusz Viste · 9 years ago
  73. 97c1a88 added /syx=FILE for custom SYSEX MIDI resets, changed sysex handling so they are stored along with their status byte by Mateusz Viste · 9 years ago
  74. 243dac0 MEM_MALLOC memory management allocates memory on demand, to leave as much memory as possible memory to the application as long as possible by Mateusz Viste · 9 years ago
  75. 61a1cbb force refreshing the whole screen after a pause, to be sure the pause message is wiped off the screen by Mateusz Viste · 9 years ago
  76. 133d4d7 converted files to CR/LF terminators for wider compatibility by Mateusz Viste · 9 years ago
  77. ca880aa OPL support can be disabled during compile time by Mateusz Viste · 9 years ago
  78. cf5d7a5 dosmid doesn't need to know how much memory has been allocated by the memory backend by Mateusz Viste · 9 years ago
  79. 07a7cdc fixed XMS detection (situation when no XMS manager is present, to be exact) by Mateusz Viste · 9 years ago
  80. 5fda73e documentation update by Mateusz Viste · 9 years ago
  81. 296ea7d SB AWE support can be disabled at compile time to avoid bloating the binary, also optimized screen refresh to refresh only notes that actually changed (plays without lagging on my 8086 now) by Mateusz Viste · 9 years ago
  82. b6afdad timer's speed can be adjusted with a define by Mateusz Viste · 9 years ago
  83. ce61208 /noxms tries to use more than 64K of memory (up to 320K) by Mateusz Viste · 9 years ago
  84. cfce7e5 do not wait at quit time if we are quitting because of an error condition by Mateusz Viste · 9 years ago
  85. ab03b48 video mode 0x02 is reognized as monochrome by Mateusz Viste · 9 years ago
  86. 0eeb611 reliable 'out of memory' detection by Mateusz Viste · 9 years ago
  87. b1e2609 rs232 checks for being write-ready during init to avoid freezing if no actual rs232 uart is present on given I/O port by Mateusz Viste · 9 years ago
  88. 496da06 fixed /comX parsing by Mateusz Viste · 9 years ago
  89. 887820d code documentation and format by Mateusz Viste · 9 years ago
  90. ba9c83a /comX fallbacks on known I/O addresses if BIOS doesn't provide a port list at 0400:000 (some old BIOSes don't, like the one on my Toshiba T1100) by Mateusz Viste · 9 years ago
  91. 3818465 timing is more precise now, compensates for integer division inaccuracy by Mateusz Viste · 9 years ago
  92. 1e70480 XMS moves are always made on an even number of bytes, also the timer is RESET before each song to avoid it wrapping during play time (although it still might wrap if the song is PAUSED for too long) by Mateusz Viste · 9 years ago
  93. 3a8ee09 updated documentation by Mateusz Viste · 9 years ago
  94. 4986e20 added monochrome mode support (autodetected) by Mateusz Viste · 9 years ago
  95. 8d6ea1e the timer subsystem exposes a method of resetting the counter by Mateusz Viste · 9 years ago
  96. 0c8850a restoring initial video mode before quit, also prepared future monochrome support by Mateusz Viste · 9 years ago
  97. 9ec9ebd sysex support by Mateusz Viste · 9 years ago
  98. 891be51 delay on quit is performed only if dosemu quits 'naturally' (ie. not because of a user action or an error condition) by Mateusz Viste · 9 years ago
  99. a07de9e memory management is more generic - accepts allocation requests of variable sizes by Mateusz Viste · 9 years ago
  100. 2bd9dda written a note about not flushing the rs232 port by Mateusz Viste · 9 years ago