[Gpredict-svn] SF.net SVN: gpredict:[286] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
|
From: <cs...@us...> - 2009-05-01 23:10:42
|
Revision: 286
http://gpredict.svn.sourceforge.net/gpredict/?rev=286&view=rev
Author: csete
Date: 2009-05-01 23:10:40 +0000 (Fri, 01 May 2009)
Log Message:
-----------
Updated.
Modified Paths:
--------------
trunk/ChangeLog
trunk/NEWS
trunk/src/mod-mgr.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-05-01 23:07:43 UTC (rev 285)
+++ trunk/ChangeLog 2009-05-01 23:10:40 UTC (rev 286)
@@ -1,7 +1,18 @@
+2009-05-01 Alexandru Csete <oz...@gm...>
+
+ * src/gtk-sat-module.c:
+ Fixed indent. Log an error message if module configuration fails.
+
+ * src/gtk-polar-view.c:
+ Changed resizing scheme to be the same as for GtkSatMap. This fixed the
+ long delay (many seconds) problem when a module containing a polar view
+ is opened or reconfigured.
+
+
2009-04-14 Alexandru Csete <oz...@gm...>
* configure.ac:
- Require libcur 7.16.0 or later as mandatory dependency.
+ Require libcurl 7.16.0 or later as mandatory dependency.
* src/tle-update.c:
* src/sat-cfg.[ch]:
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2009-05-01 23:07:43 UTC (rev 285)
+++ trunk/NEWS 2009-05-01 23:10:40 UTC (rev 286)
@@ -4,7 +4,13 @@
* Windows: New installer instead of ZIP distribution.
* Mac OS X package.
+Changes in version 1.0 beta 3 (TBD)
+* Implemented full-duplex controller.
+- Fixed a bug that caused long delays when opening or reconfiguring modules
+ containing a polar view.
+
+
Changes in version 1.0 beta 2 (15 Apr 2009):
- Improved implementation of the radio controller to include uplink.
Modified: trunk/src/mod-mgr.c
===================================================================
--- trunk/src/mod-mgr.c 2009-05-01 23:07:43 UTC (rev 285)
+++ trunk/src/mod-mgr.c 2009-05-01 23:10:40 UTC (rev 286)
@@ -190,25 +190,18 @@
gint retcode = 0;
gint page;
-sat_log_log (SAT_LOG_LEVEL_MSG,
- _("%s: Entered 1."),
- __FUNCTION__);
+
if (module) {
/* add module to internal list */
modules = g_slist_append (modules, module);
if (dock) {
- sat_log_log (SAT_LOG_LEVEL_MSG,
- _("%s: Entered 2."),
- __FUNCTION__);
/* add module to notebook if state = DOCKED */
page = gtk_notebook_append_page (GTK_NOTEBOOK (nbook),
module,
gtk_label_new (GTK_SAT_MODULE (module)->name));
- sat_log_log (SAT_LOG_LEVEL_MSG, _("%s: Entered 3."), __FUNCTION__);
-
gtk_notebook_set_current_page (GTK_NOTEBOOK (nbook), page);
/* send message to logger */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|