mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-12-23 02:28:58 +00:00
attributions
This commit is contained in:
parent
ee21d1157f
commit
da6d263288
@ -10,8 +10,6 @@ Tomb \- the Crypto Undertaker
|
|||||||
.IP "tomb-open [file]"
|
.IP "tomb-open [file]"
|
||||||
.B
|
.B
|
||||||
.IP "tomb-status mountpoint"
|
.IP "tomb-status mountpoint"
|
||||||
.B
|
|
||||||
.IP "tomb-askpass [file]"
|
|
||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
|
||||||
@ -35,10 +33,9 @@ specified, opens a the tomb file pointed by it and makes it accessible
|
|||||||
in a default location under the /media folder, starting the status
|
in a default location under the /media folder, starting the status
|
||||||
tray icon if a desktop is present.
|
tray icon if a desktop is present.
|
||||||
|
|
||||||
The other commands \fItomb-status\fR and \fItomb-askpass\fR are for
|
The other commands \fItomb-status\fR is called by the \fItomb-open\fR
|
||||||
internal use (they are called by tomb with the right arguments) and
|
helper and is meant to give access to opened tombs with operations
|
||||||
serve the purpose of communicating with the user via the graphical
|
(close and explore) for the desktop.
|
||||||
interface.
|
|
||||||
|
|
||||||
|
|
||||||
.SH COMMANDS
|
.SH COMMANDS
|
||||||
|
@ -229,7 +229,8 @@ gboolean right_click(GtkWidget *w, GdkEvent *e) {
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
gboolean cb_about(GtkWidget *w, GdkEvent *e) {
|
gboolean cb_about(GtkWidget *w, GdkEvent *e) {
|
||||||
const gchar *authors[] = {"Tomb is written by Jaromil - http://jaromil.dyne.org",NULL};
|
const gchar *authors[] = {"Jaromil - http://jaromil.dyne.org",
|
||||||
|
"Hellekin O. Wolf", NULL};
|
||||||
const gchar *artists[] = {"Jordi aka Món Mort - http://monmort.blogspot.org",
|
const gchar *artists[] = {"Jordi aka Món Mort - http://monmort.blogspot.org",
|
||||||
"Asbesto Molesto - http://freaknet.org/asbesto",
|
"Asbesto Molesto - http://freaknet.org/asbesto",
|
||||||
NULL};
|
NULL};
|
||||||
@ -237,7 +238,7 @@ gboolean cb_about(GtkWidget *w, GdkEvent *e) {
|
|||||||
gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(dialog), PACKAGE);
|
gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(dialog), PACKAGE);
|
||||||
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), VERSION);
|
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), VERSION);
|
||||||
gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(dialog),
|
gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(dialog),
|
||||||
"(C)2007-2011 Denis Roio aka Jaromil");
|
"(C)2007-2011 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);
|
||||||
|
|
||||||
@ -246,8 +247,8 @@ gboolean cb_about(GtkWidget *w, GdkEvent *e) {
|
|||||||
"\n"
|
"\n"
|
||||||
"This program helps people keeping their bones together by taking care of their private data inside encrypted storage filesystems that are easy to access and transport.\n"
|
"This program helps people keeping their bones together by taking care of their private data inside encrypted storage filesystems that are easy to access and transport.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"The level of security provided by this program is fairly good: it uses an accelerated AES/SHA256 (cbc-essiv) to access the data on the fly, as if it would be a mounted volume, so that the data is physically stored on your disc only in an encrypted form.\n"
|
"The level of security provided by this program is fairly strong: it uses AES/SHA256 (cbc-essiv) to access the encrypted volumes in realtime so that all what is physically stored on your disc is only in an encrypted form.\n"
|
||||||
"Tomb encourages users to store key files in a different place and to separate them from the data during transports\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), PACKAGE_URL);
|
||||||
@ -261,10 +262,9 @@ gboolean cb_about(GtkWidget *w, GdkEvent *e) {
|
|||||||
"This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n"
|
"This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"You should have received a copy of the GNU General Public License along with this program.\n"
|
"You should have received a copy of the GNU General Public License along with this program.\n"
|
||||||
"If not, see http://www.gnu.org/licenses\n"
|
"If not, see <http://www.gnu.org/licenses>\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Tomb is Copyright (C) 2007-2011 by Denis \"Jaromil\" Roio\n"
|
" The latest Tomb sourcecode is published on <http://tomb.dyne.org>\n");
|
||||||
"Shared libraries and external software used by Tomb are copyright by their respective authors, licensed and distributed as free software\n");
|
|
||||||
gtk_about_dialog_set_wrap_license(GTK_ABOUT_DIALOG(dialog), TRUE);
|
gtk_about_dialog_set_wrap_license(GTK_ABOUT_DIALOG(dialog), TRUE);
|
||||||
gtk_dialog_run(GTK_DIALOG (dialog));
|
gtk_dialog_run(GTK_DIALOG (dialog));
|
||||||
gtk_widget_destroy(dialog);
|
gtk_widget_destroy(dialog);
|
||||||
|
Loading…
Reference in New Issue
Block a user