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
/* | |
* Copyright (C) 2011 Red Hat, Inc. | |
* | |
* This program is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU General Public License as | |
* published by the Free Software Foundation; either version 2 of the | |
* License, or (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, but | |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
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
# -*- coding: utf-8 -*- | |
__kupfer_name__ = _("Geary") | |
__kupfer_sources__ = ("ContactsSource", ) | |
__kupfer_actions__ = ("NewMailAction", ) | |
__description__ = _("Geary Contacts and Actions") | |
__version__ = "2017.4" | |
__author__ = "Joel Ong <[email protected]>, Karol Będkowski <[email protected]>, US" | |
from kupfer.objects import Action |
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
/* | |
* Copyright (C) 2011 Red Hat, Inc; 2016 Joel Ong | |
* | |
* This program is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU General Public License as | |
* published by the Free Software Foundation; either version 2 of the | |
* License, or (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, but | |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
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
data/org.gnome.nautilus.gschema.xml | 5 + | |
src/nautilus-global-preferences.h | 3 + | |
src/nautilus-list-view.c | 19 + | |
src/nautilus-list-view.h | 3 +- | |
src/nautilus-preferences-window.c | 5 + | |
src/nautilus-window-slot.c | 1011 ++++++++++++++++++++++- | |
src/resources/ui/nautilus-preferences-window.ui | 50 ++ | |
7 files changed, 1086 insertions(+), 10 deletions(-) | |
diff --git a/data/org.gnome.nautilus.gschema.xml b/data/org.gnome.nautilus.gschema.xml |