Skip to content

Commit ff63676

Browse files
committed
Release 2.3.0
1 parent 96a052c commit ff63676

21 files changed

+52
-24
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-2021 Sean Davis <[email protected]>
1+
Copyright (C) 2012-2022 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,11 +1,33 @@
11
MenuLibre NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3+
12 June 2022, MenuLibre 2.3.0
4+
5+
- Bug Fixes:
6+
. AppStream: Do not install appdata.xml.in (#85)
7+
. AppStream: Fix screenshot URLs
8+
. Desktop Environments: Add support for admin:// protocol (#62)
9+
. Desktop Environments: Add support for MATE (#40)
10+
. Desktop Environments: Add support for Unity
11+
. Desktop Environments: Remove empty menubar on Ubuntu's GNOME
12+
. Desktop Environments: Suggest restarting menu when edits cannot be applied
13+
. Editor: Escape quoted percentage arguments (#93)
14+
. Editor: Fixed copying filename with Ctrl+C
15+
. Setup: Add an uninstall script (#80)
16+
. Startup: Assume menu failed to load when empty
17+
- General:
18+
. AppStream: Add OARS rating
19+
. AppStream: Add developer name
20+
- Updated Translations:
21+
. Catalan, Dutch, Finnish, French, Italian, Lithuanian, Malay,
22+
Malay (Arabic), Polish, Spanish
23+
324
26 September 2021, MenuLibre 2.2.3
425

526
- Bug Fixes:
627
- Fixed making diagnostic text selectable on KDE
728
- Fixed loading from non-existent directories
829

30+
931
25 September 2021, MenuLibre 2.2.2
1032

1133
- New Features:

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-2021 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2022 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: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!-- Copyright 2021 Sean Davis <[email protected]> -->
2+
<!-- Copyright 2021-2022 Sean Davis <[email protected]> -->
33
<component type="desktop">
44
<id>menulibre.desktop</id>
55
<metadata_license>CC0-1.0</metadata_license>
66
<project_license>GPL-3.0+</project_license>
77
<name>MenuLibre</name>
88
<_summary>An advanced FreeDesktop.org compliant menu editor</_summary>
99
<content_rating type="oars-1.0"/>
10-
<developer_name>Bluesabre</developer_name>
10+
<developer_name>Sean Davis</developer_name>
1111

1212
<description>
1313
<_p>
@@ -72,6 +72,12 @@
7272
</provides>
7373

7474
<releases>
75+
<release version="2.3.0" date="2022-06-12">
76+
<description>
77+
<_p>This release adds support for MATE and Unity and improves integration
78+
with the desktop environment.</_p>
79+
</description>
80+
</release>
7581
<release version="2.2.3" date="2021-09-26">
7682
<description>
7783
<_p>This release fixes a crash when menus fail to load on KDE.</_p>

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" "September 2021" "menulibre 2.2.3" "User Commands"
5+
.TH MENULIBRE "1" "June 2022" "menulibre 2.3.0" "User Commands"
66
.SH NAME
77
menulibre \- advanced fd.o compliant menu editor
88
.SH DESCRIPTION

menulibre/Dialogs.py

Lines changed: 2 additions & 2 deletions
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-2021 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2022 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
@@ -38,7 +38,7 @@ def __init__(self, parent):
3838
self.set_title(_("About MenuLibre"))
3939
self.set_program_name("MenuLibre")
4040
self.set_logo_icon_name("menulibre")
41-
self.set_copyright("Copyright © 2012-2021 Sean Davis")
41+
self.set_copyright("Copyright © 2012-2022 Sean Davis")
4242
self.set_authors(authors)
4343
self.set_documenters(documenters)
4444
self.set_website("https://github.com/bluesabre/menulibre")

menulibre/MenuEditor.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-2021 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2022 Sean Davis <[email protected]>
55
# Copyright (C) 2016-2018 OmegaPhil <[email protected]>
66
#
77
# Portions of this file are adapted from Alacarte Menu Editor,

menulibre/MenulibreApplication.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-2021 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2022 Sean Davis <[email protected]>
55
# Copyright (C) 2016-2018 OmegaPhil <[email protected]>
66
#
77
# This program is free software: you can redistribute it and/or modify it

menulibre/MenulibreHistory.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-2021 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2022 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/MenulibreIconSelection.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-2021 Sean Davis <[email protected]>
4+
# Copyright (C) 2012-2022 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)