A mirror of phillbush's xmenu.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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