[Gpredict-svn] SF.net SVN: gpredict:[314] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
|
From: <cs...@us...> - 2009-05-13 20:57:10
|
Revision: 314
http://gpredict.svn.sourceforge.net/gpredict/?rev=314&view=rev
Author: csete
Date: 2009-05-13 20:57:03 +0000 (Wed, 13 May 2009)
Log Message:
-----------
Updated.
Modified Paths:
--------------
trunk/ChangeLog
trunk/NEWS
trunk/src/about.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-05-13 20:55:14 UTC (rev 313)
+++ trunk/ChangeLog 2009-05-13 20:57:03 UTC (rev 314)
@@ -3,6 +3,24 @@
* src/gtk-rig-ctrl.c:
Fixed bug that caused rig type to switch from DUPLEX -> RX after first cycle.
+ * src/sat-pass-dialogs.c:
+ Fixed bug 2691797: Potential array index out of range.
+
+ * src/pass-to-txt.c:
+ Fixed bug 2691795: Potential array index out of range.
+
+ * src/gtk-single-sat.c:
+ Fixed bug 2691794: Potential array index out of range.
+
+ * src/gtk-sat-list.c:
+ Fixed bug 2691792: Potential array index out of range.
+
+ * src/tle-update.c:
+ * src/gtk-sat-data.c:
+ * src/sgpsdp/test-001.c:
+ * src/sgpsdp/test-002.c:
+ Fixed compile warnings.
+
2009-05-10 Alexandru Csete <oz...@gm...>
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2009-05-13 20:55:14 UTC (rev 313)
+++ trunk/NEWS 2009-05-13 20:57:03 UTC (rev 314)
@@ -7,8 +7,14 @@
Changes in version 1.0 beta 4 (13 May 2009)
- Fixed a bug that cause rig type to switch from DUPLEX -> RX
- (Thanks Thomas DL1JBE=.
+ (Thanks Thomas DL1JBE).
+- Fixed bug 2691797: Potential array index out of range.
+- Fixed bug 2691795: Potential array index out of range.
+- Fixed bug 2691794: Potential array index out of range.
+- Fixed bug 2691792: Potential array index out of range.
+- Fixed other compile warnings (bugs 2691799, 2691787 and 2691790).
+
Changes in version 1.0 beta 3 (10 May 2009)
- Feature request 2691964: Full-duplex controller.
Modified: trunk/src/about.c
===================================================================
--- trunk/src/about.c 2009-05-13 20:55:14 UTC (rev 313)
+++ trunk/src/about.c 2009-05-13 20:57:03 UTC (rev 314)
@@ -54,61 +54,61 @@
};
-const gchar license[] = N_("Copyright (C) 2001-2008 Alexandru Csete OZ9AEC\n"\
- "Contact: oz9aec at googlemail.com\n\n"\
- "Gpredict is free software; you can redistribute it and "\
- "mofdify 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.\n\n"\
- "This program is distributed free of charge 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 Library General Public License for more details.\n\n"\
- "You should have received a copy of the GNU General Public License "\
- "along with this program (see Help->License). Otherwise you can find "\
+const gchar license[] = N_("Copyright (C) 2001-2009 Alexandru Csete OZ9AEC\n"\
+ "Contact: oz9aec at googlemail.com\n\n"\
+ "Gpredict is free software; you can redistribute it and "\
+ "mofdify 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.\n\n"\
+ "This program is distributed free of charge 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 Library General Public License for more details.\n\n"\
+ "You should have received a copy of the GNU General Public License "\
+ "along with this program (see Help->License). Otherwise you can find "\
"a copy on the FSF "\
- "website http://www.fsf.org/licensing/licenses/gpl.html or you can "\
- "write to the\n\n"
- "Free Software Foundation, Inc.\n"\
- "59 Temple Place - Suite 330\n"
- "Boston\n"\
- "MA 02111-1307\n"
- "USA.\n");
+ "website http://www.fsf.org/licensing/licenses/gpl.html or you can "\
+ "write to the\n\n"
+ "Free Software Foundation, Inc.\n"\
+ "59 Temple Place - Suite 330\n"
+ "Boston\n"\
+ "MA 02111-1307\n"
+ "USA.\n");
/** \brief Create and run the gpredict about dialog. */
void about_dialog_create ()
{
- GtkWidget *dialog;
- GdkPixbuf *icon;
- gchar *iconfile;
+ GtkWidget *dialog;
+ GdkPixbuf *icon;
+ gchar *iconfile;
- dialog = gtk_about_dialog_new ();
- gtk_about_dialog_set_name (GTK_ABOUT_DIALOG (dialog), _("GPREDICT"));
- gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (dialog), VERSION);
- gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG (dialog),
- _("Copyright (C) 2001-2008 Alexandru Csete OZ9AEC\n\n"\
- "Gpredict is available free of charge from:"));
- gtk_about_dialog_set_url_hook (gpredict_url_hook_cb, NULL, NULL);
- gtk_about_dialog_set_website (GTK_ABOUT_DIALOG (dialog),
- "http://gpredict.oz9aec.net/");
-/* gtk_about_dialog_set_website_label (GTK_ABOUT_DIALOG (dialog), */
-/* _("Gpredict Website")); */
- gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (dialog), _(license));
- gtk_about_dialog_set_wrap_license (GTK_ABOUT_DIALOG (dialog), TRUE);
- iconfile = icon_file_name ("gpredict-icon.png");
- icon = gdk_pixbuf_new_from_file (iconfile, NULL);
- gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG (dialog), icon);
- g_free (iconfile);
- g_object_unref (icon);
+ dialog = gtk_about_dialog_new ();
+ gtk_about_dialog_set_name (GTK_ABOUT_DIALOG (dialog), _("GPREDICT"));
+ gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (dialog), VERSION);
+ gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG (dialog),
+ _("Copyright (C) 2001-2008 Alexandru Csete OZ9AEC\n\n"\
+ "Gpredict is available free of charge from:"));
+ gtk_about_dialog_set_url_hook (gpredict_url_hook_cb, NULL, NULL);
+ gtk_about_dialog_set_website (GTK_ABOUT_DIALOG (dialog),
+ "http://gpredict.oz9aec.net/");
+/* gtk_about_dialog_set_website_label (GTK_ABOUT_DIALOG (dialog), */
+/* _("Gpredict Website")); */
+ gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (dialog), _(license));
+ gtk_about_dialog_set_wrap_license (GTK_ABOUT_DIALOG (dialog), TRUE);
+ iconfile = icon_file_name ("gpredict-icon.png");
+ icon = gdk_pixbuf_new_from_file (iconfile, NULL);
+ gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG (dialog), icon);
+ g_free (iconfile);
+ g_object_unref (icon);
- gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (dialog), authors);
- gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG (dialog),
- _("translator-credits"));
+ gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (dialog), authors);
+ gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG (dialog),
+ _("translator-credits"));
- gtk_dialog_run (GTK_DIALOG (dialog));
+ gtk_dialog_run (GTK_DIALOG (dialog));
- gtk_widget_destroy (dialog);
+ gtk_widget_destroy (dialog);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|