mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-04 20:37:55 +00:00
fixed versioning and extras reorganization
This commit is contained in:
parent
fa75d0f7bc
commit
8f25001f57
3
README
3
README
@ -68,7 +68,7 @@ Tomb is an evolution of the 'mknest' tool developed for the dyne:bolic
|
||||
GNU/Linux distribution, which is used by its 'nesting' mechanism to
|
||||
encrypt the Home directory of users, a system implemented already in
|
||||
2001. Since then, the same shell routines kept being maintained and in
|
||||
2007 they were adapted to work on Debian and Arch distributions.
|
||||
2007 they were adapted to work on various other GNU/Linux distributions.
|
||||
|
||||
As of today, Tomb is a well stable tool also used in mission critical
|
||||
situations by a number of activists in endangered zones. It has been
|
||||
@ -93,3 +93,4 @@ http://lists.dyne.org or via IRC on https://irc.dyne.org channel #dyne
|
||||
Some enthusiastic ideas are in the TODO file.
|
||||
|
||||
Information on developers involved is found in the AUTHORS file.
|
||||
|
||||
|
7
extras/gtk-tray/Makefile
Normal file
7
extras/gtk-tray/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
all:
|
||||
gcc -I. `pkg-config --cflags libnotify gtk+-2.0` $(CFLAGS) -c tomb-gtk-tray.c
|
||||
gcc tomb-gtk-tray.o `pkg-config --libs libnotify gtk+-2.0` -o tomb-gtk-tray
|
||||
|
||||
clean:
|
||||
rm *.o tomb-gtk-tray
|
@ -83,7 +83,7 @@ int main(int argc, char **argv) {
|
||||
else snprintf(mountpoint,255, "%s", argv[3]);
|
||||
|
||||
// libnotify
|
||||
notify_init(PACKAGE);
|
||||
notify_init("Tomb");
|
||||
|
||||
// set and show the status icon
|
||||
pb_monmort = gdk_pixbuf_new_from_xpm_data(monmort);
|
||||
@ -293,10 +293,10 @@ gboolean cb_about(GtkWidget *w, GdkEvent *e) {
|
||||
"Asbesto Molesto - http://freaknet.org/asbesto",
|
||||
NULL};
|
||||
GtkWidget *dialog = gtk_about_dialog_new();
|
||||
gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(dialog), PACKAGE);
|
||||
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), VERSION);
|
||||
gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(dialog), "Tomb GTK Tray");
|
||||
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), "1.4");
|
||||
gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(dialog),
|
||||
"(C)2007-2011 Jaromil @ Dyne.org Foundation");
|
||||
"(C)2007-2013 Jaromil @ Dyne.org Foundation");
|
||||
gtk_about_dialog_set_artists(GTK_ABOUT_DIALOG(dialog), artists);
|
||||
gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG(dialog), authors);
|
||||
|
||||
@ -309,7 +309,7 @@ gboolean cb_about(GtkWidget *w, GdkEvent *e) {
|
||||
"Tomb also encourages users to separate keys from data, for instance storing them on USB.\n"
|
||||
"\n"
|
||||
);
|
||||
gtk_about_dialog_set_website(GTK_ABOUT_DIALOG(dialog), PACKAGE_URL);
|
||||
gtk_about_dialog_set_website(GTK_ABOUT_DIALOG(dialog), "http://tomb.dyne.org");
|
||||
gtk_about_dialog_set_logo(GTK_ABOUT_DIALOG(dialog), pb_monmort);
|
||||
gtk_about_dialog_set_logo_icon_name(GTK_ABOUT_DIALOG(dialog), "monmort");
|
||||
// this below is active since gtk 3.0 so too early for it now
|
Loading…
Reference in New Issue
Block a user