From cf6a45fb87bc39e0b52f798ed2bab28e675af24a Mon Sep 17 00:00:00 2001 From: Jason Watkins Date: Sat, 20 Oct 2018 13:52:22 -0700 Subject: [PATCH] Update version numbers --- C/playbackExample/src/main.c | 2 +- Java/Examples/Playback/src/gov/nasa/xpc/Main.java | 2 +- Python/src/playbackExample.py | 6 +++--- xpcPlugin/XPCPlugin.cpp | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/C/playbackExample/src/main.c b/C/playbackExample/src/main.c index ed13e9a..785582d 100644 --- a/C/playbackExample/src/main.c +++ b/C/playbackExample/src/main.c @@ -35,7 +35,7 @@ int main(void) }; char path[256] = { 0 }; - displayStart("1.2.0.0"); + displayStart("1.3-rc.1"); while (1) { switch (displayMenu("What would you like to do?", mainOpts, 3)) diff --git a/Java/Examples/Playback/src/gov/nasa/xpc/Main.java b/Java/Examples/Playback/src/gov/nasa/xpc/Main.java index 477e8f5..3b5925b 100644 --- a/Java/Examples/Playback/src/gov/nasa/xpc/Main.java +++ b/Java/Examples/Playback/src/gov/nasa/xpc/Main.java @@ -12,7 +12,7 @@ public class Main { String[] mainOpts = new String[] { "Record X-Plane", "Playback File", "Exit" }; - System.out.println("X-Plane Connect Playback Example [Version 1.2.0.0]"); + System.out.println("X-Plane Connect Playback Example [Version 1.3-rc.1]"); System.out.println("(c) 2013-2015 United States Government as represented by the Administrator"); System.out.println("of the National Aeronautics and Space Administration. All Rights Reserved."); while(true) diff --git a/Python/src/playbackExample.py b/Python/src/playbackExample.py index dfa4f52..21730b8 100644 --- a/Python/src/playbackExample.py +++ b/Python/src/playbackExample.py @@ -33,7 +33,7 @@ def playback(path, interval): print "Unable to open file." return - with xpc.XPlaneConnect("localhost", 49009, 0, 1000) as client: + with xpc.XPlaneConnect("localhost", 49009, 0, 1000) as client: print "Starting Playback..." for line in fd: try: @@ -56,7 +56,7 @@ def printMenu(title, opts): return int(raw_input("Please select and option: ")) def ex(): - print "X-Plane Connect Playback Example [Version 1.2.0]" + print "X-Plane Connect Playback Example [Version 1.3-rc.1]" print "(c) 2013-2015 United States Government as represented by the Administrator" print "of the National Aeronautics and Space Administration. All Rights Reserved." @@ -79,4 +79,4 @@ def ex(): print "Unrecognized option." if __name__ == "__main__": - ex() \ No newline at end of file + ex() diff --git a/xpcPlugin/XPCPlugin.cpp b/xpcPlugin/XPCPlugin.cpp index 45b5fb7..065280b 100755 --- a/xpcPlugin/XPCPlugin.cpp +++ b/xpcPlugin/XPCPlugin.cpp @@ -90,7 +90,7 @@ static float XPCFlightLoopCallback(float inElapsedSinceLastCall, float inElapsed PLUGIN_API int XPluginStart(char* outName, char* outSig, char* outDesc) { - strcpy(outName, "X-Plane Connect [Version 1.2.1]"); + strcpy(outName, "X-Plane Connect [Version 1.3-rc.1]"); strcpy(outSig, "NASA.XPlaneConnect"); strcpy(outDesc, "X Plane Communications Toolbox\nCopyright (c) 2013-2018 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved."); @@ -105,7 +105,7 @@ PLUGIN_API int XPluginStart(char* outName, char* outSig, char* outDesc) 1000000000.0; } #endif - XPC::Log::Initialize("1.2.1"); + XPC::Log::Initialize("1.3-rc.1"); XPC::Log::WriteLine(LOG_INFO, "EXEC", "Plugin Start"); XPC::DataManager::Initialize();