• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Updates For Planes; Arno

Messages
10,158
Country
us-arizona
Arno,

You do a cool update check system on your MCX. It calls home to see if there is an update. I have wanted something like this for my planes forever.

Can you have a metadata flag for an update availability flag?

I was wondering last night about doing something like this;
* Button on the airplane control panel, or built in hidden gauge. I'll call this 'phone home' system.
* Phone home system calls home
* Phone home system looks up 'special webpage created only with a 'metadata tag' that has a code in it. If the code is a higher number then the plane has, then it flags a window on the plane stating 'there is an update available'.


I do not have my own server. I go through a server service for my website. I can create webpages. What exactly would the webpage need to have the information needed to flag for an update? I would really love to do this. Very curious.

I guess I would need a C++ program file to do the 'calling home' and checking.

I envy the other guys that have scenery updates (ORBX) that can tell you when updates are out. That is a cool feature.

It would also be cool, I think, to have a updates control panel (similar to ORBX) where your planes are shown that you have on the computer, and the ones that have updates are flagged with a red mark, etc.
 
Hi Bill,

What I have in the tools is quite simple. Whenever I make a new build a text file is uploaded to the web server with the date of the latest release. The tool knows when it was build and compares that with the date from the web server file.

I use C# for my tools and it's easy there to load a URL and get the text returned. I'm sure you can do it in C++ as well.
 
A thousand thanks, Arno.

So it can actually read a document online? Not by just the name of the document, but whats in it? Interesting....

I need to find someone that can make this for me.



DaveWG, its for my planes to be able to check home for updates. If an update is released, the 'system' in the plane package can notify the owner/customer that an update is available at his purchase site.


Bill
 
Hi Bill,

It's just like accessing a HTML file from a web server. Your browser will also load the URL and receive the text content of the HTML file. I do the same with a simple text file that contains the relevant meta data.
 
Back
Top