On Dec 15, 2007 6:04 PM, felix <
felix@xxxxxxxxxxxxxxxxxxx> wrote:
can SC programmatically declare its version yet ?
quarkfile:
(
..
\versions:
(
"3.1.1" -> 145 // svn revision number
)
..
)
thus you could fix bugs related to the 3.1.1 version
you could then commit changes for the 3.2 version
(
..
\versions:
(
"3.1.1" -> 147, // svn revision number
"3.2" -> 148
)
..
)
but you would have a hard time going back to 147 and fixing a bug there (you could only commit up to 149) and then returning to 3.2 world to further develop
but this is a rare case to fuss over considering the utility and audience size let's be realistic here yeah ?
3.1.1 -> 145
3.2 -> 152
so the author of the quark declares what the stable svn revision number is for a given sc version.
checking out a quark would automatically grab the designated stable and compatible version for the SC that you are running. not the HEAD (as it does now).