A mirror of phillbush's xmenu.
 
 
 
 
 

152 lines
5.3 KiB

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