A mirror of phillbush's xmenu.
 
 
 
 
 

155 lines
5.3 KiB

  1. CHANGELOG
  2. 4.5.2 (2021-01-09)
  3. • Fixed missing line in xmenu.c.
  4. 4.5.1 (2021-01-09)
  5. • Fixed SHIFT key; it cleared the selection, now it doesn't.
  6. 4.5.0 (2021-01-08).
  7. • Added type-to-select feature (#21).
  8. • Added support for setting the text alignment.
  9. • Added -r option to disable right mouse button (#17).
  10. • Added CHANGELOG.
  11. • Changed order of parsing of options.
  12. • Fixed config.mk formatting (#18, #23).
  13. • Fixed README's list of header dependencies (#24).
  14. 4.4.1 (2020-10-18).
  15. • Fixed Makefile by removing -D flag of install(1) and making it portable.
  16. • Fixed menu placement when pointer is at the very top of the menu (#16).
  17. 4.4.0 (2020-09-27).
  18. • Added support for custom key bindings in config.h.
  19. • Added support for 1 to 9 keys for moving (#14).
  20. • Added support for Home and End keys for moving.
  21. • Fixed code to free stuff earlier, when they're no longer used.
  22. 4.3.2 (2020-09-13).
  23. • Changed license.
  24. • Fixed initmonitor() routine to free unused data.
  25. 4.3.1 (2020-08-12).
  26. • Added warning messages for unsuccessful icon loading.
  27. • Changed wording in some error messages.
  28. • Changed README to add reference to xdg-xmenu, by OliverLew.
  29. 4.3.0 (2020-08-01).
  30. • Added ability to search the system for font containing character.
  31. • Changed drawtext() routine (split part of it into getfontucode()).
  32. • Fixed getfontucode() by adding sanity check tests.
  33. • Removed the -f option.
  34. 4.2.0 (2020-07-31).
  35. • Added the -f option.
  36. • Changed xmenu.c to use BETWEEN macro.
  37. • Fixed fallback position.
  38. • Fixed manpage; simplifying description of -i option.
  39. • Fixed xmenu.h; removed unused elements in struct Item.
  40. • Fixed cleanup function to free fonts.
  41. 4.1.4 (2020-07-30).
  42. • Added detection of icons in menus.
  43. • Fixed y position of child menus.
  44. • Fixed placement in some window managers when using -w.
  45. • Fixed README to add reference to added features.
  46. 4.1.3 (2020-07-30).
  47. • Fixed xmenu.c and xmenu.h: removed redundant variables.
  48. 4.1.2 (2020-07-29).
  49. • Fixed computation of the text y position.
  50. 4.1.1 (2020-07-29).
  51. • Changed README to README.md (#9).
  52. • Fixed config.mk to load -lXinerama.
  53. 4.1.0 (2020-07-29).
  54. • Added Xinerama support (#8).
  55. 4.0.2 (2020-07-29).
  56. • Fixed menu drawing; menus are now drawed on demand.
  57. 4.0.1 (2020-07-29).
  58. • Fixed calculation of text width.
  59. 4.0.0 (2020-07-29).
  60. • Added support for fallback fonts.
  61. • Changed license.
  62. 3.4.1 (2020-07-28).
  63. • Fixed performance issue with many icons (#7).
  64. 3.4.0 (2020-07-23).
  65. • Added the -p option (to set the root menu position).
  66. 3.3.0 (2020-07-15).
  67. • Added the -i option (to disable icons).
  68. • Changed code for computing widths and x position.
  69. 3.2.1 (2020-06-29).
  70. • Fixed manpage; add reference to added features in the manual.
  71. 3.2.0 (2020-06-29).
  72. • Added support for EWMH properties.
  73. • Added support for gaps between menus (#3).
  74. • Changed README to add reference to xclickroot(1).
  75. • Changed how configuration is done; added a config structure.
  76. • Fixed missing #include.
  77. • Fixed missing type cast.
  78. 3.1.1 (2020-06-20).
  79. • Changed how height is calculated; now it's set directly.
  80. • Fix Makefile; removed slashes after DESTDIR (#2).
  81. 3.1.0 (2020-06-05).
  82. • Fixed several typos and mismatches between code, manual and README.
  83. 3.0.0 (2020-05-31).
  84. • Added support for icons.
  85. • Added some icons samples (in ./icons/).
  86. • Added demo gif.
  87. • Added the -w option (again).
  88. • Changed Makefile; using -D option of install(1).
  89. • Changed input parsing to use stdlib functions rather than get byte-by-byte.
  90. • Changed xmenu.c; making global variables local.
  91. • Changed calcmenu() routine (split into three routines).
  92. • Fixed segfault in case of empty input.
  93. • Fixed calls to strdup(3); called twice only when label and output differs.
  94. • Fixed menu position calculation (it didn't take borders into account).
  95. • Fixed manpage; updated to new features.
  96. • Fixed xmenu.c; removed unused code.
  97. • Fixed cleanup routine; freeing allocated stuff.
  98. 2.0.0 (2020-05-27).
  99. • Changed xmenu.c; making global variables local.
  100. • Changed README; including more information.
  101. • Changed getmenuitem() routine (split into getmenu() and getitem()).
  102. • Changed drawing routines in xmenu.c (drawseparator() and drawitem()).
  103. • Fixed xmenu.c; removed unused code.
  104. • Removed the -w option.
  105. 1.0.0 (2020-05-19).
  106. • Added keyboard navigation.
  107. • Added manpage.
  108. • Added support for X resources.
  109. • Added XFT support (antialiased fonts).
  110. • Added setting of WM_CLASS property.
  111. • Added recalcmenu() to recalculate menu position when -w is used.
  112. • Added support for WM_DELETE_WINDOW property (ability to close window).
  113. • Changed xmenu.sh script to pipe into sh(1).
  114. • Changed color scheme (stolen from firefox's context menu).
  115. • Changed algorithm for remapping menus (find lowest common ancestor menu).
  116. • Changed computing of menu width to be based on font.
  117. • Changed triangle size; now it's smaller.
  118. • Changed xmenu.sh; it now supposes that xmenu is installed.
  119. • Fixed README; it was a copy of dwm's.
  120. • Fixed Makefile; make install didn't install the manpage.
  121. • Fixed pointer and keyboard grabbing race condition.
  122. • Fixed order of function calls (grab keyboard after reading input).
  123. 0.5.0 (2020-05-16).
  124. • Added menu separators (lines without labels in the input).
  125. • Added double buffering, rather than drawing directly on windows.
  126. • Added -w option.