Posts tagged ‘QSvn’

QSvn Mailing List started

After some questions about to contact to QSvn author and other users i started the QSvn Mailing List today. You can subscribe to the list and mail your questions, suggestions and answers to questions from others to the list. If it is necessary i’ll create more detailled lists such as QSvn-users, QSvn-developers and so on…

Enjoy the list!

Yours,
Andreas Richter



Share/Save/Bookmark

QSvn 0.7.1 released

As i wrote here i released QSvn 0.7.1 today. This version fixes a bug on windows systems. QSvn 0.7.0 doesn’t show unversioned files anymore. QSvn 0.7.1 fixes this problem. According to this i updated linked libraries to Subversion 1.5.2, Qt 4.4.3 and svnqt 5.0.1.

For download have a look at the Release Notes.

Share/Save/Bookmark

Roadmap for QSvn 0.8.0 finished

After the Release of QSvn 0.7.0 i have worked with it for a while now. In this time i found any issues and thinks, that can work better. So i created some new tickets. These and some older ones i have scheduled for QSvn 0.8.0. I think and hope that i can release the next version of QSvn later this year. The tickets are not to heavy in development but my sparetime is very rare the next couple of weeks. But i’ll look what i can do :)

For the moment enjoy QSvn 0.7.0 and report any issues with it to the ticket system. Remember that you must be logged in in order to create a new ticket. If you don’t have an account yet, simple register a new one.

Share/Save/Bookmark

QSvn 0.7.0 released

I’m proud to announce you the release of QSvn 0.7.0. The new version now supports the merge-feature. You can merge changes from a specified URL into you local working copy or you can select changes in the log window to merge these changes to any of your local working copy.

For more informations about new features, changes and fixes in QSvn you can view the Release Notes. QSvn is available in source code and in a precompiled Windows-Installer. The Windows-version is compiled with Subversion 1.5.1-Libraries. You can find the files in the Download-Section.

Please Remember: When you upgrade from an older QSvn version on Windows Systems, you must uninstall the old one before you install QSvn 0.7.0. Your QSvn-settings are left on your system, when you uninstall the old QSvn-installation.

Have fun with the new version!

Cheers,
Andreas Richter

Share/Save/Bookmark

All QSvn-news on my blog

I have converted all news about QSvn from the project-page to my blog last week. According to this the QSvn-Feed is now showing on the QSvn-Start-Page. To achieve this i put the RSSget-Macro for Trac that can show an imported RSS-Feed. Unfortunately the original plugin shows no date. So i must patch the parse_file-function shown below to do the job.

def parse_file(feeddata):
 
	rss_snippets = ""
	pubDates = []
	titles = []
	links = []
	words = []
 
	xmlstring = StringIO.StringIO(feeddata)
	# print str(xmlstring)
	xmldoc = minidom.parse(xmlstring)
	Itemlist = xmldoc.getElementsByTagName('item')
 
	for Item in Itemlist:
		for node2 in Item.getElementsByTagName("pubDate"):
			pubDate = cgi.escape(node2.firstChild.data)[:16]
			pubDates.append(pubDate)
		for node2 in Item.getElementsByTagName("title"):
			title = cgi.escape(node2.firstChild.data)
			titles.append(title)
		for node2 in Item.getElementsByTagName("link"):
			link = cgi.escape(node2.firstChild.data)
			links.append(link)
		for node2 in Item.getElementsByTagName("description"):
			description = cgi.escape(node2.firstChild.data)
			words.append(description)
 
	rss_snippets += "
<dl>\n"
	for i in range(RESULTS_FULL):
		rss_snippets += "
<dt><a href="&quot; + links[i] + &quot;">" + titles[i] + "</a> (" + pubDates[i] + ")</dt>
 
\n"
		rss_snippets += "
<dd>
 
" + words[i] + "
</dd>
 
\n"
 
	for i in range(RESULTS_FULL, RESULTS_TOTAL):
		rss_snippets += "
<dt><a href="&quot; + links[i] + &quot;">" + titles[i] + "</a> (" + pubDates[i] + ")</dt>
 
\n"
	rss_snippets += "</dl>
 
\n"
 
	return rss_snippets

The patch is submitted at track-hacks.org so the author can apply it to a new version.

Share/Save/Bookmark

New URL

Please remember that QSvn is now hosted on a new URL http://www.anrichter.net/projects/qsvn. The old URL will redirect to the new one for a couple of weeks from now on. Please adjust any link or bookmark to the new URL.

Share/Save/Bookmark

Neue Domain

Seit gestern bin ich stolzer Besitzer einer neuen Domain. Ab sofort ist mein Blog und die Seiten von QSvn über http://www.anrichter.net erreichbar.

Bis auf weiteres werden Anfragen auf die alte Domain http://ar.oszine.de auf http://www.anrichter.net umgeleitet. Zu beachten ist der Zugriff auf das SVN-Repository von QSvn. Lokale Arbeitskopieen müssen erneut ausgeschleust werden, da SVN-Clients nicht ohne weiteres mit der Umleitung auf eine abweichende URL zurechtkommen.

Später, wenn sich die Wellen geglättet, alle Bookmarks aktualisiert sind und die Spider ihren Dienst verrichtet haben, wird die Subdomain ar.oszine.de vom Netz gehen.

Share/Save/Bookmark

QSvn 0.6.1 released

Today i finished my works on QSvn 0.6.1. This release only fixes some bugs. New features are developed for QSvn 0.7.0. You can view the Release Notes and download the source packages or a precompiled Windows-Binary.

Share/Save/Bookmark

Upload new src.tar.gz

After a bug report in building QSvn from sources i uploaded a new qsvn-0.6.0-src.tar.gz. The new src.tar.gz doesn’t contains the subversion administrative directories.

Share/Save/Bookmark

Finished: QSvn 0.6.0 is in the wild

After nine month of development i have finished the work on QSvn 0.6.0 yesterday in the evening. The key feature in this release is the ability to handle subversion properties. In addition to this QSvn 0.6.0 can now filter the log entries, delete files directly from the disk and close six bugs found in the previous version. More information about the new version and download-instructions you will find in the official Release Notes. Download and enjoy it :)

Share/Save/Bookmark