Skip to content

Commit

Permalink
Merge work towards 2.1 back into trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
bluesabre committed Aug 19, 2015
2 parents b6ab9a7 + ddd1ef7 commit 2ee57d8
Show file tree
Hide file tree
Showing 55 changed files with 18,225 additions and 7,254 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright (C) 2012-2014 Sean Davis <smd.seandavis@gmail.com>
Copyright (C) 2012-2015 Sean Davis <smd.seandavis@gmail.com>
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
MenuLibre NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 Aug 2015, MenuLibre 2.1.0

- General:
. Updated artwork
. UI/UX updates (see below)
. Refactored some components to improve maintainability
. Support Ctrl+Q to quit
- UI/UX Updates:
. New widgets: GtkApplicationWindow, GtkHeaderbar, GtkStackSwitcher
. Improved Name and Comment entry
. Improved Executable and Working Directory entry
. Improved theme integration with Adwaita, elementary
. Removed deprecated widgets and properties (Gtk 3.14)
. Removed intermediate icon selection


08 Aug 2015, MenuLibre 2.0.7

- General:
Expand Down
8 changes: 7 additions & 1 deletion bin/menulibre
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python3
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
# MenuLibre - Advanced fd.o Compliant Menu Editor
# Copyright (C) 2012-2014 Sean Davis <smd.seandavis@gmail.com>
# Copyright (C) 2012-2015 Sean Davis <smd.seandavis@gmail.com>
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
Expand All @@ -23,6 +23,12 @@ import os

import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk

# Check GTK Version, minimum required is 3.10
if Gtk.check_version(3,10,0):
print("Gtk version too old, version 3.10 required.")
sys.exit(1)

# Get project root directory (enable symlink and trunk execution)
PROJECT_ROOT_DIRECTORY = os.path.abspath(
Expand Down
Binary file modified data/media/menulibre.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2ee57d8

Please sign in to comment.