 |
27-03-2011, 11:03 AM
|
#1 (permalink)
|
|
Right Off the Assembly Line
Join Date: Mar 2011
Location: Tirupati
Posts: 8
|
how many versions of a software are there??
Hello guys,
I'm trying to download a software from the Internet, there I have seen some link saying "Binary version of software is available".
what that actually means and what version is usually we download from the Internet? and are there any other versions that can be made available for a software?
Waiting for your reply...
|
|
|
|
Advertisements. Register and be a member of the community to get rid of them.
|
|
Advertisement
|
|
27-03-2011, 11:27 AM
|
#2 (permalink)
|
|
will be back
Join Date: Jan 2010
Location: Guwahati
Posts: 10,131
|
Re: how many versions of a software are there??
which software?
|
|
|
27-03-2011, 12:58 PM
|
#3 (permalink)
|
|
Right Off the Assembly Line
Join Date: Mar 2011
Location: Tirupati
Posts: 8
|
Re: how many versions of a software are there??
Hello sam,
I remember its a pdfcreator..
|
|
|
27-03-2011, 02:02 PM
|
#4 (permalink)
|
|
Stuck in Time...
Join Date: May 2009
Location: Land of Logic
Posts: 2,275
|
Re: how many versions of a software are there??
If possible please provide the link to the page, from where this message is informing you about the Binary version.
I have never came across such versions! I think, it must have meant, non-compiled version of the software, which I don't think you would require!
__________________
Marty: Hey, Doc, we better back up. We don't have enough road to get up to 88.
Doc Brown: Roads? Where we're going, we don't need, "roads!" :)
──── On the Internet you can be Anything you want. It's Strange that, so many people choose to be Stupid! ────
|
|
|
27-03-2011, 02:15 PM
|
#5 (permalink)
|
|
XLr8
Join Date: Sep 2008
Posts: 637
|
Re: how many versions of a software are there??
Quote:
Originally Posted by gubbaraviteja
Hello guys,
I'm trying to download a software from the Internet, there I have seen some link saying "Binary version of software is available".
what that actually means and what version is usually we download from the Internet? and are there any other versions that can be made available for a software?
Waiting for your reply... 
|
there two type of files for download regarding softwares
1. binary (contain exe for windows and packed files for linux depending on platform like deb rpm etc)
2. source code. (the source files. u have to compile them) generally there will be a make file for linux or C++ source code with the header and library
download the binary if u want to install it.
source is for alpha testers or for people who want to see what the prog is doing
always download the highest version but less than Beta (beta contains bugs).
eg. two binaries are available:
ABC v3.7 Beta
ABC v3.0
then download v3.0
the version is generally denoted by 4 digits like P.Q.R.S
P= major change
Q= minor change
R= build version
S= revision number
for more info see :
Software versioning - Wikipedia, the free encyclopedia
Revision control - Wikipedia, the free encyclopedia
__________________
Quote:
There are more things in heaven and earth, Horatio,
Than are dreamt of in your philosophy.
|
|
|
|
27-03-2011, 02:21 PM
|
#6 (permalink)
|
|
Stuck in Time...
Join Date: May 2009
Location: Land of Logic
Posts: 2,275
|
Re: how many versions of a software are there??
Ok... I guess above post make me completely wrong... hehe..
Nevermind...
Thanks for the clear answer arpanmukherjee1!
__________________
Marty: Hey, Doc, we better back up. We don't have enough road to get up to 88.
Doc Brown: Roads? Where we're going, we don't need, "roads!" :)
──── On the Internet you can be Anything you want. It's Strange that, so many people choose to be Stupid! ────
|
|
|
27-03-2011, 02:55 PM
|
#7 (permalink)
|
|
XLr8
Join Date: Sep 2008
Posts: 637
|
Re: how many versions of a software are there??
^^ welcome.
no problemo. we r here to share the knowledge !!!
__________________
Quote:
There are more things in heaven and earth, Horatio,
Than are dreamt of in your philosophy.
|
|
|
|
27-03-2011, 02:56 PM
|
#8 (permalink)
|
|
Right Off the Assembly Line
Join Date: Mar 2011
Location: Tirupati
Posts: 8
|
Re: how many versions of a software are there??
Quote:
Originally Posted by arpanmukherjee1
there two type of files for download regarding softwares
1. binary (contain exe for windows and packed files for linux depending on platform like deb rpm etc)
2. source code. (the source files. u have to compile them) generally there will be a make file for linux or C++ source code with the header and library
download the binary if u want to install it.
source is for alpha testers or for people who want to see what the prog is doing
always download the highest version but less than Beta (beta contains bugs).
eg. two binaries are available:
ABC v3.7 Beta
ABC v3.0
then download v3.0
the version is generally denoted by 4 digits like P.Q.R.S
P= major change
Q= minor change
R= build version
S= revision number
for more info see :
Software versioning - Wikipedia, the free encyclopedia
Revision control - Wikipedia, the free encyclopedia
|
Hello mukherjee,
Thank you for the information, I got clarified..
|
|
|
27-03-2011, 05:28 PM
|
#9 (permalink)
|
|
God of Mistakes...
Join Date: Dec 2005
Location: Pune, Maharashtra
Posts: 1,923
|
Re: how many versions of a software are there??
Quote:
Originally Posted by arpanmukherjee1
always download the highest version but less than Beta (beta contains bugs).
|
Did you mean, beta may contain bugs? o_O
BTW, nice explanation!
|
|
|
27-03-2011, 06:09 PM
|
#10 (permalink)
|
|
Stuck in Time...
Join Date: May 2009
Location: Land of Logic
Posts: 2,275
|
Re: how many versions of a software are there??
Personally I dont care about "bugs". I mean, SOMEbody have to beta-test the Beta's
__________________
Marty: Hey, Doc, we better back up. We don't have enough road to get up to 88.
Doc Brown: Roads? Where we're going, we don't need, "roads!" :)
──── On the Internet you can be Anything you want. It's Strange that, so many people choose to be Stupid! ────
|
|
|
28-03-2011, 12:46 AM
|
#11 (permalink)
|
|
XLr8
Join Date: Sep 2008
Posts: 637
|
Re: how many versions of a software are there??
Quote:
Originally Posted by Garbage
Did you mean, beta may contain bugs? o_O 
|
yup that's what i said. bugs that r left out due to various platforms, software conflicts, thread locks etc. thats what beta testing is for. the programmers could not feasibly test the software without external help
Quote:
Originally Posted by Garbage
BTW, nice explanation! 
|
thank you
Quote:
Originally Posted by vineet369
Personally I dont care about "bugs". I mean, SOMEbody have to beta-test the Beta's 
|
that, my friend, is absolutely correct
__________________
Quote:
There are more things in heaven and earth, Horatio,
Than are dreamt of in your philosophy.
|
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|
|