Skip to content

Commit ad8f3f6

Browse files
committed
Release 2.4.0
1 parent 2fc796f commit ad8f3f6

40 files changed

+73
-42
lines changed

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Copyright (C) 2012-2023 Sean Davis <[email protected]>
1+
Copyright (C) 2012-2024 Sean Davis <[email protected]>
22
Copyright (C) 2016-2018 OmegaPhil <[email protected]>

NEWS

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
MenuLibre NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3+
25 February 2024, MenuLibre 2.4.0
4+
5+
MenuLibre 2.4.0 features over two years of development work, now ready for
6+
production systems. Standout features include:
7+
8+
- Improved desktop environment integration. MATE and Unity are now fully
9+
supported. Environments that support the admin:// protocol will now open
10+
files using this method instead of pkexec. Dialogs and other application
11+
windows now match the design language of your DE automatically.
12+
- The new "Exec Editor" makes editing command arguments easier than ever,
13+
allowing you to piece your launcher together without worrying about
14+
escaping your arguments or knowing which short codes to use.
15+
- Help dialogs replace the wall-of-text tooltips that were hard to read
16+
and would often obscure the application window.
17+
- Separators are displayed in the sidebar again, making it easier to
18+
understand and modify your menu layout.
19+
- Numerous UX tweaks make MenuLibre easier on the eyes and easier to use.
20+
Visual hints and tooltips are optimized to convey functionality and
21+
feature availability. When a feature is disabled, hovering it with your
22+
mouse cursor gives you a clear description of why.
23+
24+
325
22 August 2023, MenuLibre 2.3.2
426

527
- All Glade and GtkBuilder usage has been replaced with native Python and GTK

bin/menulibre

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# MenuLibre - Advanced fd.o Compliant Menu Editor
4-
# Copyright (C) 2012-2023 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2024 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License version 3, as published

data/metainfo/menulibre.appdata.xml.in

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!-- Copyright 2021-2023 Sean Davis <[email protected]> -->
2+
<!-- Copyright 2021-2024 Sean Davis <[email protected]> -->
33
<component type="desktop">
44
<id>menulibre.desktop</id>
55
<metadata_license>CC0-1.0</metadata_license>
@@ -66,6 +66,15 @@
6666
</provides>
6767

6868
<releases>
69+
<release version="2.4.0" date="2024-02-25">
70+
<description>
71+
<_p>This release improves desktop environment integration and includes several
72+
features to make it easy to manage your menus. MATE and Unity desktop environments
73+
are now supported. The refreshed user interface features inline help buttons
74+
for each field. The new command editor makes advanced launcher configuration
75+
easier than ever.</_p>
76+
</description>
77+
</release>
6978
<release version="2.3.2" date="2023-08-22">
7079
<description>
7180
<_p>This release features a refreshed user interface and new inline help buttons

menulibre.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
\\$2 \(laURL: \\$1 \(ra\\$3
33
..
44
.if \n[.g] .mso www.tmac
5-
.TH MENULIBRE "1" "August 2023" "menulibre 2.3.2" "User Commands"
5+
.TH MENULIBRE "1" "February 2024" "menulibre 2.4.0" "User Commands"
66
.SH NAME
77
menulibre \- advanced fd.o compliant menu editor
88
.SH DESCRIPTION

menulibre/ActionEditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# MenuLibre - Advanced fd.o Compliant Menu Editor
4-
# Copyright (C) 2012-2023 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2024 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License version 3, as published

menulibre/AdvancedPage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# MenuLibre - Advanced fd.o Compliant Menu Editor
4-
# Copyright (C) 2012-2023 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2024 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License version 3, as published

menulibre/ApplicationEditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# MenuLibre - Advanced fd.o Compliant Menu Editor
4-
# Copyright (C) 2012-2023 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2024 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License version 3, as published

menulibre/CategoryEditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# MenuLibre - Advanced fd.o Compliant Menu Editor
4-
# Copyright (C) 2012-2023 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2024 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License version 3, as published

menulibre/CommandEditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# MenuLibre - Advanced fd.o Compliant Menu Editor
4-
# Copyright (C) 2012-2023 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2024 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License version 3, as published

0 commit comments

Comments
 (0)