fixed versioning and extras reorganization

This commit is contained in:
Jaromil 2013-09-08 16:10:19 +02:00
parent fa75d0f7bc
commit 8f25001f57
14 changed files with 15 additions and 7 deletions

3
README
View File

@ -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 GNU/Linux distribution, which is used by its 'nesting' mechanism to
encrypt the Home directory of users, a system implemented already in encrypt the Home directory of users, a system implemented already in
2001. Since then, the same shell routines kept being maintained and 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 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 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. Some enthusiastic ideas are in the TODO file.
Information on developers involved is found in the AUTHORS file. Information on developers involved is found in the AUTHORS file.

7
extras/gtk-tray/Makefile Normal file
View 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

View File

@ -83,7 +83,7 @@ int main(int argc, char **argv) {
else snprintf(mountpoint,255, "%s", argv[3]); else snprintf(mountpoint,255, "%s", argv[3]);
// libnotify // libnotify
notify_init(PACKAGE); notify_init("Tomb");
// set and show the status icon // set and show the status icon
pb_monmort = gdk_pixbuf_new_from_xpm_data(monmort); 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", "Asbesto Molesto - http://freaknet.org/asbesto",
NULL}; NULL};
GtkWidget *dialog = gtk_about_dialog_new(); GtkWidget *dialog = gtk_about_dialog_new();
gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(dialog), PACKAGE); gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(dialog), "Tomb GTK Tray");
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), VERSION); gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), "1.4");
gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(dialog), 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_artists(GTK_ABOUT_DIALOG(dialog), artists);
gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG(dialog), authors); 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" "Tomb also encourages users to separate keys from data, for instance storing them on USB.\n"
"\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(GTK_ABOUT_DIALOG(dialog), pb_monmort);
gtk_about_dialog_set_logo_icon_name(GTK_ABOUT_DIALOG(dialog), "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 // this below is active since gtk 3.0 so too early for it now

2
tomb
View File

@ -40,7 +40,7 @@
# {{{ Global variables # {{{ Global variables
VERSION=1.3.1 VERSION=1.4
DATE="Jun/2013" DATE="Jun/2013"
TOMBEXEC=$0 TOMBEXEC=$0
typeset -a OLDARGS typeset -a OLDARGS