-
Notifications
You must be signed in to change notification settings - Fork 4
/
CHANGELOG
123 lines (75 loc) · 2.65 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# C version
This current version of xdg-xmenu is written in C, before which there was a
Python version and a shell version (see below for their history versions).
The options are different between different variations, so modify your command
after installing a new one.
This C version can run really fast (e.g., about 10 to 20 ms on my machine) so
that one can directly start xmenu with it. In contrast, a user certainly had to
export the menu to a file first and then feed the menu to xmenu later, if he is
using the shell version.
v1.0.0-beta.2 2023.07.02
Changed:
- Improve the icon search time.
Fixed:
- Check vadidation of the app's desktop file, #12
v1.0.0-beta.1 2022-10-28
Added:
- Initial C version.
======
# Python version
Below is the legacy Python version. Later C version will not be backward
compatible with this in terms of cli interface. Although I will try to
make most the options the same.
The python versions are just intermediate state of this program, which I never
introduced to anyone. I wrote the C version right after this. Please use that
instead.
v0.99.1 2022-09-20
Fixed:
- Order of the categories.
v0.99.0 2022-08-07
Added:
- Initial Python version.
======
# Shell version
Below is the legacy shell version. Later Python and C versions will not be
backward compatible with this in terms of cli interface. Although I will try to
make most the options the same.
0.4.2 2022-05-20
Added:
- Option `-G` to hide generic name. #8
0.4.1 2022-05-07
Changed:
- Hide empty categories by default, use option `-E` to show them. #7
Fixed:
- Check for empty applications folder. #6
0.4.0 2022-03-01
Added:
- Option `-S` to use svg icons directly with the new Imlib2 1.8.0.
Fixed:
- Threshold check logic
0.3.1 2021-10-01
Improved:
- Better icon size matching.
Fixed:
- Won't exit after printing the help message.
- Possible conflict of cached image file. #4
0.3.0 2021-09-16
Added:
- `-f` option to force caching icons even if already cached.
Useful when switching to a new icon theme, or the icon theme get updated.
- `-n` option to skip icon caching, a.k.a. dry run mode.
Changes:
- Png and xpm icon images are not copied to the cache directory.
This could slow down things a little to search for the icons everytime.
- Keep `.svg` for the generated image from svg->png convertion.
- Use `gtk-query-settings` command to query gtk settings instead from file.
The fallback icon theme will be "Adwaita".
0.2.0 2021-05-06
Added:
- Add environment variables.
Fixed:
- Does not exit anymore if fallback icon can not be found. #1
- Fix empty IMG: tag. #2
- Fix file creation error when Icon key is a full path. #3
0.1.0 2020-08-05
Initial release.