-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge work towards 2.1 back into trunk
- Loading branch information
Showing
55 changed files
with
18,225 additions
and
7,254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Copyright (C) 2012-2014 Sean Davis <[email protected]> | ||
Copyright (C) 2012-2015 Sean Davis <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]> | ||
# Copyright (C) 2012-2015 Sean Davis <[email protected]> | ||
# | ||
# 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 | ||
|
@@ -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( | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.