[Gpredict-svn] SF.net SVN: gpredict:[807] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
|
From: <aa...@us...> - 2011-04-01 12:35:09
|
Revision: 807
http://gpredict.svn.sourceforge.net/gpredict/?rev=807&view=rev
Author: aa1vs
Date: 2011-04-01 12:35:03 +0000 (Fri, 01 Apr 2011)
Log Message:
-----------
Apply Alan Moffet's changes for win32 build.
Modified Paths:
--------------
trunk/ChangeLog
trunk/win32/build-config.h
trunk/win32/gpredict.exe.manifest
trunk/win32/gpredict.rc
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2011-04-01 12:15:25 UTC (rev 806)
+++ trunk/ChangeLog 2011-04-01 12:35:03 UTC (rev 807)
@@ -1,3 +1,10 @@
+2011-04-01 Charles Suprin <hamaa1vs at gmail.com>
+
+ * win32/gpredict.rc
+ * win32/gpredict.exe.manifest
+ * win32/build-config.h
+ Apply Alan Moffet's changes for win32 build.
+
2011-04-01 Alexandru Csete <oz9aec at gmail.com>
* src/pass-to-txt.c
Modified: trunk/win32/build-config.h
===================================================================
--- trunk/win32/build-config.h 2011-04-01 12:15:25 UTC (rev 806)
+++ trunk/win32/build-config.h 2011-04-01 12:35:03 UTC (rev 807)
@@ -90,5 +90,5 @@
#define GETTEXT_PACKAGE "gpredict"
-#define HAS_LIBGPS 0
+#undef HAS_LIBGPS
Modified: trunk/win32/gpredict.exe.manifest
===================================================================
--- trunk/win32/gpredict.exe.manifest 2011-04-01 12:15:25 UTC (rev 806)
+++ trunk/win32/gpredict.exe.manifest 2011-04-01 12:35:03 UTC (rev 807)
@@ -1,5 +1,7 @@
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
+ <assemblyIdentity name="GPredict" processorArchitecture="x86" version="1.3.0.0" type="win32"/>
+ <description>Gpredict: Real-time satellite tracking and orbit prediction program</description>
<dependency>
<dependentAssembly>
<assemblyIdentity type='win32' name='Microsoft.VC80.CRT'
@@ -7,4 +9,12 @@
publicKeyToken='1fc8b3b9a1e18e3b' />
</dependentAssembly>
</dependency>
+ <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
+ <security>
+ <requestedPrivileges/>
+ </security>
+ </trustInfo>
+ <asmv3:application>
+ <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"/>
+ </asmv3:application>
</assembly>
Modified: trunk/win32/gpredict.rc
===================================================================
--- trunk/win32/gpredict.rc 2011-04-01 12:15:25 UTC (rev 806)
+++ trunk/win32/gpredict.rc 2011-04-01 12:35:03 UTC (rev 807)
@@ -1,7 +1,38 @@
#include <windows.h>
-#include <winuser.h>
+#include <commctrl.h>
+#include <richedit.h>
+#include "resource.h"
-/* icon for the program itself */
-icon_0 ICON "icons/gpredict-icon.ico"
-2 RT_MANIFEST gpredict.exe.manifest
+A ICON "icons/gpredict-icon.ico"
+LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
+1 VERSIONINFO
+ FILEVERSION 1,3,0,0
+ PRODUCTVERSION 1,3,0,0
+ FILEOS VOS__WINDOWS32
+ FILETYPE VFT_APP
+ FILESUBTYPE VFT2_UNKNOWN
+ FILEFLAGSMASK 0x00000000
+ FILEFLAGS 0x00000000
+{
+ BLOCK "StringFileInfo"
+ {
+ BLOCK "040904e4"
+ {
+ VALUE "CompanyName", "Alexandru Csete, OZ9AEC"
+ VALUE "FileDescription", "Gpredict: Real-time satellite tracking and orbit prediction program"
+ VALUE "FileVersion", "1.3.0.0"
+ VALUE "InternalName", "GPredict"
+ VALUE "LegalCopyright", "Copyright (C) 2001-2011 Alexandru Csete, OZ9AEC"
+ VALUE "ProductName", "GPredict"
+ VALUE "ProductVersion", "1.3"
+ }
+ }
+ BLOCK "VarFileInfo"
+ {
+ VALUE "Translation", 0x0409, 0x04E4
+ }
+}
+
+LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
+2 RT_MANIFEST "gpredict.exe.manifest"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|