User jdoklovic - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:40:40Zhttp://stackoverflow.com/feeds/user/34336http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/262953/a-good-strategy-for-implementing-a-versioning-system3A good strategy for implementing a versioning systemjdoklovic2008-11-04T18:56:45Z2009-06-11T15:48:43Z
<p>I have been struggling with versioning software for a while now.
I'm not talking about a naming convention, I'm talking about how to actually apply a version in a build system all the way through to a release.</p>
<p>I generally use major.minor.maintenance-[release type]
i.e. 1.0.2-rc1</p>
<p>The problem is managing the version number. I've tried many ways (sticking it in a build file, a properties file, a database, etc,etc) but I haven't found anything that really works well.</p>
<p>The closest thing I came up with is using Jira which I documented here:
<a href="http://blog.sysbliss.com/uncategorized/release-management-with-atlassian-bamboo-and-jira.html" rel="nofollow">http://blog.sysbliss.com/uncategorized/release-management-with-atlassian-bamboo-and-jira.html</a></p>
<p>I'm wondering if anyone has any good ideas about this.
Also, wondering how people handle releasing a version.... i.e. If I release/deploy version 1.0.0-rc1 do bugs found in this release then get logged into 1.0.0 (the next/production release).</p>
http://stackoverflow.com/questions/299283/how-to-write-a-plugin-for-eclipse/299449#2994491Answer by jdoklovic for How to write a plugin for eclipse?jdoklovic2008-11-18T17:21:02Z2008-11-18T17:21:02Z<p>The best step-by-step that covers almost every aspect of plugin development is the book "Eclipse: Building Commercial Quality Plugins".</p>
<p>It's available at most book shops and electronically at safari:
<a href="http://safari.oreilly.com/9780321574435" rel="nofollow">http://safari.oreilly.com/9780321574435</a></p>
http://stackoverflow.com/questions/299344/how-can-i-export-part-of-a-flex-application-to-a-swf/299431#2994311Answer by jdoklovic for How can I export part of a Flex Application to a SWF?jdoklovic2008-11-18T17:15:00Z2008-11-18T17:15:00Z<p>You can easily export a screenshot, but i don't think you can save a swf.
see this thread:
<a href="http://www.actionscript.org/forums/showthread.php3?t=145846" rel="nofollow">http://www.actionscript.org/forums/showthread.php3?t=145846</a></p>
http://stackoverflow.com/questions/288467/trouble-linking-swc-file/288576#2885760Answer by jdoklovic for Trouble linking SWC filejdoklovic2008-11-13T22:31:23Z2008-11-13T22:31:23Z<p>Are you using the flex Gubmo sdk?
Looks like the method it's complaining about is in an interface that's part of Gumbo.
If so, then as3corelib probably won't work with it.</p>
http://stackoverflow.com/questions/260270/display-html-in-an-actionscript-3-project/265462#2654620Answer by jdoklovic for Display HTML in an Actionscript 3 projectjdoklovic2008-11-05T15:22:05Z2008-11-05T15:22:05Z<p>you might also want to try:
<a href="http://code.google.com/p/htmlwrapper/" rel="nofollow">http://code.google.com/p/htmlwrapper/</a></p>
<p>I haven't used it but it looks like it does what you want.</p>