Gamestudio Links
Zorro Links
Newest Posts
Help with plotting multiple ZigZag
by degenerate_762. 04/30/24 23:23
M1 Oversampling
by 11honza11. 04/30/24 08:16
Trading Journey
by howardR. 04/28/24 09:55
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
Eigenwerbung
by jcl. 04/26/24 11:08
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (degenerate_762, AndrewAMD), 877 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
wandaluciaia, Mega_Rod, EternallyCurious, howardR, 11honza11
19049 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
How to tell if it is a development buid or release build #455645
10/26/15 17:26
10/26/15 17:26
Joined: Jun 2004
Posts: 2,234
Wisconsin USA
FoxHound Offline OP
Expert
FoxHound  Offline OP
Expert

Joined: Jun 2004
Posts: 2,234
Wisconsin USA
I want to have some stuff show up in the development build that won't show up in the release build. I've searched the manual and so far no go.


---------------------
There is no signature here.


QUIT LOOKING FOR ONE!
Re: How to tell if it is a development buid or release build [Re: FoxHound] #455648
10/26/15 17:52
10/26/15 17:52
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Superku Offline
Senior Expert
Superku  Offline
Senior Expert

Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
You could just define a new variable (or #define RELEASE) yourself and change it prior publishing.


"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual

Check out my new game: Pogostuck: Rage With Your Friends
Re: How to tell if it is a development buid or release build [Re: Superku] #455653
10/26/15 19:12
10/26/15 19:12

M
Malice
Unregistered
Malice
Unregistered
M




Last edited by Malice; 10/26/15 19:13.
Re: How to tell if it is a development buid or release build [Re: ] #455654
10/26/15 19:18
10/26/15 19:18
Joined: Jun 2004
Posts: 2,234
Wisconsin USA
FoxHound Offline OP
Expert
FoxHound  Offline OP
Expert

Joined: Jun 2004
Posts: 2,234
Wisconsin USA
I wanted something more automatic.

Any idea on how to get the date the game was released?


---------------------
There is no signature here.


QUIT LOOKING FOR ONE!
Re: How to tell if it is a development buid or release build [Re: FoxHound] #455656
10/26/15 19:27
10/26/15 19:27
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Superku Offline
Senior Expert
Superku  Offline
Senior Expert

Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
@Malice: Thanks, I thought there was something like that but just couldn't remember.

@FoxHound: You could define a variable for that also. How often do you plan on publishing anyway?


"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual

Check out my new game: Pogostuck: Rage With Your Friends
Re: How to tell if it is a development buid or release build [Re: Superku] #455658
10/26/15 19:49
10/26/15 19:49
Joined: Jun 2004
Posts: 2,234
Wisconsin USA
FoxHound Offline OP
Expert
FoxHound  Offline OP
Expert

Joined: Jun 2004
Posts: 2,234
Wisconsin USA
Multiple times a week. This way the artist can see the update and bug fixes. Sometimes I can't tell which build. Not to hard really but I like a fool proof version better than trying to remember.


---------------------
There is no signature here.


QUIT LOOKING FOR ONE!
Re: How to tell if it is a development buid or release build [Re: FoxHound] #455659
10/26/15 20:22
10/26/15 20:22
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Superku Offline
Senior Expert
Superku  Offline
Senior Expert

Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Maybe this helps: https://msdn.microsoft.com/en-us/library/windows/desktop/ms724320(v=vs.85).aspx


"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual

Check out my new game: Pogostuck: Rage With Your Friends
Re: How to tell if it is a development buid or release build [Re: Superku] #455660
10/26/15 21:22
10/26/15 21:22

M
Malice
Unregistered
Malice
Unregistered
M



Can I point out the easy stuff.
1) rename the published exe to include the current date.
2) right click the file - select properties and look at the 'creation date'
3) view the file in windows explore with details - creation date listed

#define last_build 10_25_15
#define this_build 10_26_15
#define RELEASE 99999

Just idea's

Have fun
Mal

Re: How to tell if it is a development buid or release build [Re: ] #455667
10/27/15 00:05
10/27/15 00:05
Joined: Jun 2004
Posts: 2,234
Wisconsin USA
FoxHound Offline OP
Expert
FoxHound  Offline OP
Expert

Joined: Jun 2004
Posts: 2,234
Wisconsin USA
What I want is to setup for the release build to say the date of creation in the window name itself. I can write all these manually however it is helpful to have the engine do it itself to prevent the simple issues, such as me forgetting to. We did have an issue awhile back where an old build was used instead of the current one I had sent. This is more preventive maintenance than anything else.

Currently it tells me if it is in development or release. Helpful when I have to run the release on my computer to make sure it works and forgetting which one I am actually running.


---------------------
There is no signature here.


QUIT LOOKING FOR ONE!
Re: How to tell if it is a development buid or release build [Re: FoxHound] #455668
10/27/15 00:21
10/27/15 00:21

M
Malice
Unregistered
Malice
Unregistered
M



http://www.conitec.net/beta/asys_day.htm
day
http://www.conitec.net/beta/asys_month.htm
month
http://www.conitec.net/beta/asys_year.htm
yesr
http://www.conitec.net/beta/asys_hours.htm
hour
http://www.conitec.net/beta/asys_minutes.htm
minutes
http://www.conitec.net/beta/aapp_name.htm
string for name of main file and exe name (however READ-ONLY)

However there is not way to add it to the name.

When running File->Publish main script from sed, why not just add date and time before .exe manually
office.exe
office_10_25_2015_6pm.exe
You get to edit the name before the exe is published.

Page 1 of 2 1 2

Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1