<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gephi &#187; Announcement</title>
	<atom:link href="http://gephi.org/topics/announcement/feed/" rel="self" type="application/rss+xml" />
	<link>https://gephi.org</link>
	<description>graph exploration and manipulation</description>
	<lastBuildDate>Thu, 02 Feb 2012 10:30:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introducing the Gephi Plugins Bootcamp</title>
		<link>https://gephi.org/2012/introducing-the-gephi-plugins-bootcamp/</link>
		<comments>https://gephi.org/2012/introducing-the-gephi-plugins-bootcamp/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 07:44:51 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[bootcamp]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[toolkit]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4679</guid>
		<description><![CDATA[We&#8217;re happy to announce a new tool for the community today: the Gephi Plugins Bootcamp. The bootcamp is a large set of plug-in examples to guide developers create Gephi plugins easily.
Gephi&#8217;s vision focuses on the platform and we want developers to be creative and successful. Gephi is built in a way it can be easily extended [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re happy to announce a new tool for the community today: the <a href="https://github.com/gephi/gephi-plugins-bootcamp" target="_blank">Gephi Plugins Bootcamp</a>. The bootcamp is a large set of <strong>plug-in examples</strong> to guide developers create Gephi plugins easily.</p>
<p>Gephi&#8217;s vision focuses on the platform and we want developers to be creative and successful. Gephi is built in a way it can be easily extended with <a href="/plugins">plug-ins</a> (layout, filters, io, preview, &#8230;) but it&#8217;s not always easy to know where to start. The bootcamp addresses this need and provide the <strong>environment</strong> and the <strong>examples</strong> to get started.</p>
<p>Want to create a new layout? The <a href="https://github.com/gephi/gephi-plugins-bootcamp/blob/master/LayoutPluginExample/src/org/gephi/plugins/example/layout/GridLayout.java">Grid Layout</a> example shows how to read the graph and to change coordinates. A new filter? A new exporter? Check out the <a href="https://github.com/gephi/gephi-plugins-bootcamp/blob/master/ExportPluginExample/src/org/gephi/plugins/example/exporter/JPGExporter.java">JPGExporter</a> or the <a href="https://github.com/gephi/gephi-plugins-bootcamp/blob/master/ExportPluginExample/src/org/gephi/plugins/example/exporter/SQLiteDatabaseExporter.java">SQLite exporter</a> examples. Below is the complete list of examples and we&#8217;ll add more soon upon requests.</p>
<p><strong><img class="alignnone size-full wp-image-2203" title="arrow" src="https://gephi.org/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />Checkout the code on <a href="https://github.com/gephi/gephi-plugins-bootcamp" target="_blank"><strong>GitHub</strong></a>. </strong></p>
<p><strong></strong>The README file contains the instructions to get the code and to run the examples.</p>
<h3>Layout</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/grid_layout.png"><img class="alignnone size-thumbnail wp-image-4696" style="border-image: initial; border: 1px solid grey;" title="Grid Layout Example" src="https://gephi.org/wp-content/uploads/2012/01/grid_layout-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/LayoutPluginExample/src/org/gephi/plugins/example/layout" target="_blank">Grid Layout</a><br />
<span style="font-weight: normal;">Place all nodes in a simple grid. Users can configure the size of the area and the speed.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td><a href="https://gephi.org/wp-content/uploads/2012/01/grid_layout_sorted.png"><img class="alignnone size-thumbnail wp-image-4697" style="border-image: initial; border: 1px solid grey;" title="Sorted Grid Layout Example" src="https://gephi.org/wp-content/uploads/2012/01/grid_layout_sorted-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/LayoutPluginExample/src/org/gephi/plugins/example/layout">Sorted Grid Layout</a><br />
<span style="font-weight: normal;">Same example as Grid Layout but users can sort nodes using an attribute column.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Filter</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/transform_undirected.png"><img class="alignnone size-thumbnail wp-image-4737" style="border-image: initial; border: 1px solid grey;" title="Transform to Undirected Example" src="https://gephi.org/wp-content/uploads/2012/01/transform_undirected-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/FilterPluginExample/src/org/gephi/plugins/example/filter" target="_blank">Transform to Undirected</a><br />
<span style="font-weight: normal;">Edge filter to remove mutual edges in a directed graph.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td><a href="https://gephi.org/wp-content/uploads/2012/01/top_nodes_filter.png"><img class="alignnone size-thumbnail wp-image-4699" style="border-image: initial; border: 1px solid grey;" title="Top Nodes Filter" src="https://gephi.org/wp-content/uploads/2012/01/top_nodes_filter-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/FilterPluginExample/src/org/gephi/plugins/example/filter" target="_blank">Top nodes</a><br />
<span style="font-weight: normal;">Keep the top K nodes using an attribute column.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td><a href="https://gephi.org/wp-content/uploads/2012/01/filter_edge_crossing.png"><img class="alignnone size-thumbnail wp-image-4698" style="border-image: initial; border: 1px solid grey;" title="Filter Edge Crossing Example" src="https://gephi.org/wp-content/uploads/2012/01/filter_edge_crossing-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/FilterPluginExample/src/org/gephi/plugins/example/filter" target="_blank">Remove Edge Crossing</a><br />
<span style="font-weight: normal;">Example of a complex filter implementation which removes edges until no crossing occurs.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Tool</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/tool_find.png"><img class="alignnone size-thumbnail wp-image-4700" style="border-image: initial; border: 1px solid grey;" title="FInd with Autocomplete" src="https://gephi.org/wp-content/uploads/2012/01/tool_find-100x88.png" alt="" width="100" height="88" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/ToolPluginExample/src/org/gephi/plugins/example/tool" target="_blank">Find with autocomplete</a><br />
<span style="font-weight: normal;">Tool with a autocomplete text field to find any node based on labels and zoom by it.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td><a href="https://gephi.org/wp-content/uploads/2012/01/tool_add_nodes.png"><img class="alignnone size-thumbnail wp-image-4701" style="border-image: initial; border: 1px solid grey;" title="Add Nodes example" src="https://gephi.org/wp-content/uploads/2012/01/tool_add_nodes-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/ToolPluginExample/src/org/gephi/plugins/example/tool" target="_blank">Add Nodes</a><br />
<span style="font-weight: normal;">Listen to mouse clicks and adds nodes. Also adds edges if selecting other nodes.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Export</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/jpg-export.png"><img class="alignnone size-thumbnail wp-image-4734" style="border-image: initial; border: 1px solid grey;" title="jpg export" src="https://gephi.org/wp-content/uploads/2012/01/jpg-export-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/ExportPluginExample/src/org/gephi/plugins/example/exporter" target="_blank">JPG Export</a><br />
<span style="font-weight: normal;">Vectorial export to the JPG image format. Contains a settings panel to set the width and height.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td><a href="https://gephi.org/wp-content/uploads/2012/01/sqlite_export.png"><img class="alignnone size-thumbnail wp-image-4735" style="border-image: initial; border: 1px solid grey;" title="sqlite_export" src="https://gephi.org/wp-content/uploads/2012/01/sqlite_export-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/ExportPluginExample/src/org/gephi/plugins/example/exporter" target="_blank">SQLite Database Export</a><br />
<span style="font-weight: normal;">Current graph export to a SQLite Database file. A new sub-menu is added in the Export menu and an example of a custom exporter is shown.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Preview</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/highlight_mutual_edges.png"><img class="alignnone size-thumbnail wp-image-4702" style="border-image: initial; border: 1px solid grey;" title="Highlight mutual edges example" src="https://gephi.org/wp-content/uploads/2012/01/highlight_mutual_edges-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/PreviewPluginExample/src/org/gephi/plugins/example/preview" target="_blank">Highlight Mutual Edges</a><br />
<span style="font-weight: normal;">Colors differently mutual edges. Overwrites and extends the default edge renderer.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td><a href="https://gephi.org/wp-content/uploads/2012/01/glow_effect.png"><img class="alignnone size-thumbnail wp-image-4703" style="border-image: initial; border: 1px solid grey;" title="Glow Renderer example" src="https://gephi.org/wp-content/uploads/2012/01/glow_effect-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/PreviewPluginExample/src/org/gephi/plugins/example/preview" target="_blank">Glow Renderer</a><br />
<span style="font-weight: normal;">Adds a new renderer for node items which draws a glow effect around nodes.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td><a href="https://gephi.org/wp-content/uploads/2012/01/z-ordering.png"><img class="alignnone size-thumbnail wp-image-4704" style="border-image: initial; border: 1px solid grey;" title="Z-Ordering Example" src="https://gephi.org/wp-content/uploads/2012/01/z-ordering-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/PreviewPluginExample/src/org/gephi/plugins/example/preview" target="_blank">Node Z-ordering</a><br />
<span style="font-weight: normal;">Extends the default node builder by reordering the node items by size or any number columns. Also shows how to create complex Preview UI.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Importer</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/matrix_example.png"><img class="alignnone size-thumbnail wp-image-4705" style="border-image: initial; border: 1px solid grey;" title="Matrix import example" src="https://gephi.org/wp-content/uploads/2012/01/matrix_example-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/ImportPluginExample/src/org/gephi/plugins/example/importer" target="_blank">Matrix Market File Importer</a><br />
<span style="font-weight: normal;">File importer for the Matrix Market format. Large set of matrix file examples on <a href="http://www2.research.att.com/~yifanhu/GALLERY/GRAPHS/index.html">Yifan Hu’s gallery</a>.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Statistics</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/self_loop_count.png"><img class="alignnone size-thumbnail wp-image-4706" style="border-image: initial; border: 1px solid grey;" title="Count Self Loop example" src="https://gephi.org/wp-content/uploads/2012/01/self_loop_count-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/StatisticsPluginExample/src/org/gephi/plugins/example/statistics" target="_blank">Count Self-Loop</a><br />
<span style="font-weight: normal;">Example of a statistics result at the global level. Simply counts the number of self-loop edges in the graph.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/avg_euclidean_dist.png"><img class="alignnone size-thumbnail wp-image-4707" style="border-image: initial; border: 1px solid grey;" title="Average Euclidean Distance Example" src="https://gephi.org/wp-content/uploads/2012/01/avg_euclidean_dist-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/StatisticsPluginExample/src/org/gephi/plugins/example/statistics" target="_blank">Average Euclidean Distance</a><br />
<span style="font-weight: normal;">Example of a per-node calculation. For a given node it calculates the average distance to others.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Plugins sub-menu</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/submenus.png"><img class="alignnone size-thumbnail wp-image-4708" style="border-image: initial; border: 1px solid grey;" title="Submenus Example" src="https://gephi.org/wp-content/uploads/2012/01/submenus-100x89.png" alt="" width="100" height="89" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/PluginsSubMenuExample/src/org/gephi/plugins/example/submenu" target="_blank">Test action</a><br />
<span style="font-weight: normal;">Simple action which displays a message and a dialog.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/remove_self_loops.png"><img class="alignnone size-thumbnail wp-image-4728" style="border-image: initial; border: 1px solid grey;" title="Remove Self Loop Example" src="https://gephi.org/wp-content/uploads/2012/01/remove_self_loops-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/PluginsSubMenuExample/src/org/gephi/plugins/example/submenu" target="_blank">Remove self loops</a><br />
<span style="font-weight: normal;">Action which accesses the graph and removes self-loops, if any.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/progress.png"><img class="alignnone size-thumbnail wp-image-4729" style="border-image: initial; border: 1px solid grey;" title="Progress Example" src="https://gephi.org/wp-content/uploads/2012/01/progress-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/PluginsSubMenuExample/src/org/gephi/plugins/example/submenu" target="_blank">Using Progress and Cancel</a><br />
<span style="font-weight: normal;">Action which creates a long task and executes it with progress and cancel support.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Execute at startup</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/ui_ready.png"><img class="alignnone size-thumbnail wp-image-4730" style="border-image: initial; border: 1px solid grey;" title="UI Ready Example" src="https://gephi.org/wp-content/uploads/2012/01/ui_ready-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/ExecuteAtStartupExample/src/org/gephi/plugins/example/startup" target="_blank">When UI is ready</a><br />
<span style="font-weight: normal;">Do something when the UI finished loading.<br />
</span></td>
</tr>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/workspace_events.png"><img class="alignnone size-thumbnail wp-image-4731" style="border-image: initial; border: 1px solid grey;" title="workspace_events" src="https://gephi.org/wp-content/uploads/2012/01/workspace_events-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/ExecuteAtStartupExample/src/org/gephi/plugins/example/startup" target="_blank">Workspace select events</a><br />
<span style="font-weight: normal;">Do something when a workspace is selected.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Processor</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/initial_position.png"><img class="alignnone size-thumbnail wp-image-4710" style="border-image: initial; border: 1px solid grey;" title="Initial Position Processor Example" src="https://gephi.org/wp-content/uploads/2012/01/initial_position-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/ProcessorPluginExample/src/org/gephi/plugins/example/processor" target="_blank">Initial Position</a><br />
<span style="font-weight: normal;">Set up the nodes&#8217; initial position always the same. It calculates a hash with all nodes so the X/Y position is randomized always in the same way.<br />
</span></td>
</tr>
</tbody>
</table>
<h3>Panels</h3>
<table style="text-align: left;" border="0" cellpadding="2">
<tbody>
<tr style="background-color: #eeeeee;">
<td width="100"><a href="https://gephi.org/wp-content/uploads/2012/01/simple_panel.png"><img class="alignnone size-thumbnail wp-image-4709" style="border-image: initial; border: 1px solid grey;" title="Panel Example" src="https://gephi.org/wp-content/uploads/2012/01/simple_panel-100x100.png" alt="" width="100" height="100" /></a></td>
<td style="padding-left: 10px; font-weight: bold; line-height: 200%;"><a href="https://github.com/gephi/gephi-plugins-bootcamp/tree/master/NewModulePanelPluginExample/src/org/gephi/plugins/example/panel" target="_blank">New panel</a><br />
<span style="font-weight: normal;">Example of a new panel plugin set up at the layout position.<br />
</span></td>
</tr>
</tbody>
</table>
<p>If you have any questions please send an email to the <strong>gephi-plugins [at] lists.gephi.org</strong> mailing list or stop by on the <a href="http://forum.gephi.org">forum</a>.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2012/introducing-the-gephi-plugins-bootcamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gephi migrates to GitHub</title>
		<link>https://gephi.org/2011/gephi-migrates-to-github/</link>
		<comments>https://gephi.org/2011/gephi-migrates-to-github/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 18:49:24 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[toolkit]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4630</guid>
		<description><![CDATA[We are happy to announce we finished the migration of our code from Launchpad to GitHub. All the code and bugs have been successfully transfered with the complete history. We can now profit from the best platform out-there and use Git, the fastest revision control system.
We hope you&#8217;ll find GitHub faster and easier to use [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-4631" title="Github logo" src="https://gephi.org/wp-content/uploads/2011/11/github_logov6-300x135.png" alt="" width="126" height="57" />We are happy to announce we finished the migration of our code from <a href="https://launchpad.net/gephi">Launchpad</a> to <a href="https://github.com/gephi/">GitHub</a>. All the code and bugs have been successfully transfered with the complete history. We can now profit from the best platform out-there and use <a href="http://git-scm.com/">Git</a>, the fastest revision control system.</p>
<p>We hope you&#8217;ll find <a href="https://github.com/gephi/"><strong>GitHub</strong></a> faster and easier to use than Launchpad. The team is already appreciating how easy it is to report <a href="https://github.com/gephi/gephi/issues">issues</a> and work together on the code. GitHub has more than <a href="https://github.com/blog/936-one-million">a million users</a> and will make the project more visible and ease external contributions.</p>
<p>Technically, we migrated our <a href="https://code.launchpad.net/gephi">branches</a> from Bazaar to Git (thanks to <a href="http://github.com/termie/git-bzr-ng">git-bzr</a>) so the history is entirely kept. We also moved all our <a href="https://bugs.launchpad.net/gephi">bugs</a> with a simple <a href="https://github.com/termie/lp2gh/blob/master/docs/moving_issues.rst">script</a>. We are still working on the details. If you see something wrong or missing on GitHub, please contact us or create an issue on GitHub. If you had some branches on Launchpad, you can find them on the GitHub <a href="https://github.com/gephi/gephi-launchpad-branches/branches">repository</a>. Let us know if you have questions. Contributors simply fork the repository and get started. We updated the documentation on the wiki. Consult the <a href="http://wiki.gephi.org/index.php/Gephi_Developer_Handbook">Developer Handbook</a>.</p>
<h3>Checkout code</h3>
<p>Run<br />
<code>git clone git://github.com/gephi/gephi.git</code></p>
<h3>Report issues</h3>
<p>Simply go to the <a href="https://github.com/gephi/gephi/issues">Issues</a> tab.</p>
<h3>Build in one step</h3>
<p>Simply run <code>ant</code> at the root of the repository to build Gephi. The executable are located in the dist folder.</p>
<p>We made some improvements on the building process. Previously, Netbeans was required to build Gephi. We now integrates the platform directly in the source code so it&#8217;s not necessary anymore. It&#8217;s literally a one step process.</p>
<p><strong>Please let us know your feedbacks and questions as usual on the <a href="http://forum.gephi.org">forum</a>.</strong></p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2011/gephi-migrates-to-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Gephi Toolkit release, based on 0.8 beta</title>
		<link>https://gephi.org/2011/new-gephi-toolkit-release-based-on-0-8-beta/</link>
		<comments>https://gephi.org/2011/new-gephi-toolkit-release-based-on-0-8-beta/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 08:59:22 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[toolkit]]></category>

		<guid isPermaLink="false">https://gephi.org/?p=4586</guid>
		<description><![CDATA[A new release of the Gephi Toolkit arrived, based on the 0.8 beta version. Download the latest package, including Javadoc and demos by clicking on the link below.

It includes all features and bugfixes the 0.8 beta version has. Check out the Release Notes
Demos available on the Toolkit Portal have been adapted when necessary and tested. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3209" title="Gephi Toolkit on Truthy" src="/wp-content/uploads/2010/10/toolkitarticleexample1-300x211.png" alt="" width="156" height="108" />A new release of the <a href="/toolkit">Gephi Toolkit</a> arrived, based on the <a href="gephi-0-8-beta-released/">0.8 beta</a> version. Download the latest package, including Javadoc and demos by clicking on the link below.</p>
<p><a href="http://launchpad.net/gephi/toolkit/toolkit-0.8.2497/+download/gephi-toolkit-0.8.2497-all.zip"><img class="alignnone size-full wp-image-2658" title="Download Gephi Toolkit" src="/wp-content/uploads/2010/06/download-toolkit.png" alt="" width="168" height="44" /></a></p>
<p>It includes <strong>all features</strong> and <strong>bugfixes</strong> the 0.8 beta version has. Check out the <a href="https://wiki.gephi.org/index.php/Toolkit_Releases">Release Notes</a></p>
<p>Demos available on the <a href="https://wiki.gephi.org/index.php/Toolkit_portal">Toolkit Portal</a> have been adapted when necessary and tested. If you are interested in using plug-ins from the Toolkit, checkout <a href="https://wiki.gephi.org/index.php/How_to_use_Gephi_plug-ins_with_the_Gephi_Toolkit">How to use plug-ins with the Toolkit</a>.</p>
<p>One of the exciting new feature released in the 0.8 beta is the new Preview. Because it has been completely rewritten with a much simpler and powerful API it&#8217;s now possible to reuse the Processing-based applet in other applications. You can now reproduce the zoom-and-pan experience in Gephi&#8217;s Preview tab in other Java applications easily. Checkout this <a href="https://wiki.gephi.org/index.php/Toolkit_-_Reuse_the_Preview_Applet">demo</a> to learn more.</p>
<p><img class="alignnone size-full wp-image-4587" title="Reuse Preview in Java applications" src="/wp-content/uploads/2011/10/Screen-shot-2011-10-16-at-7.45.39-PM.png" alt="" width="472" height="427" /></p>
<p>Links you may be interested:</p>
<ul>
<li><a href="http://www.slideshare.net/gephi/gephi-toolkit-tutorialtoolkit">Gephi Toolkit Tutorial</a> (updated with new Ranking and Preview)</li>
<li><a href="https://forum.gephi.org/viewtopic.php?t=476">Tips to use the Gephi Toolkit with other JVM languages</a></li>
</ul>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2011/new-gephi-toolkit-release-based-on-0-8-beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gephi 0.8 beta released</title>
		<link>https://gephi.org/2011/gephi-0-8-beta-released/</link>
		<comments>https://gephi.org/2011/gephi-0-8-beta-released/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 17:08:16 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[0.8]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://gephi.org/?p=4386</guid>
		<description><![CDATA[The latest beta version of Gephi has been released, download it for Windows, Mac OS and Linux platforms. This release focus on new features for both users and developers, and the new license unlocks opportunities for business. The Ranking and Preview modules have been completely rewritten in a modular way and can be now extended [...]]]></description>
			<content:encoded><![CDATA[<p>The latest beta version of Gephi has been released, <a title="Download" href="/users/download/"><strong>download</strong></a> it for Windows, Mac OS and Linux platforms. This release focus on new features for both users and developers, and the new license unlocks opportunities for business. The Ranking and Preview modules have been completely rewritten in a modular way and can be now extended with plug-ins! Preview can now be extended in many ways, for instance group shapes or edge bundling. Moreover, continuous progress have been made on the dynamic network support and we release today the last big part: statistics over time, available from the Statistics module when the network is dynamic. Thanks to users who reported bugs, it&#8217;s the only way to fix them.</p>
<p>The team will now start developing the 0.9 version of Gephi (please consider joining us!) and integrate the latest <a href="/users/gsoc">Google Summer of Code</a> projects, including a new <a href="/2011/gsoc-mid-term-a-new-timeline/">timeline</a>. We are also willing to help as much as possible <a href="/plugins/">plug-ins</a> developers to get things done and improve documentation. We want to leverage the new Preview and will help newcomers to get started.</p>
<p>Because it&#8217;s a major release, changes <strong>are not deployed through the AutoUpdate</strong>, you need to download and install the new version. Plug-ins also need to be checked for compatibility. They will reappear on the Plugin Center in the coming days, as they are verified. Thanks for your patience.</p>
<p><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />Consult the <a href="https://wiki.gephi.org/index.php/Gephi_Releases#Gephi_0.8beta_.28Oct_03_2011.29">release notes</a> and the new <a href="/docs/api">Javadoc</a> for more information.</p>
<h3>Features highlight</h3>
<table style="background: #eeeeee; margin-top: 15px;" border="0" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td><img class="alignnone size-thumbnail wp-image-4387" style="border: 1px solid grey;" title="Ranking Auto Apply" src="/wp-content/uploads/2011/10/ranking_auto_apply-100x100.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>Dynamic Ranking</strong></p>
<p>Ranking now works with <strong>dynamic networks</strong> and it&#8217;s easy! When manipulating a dynamic network with the Timeline simply enable the &#8216;Auto Apply&#8217; and the color/size is updated in <strong>real-time</strong>. To import a dynamic node size simply import a regular dynamic column in your GEXF and select it in Ranking like before.</td>
</tr>
<tr>
<td><img class="alignnone size-thumbnail wp-image-4388" style="border: 1px solid grey;" title="PNG Export" src="/wp-content/uploads/2011/10/preview_opacity-100x100.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>PNG Export</strong></p>
<p>A new powerful <strong>PNG export</strong> has been added to the existing PDF and SVG export. One can create high-resolution network images with all the customization available in Preview. You can even create <strong>transparent</strong> background images!</td>
</tr>
<tr>
<td><img class="alignnone size-thumbnail wp-image-4389" style="border: 1px solid grey;" title="New Preview" src="/wp-content/uploads/2011/10/text_outline-100x100.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>New Preview</strong></p>
<p>Major effort to completely rewrite the Preview module in a modular way. One can now create plug-ins for Preview! The new Preview includes new <strong>opacity</strong> options, a <strong>text outline</strong>, <strong>radius</strong> (customize edge start/end points) and a simplified list of properties.</td>
</tr>
<tr>
<td><img class="alignnone size-thumbnail wp-image-4390" style="border: 1px solid grey;" title="Dynamic Metrics" src="/wp-content/uploads/2011/10/dynamic_metrics-e1317622476247-100x100.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>Dynamic Metrics</strong></p>
<p>New dynamic metrics in the Statistics module: <strong>Dynamic Degree</strong>, <strong>Dynamic Node Count</strong>, <strong>Dynamic Edge Count</strong> and <strong>Dynamic Clustering Coefficient</strong>. Dynamic metrics are executed on a dynamic network and allow to analyze how network properties evolve over time.</td>
</tr>
</tbody>
</table>
<h3>New And Noteworthy</h3>
<p>* Data Lab node merging<br />
* ForceAtlas2 layout algorithm, with multi-thread option<br />
* Node and Edge transparency in Preview<br />
* Edge labels on curved edges in Preview<br />
* Text outline now in Preview<br />
* Database importer now supports time columns (start &amp; end)<br />
* DL Export (Thanks to Taras Klaskovsky)<br />
* GML Export (Thanks to Taras Klaskovsky)<br />
* NET Export (Thanks to Daniel Bernardes)<br />
* K-core filter<br />
* Inter and Intra partition filter<br />
* Now supports <a href="http://www.sqlite.org/">SQLite</a> databases<br />
* Display the number of layout iterations in status bar when ended<br />
* Recent Palette in Ranking<br />
* Weighted degree now also for directed graphs</p>
<h3>New localization (Go to Tools &gt; Languages)</h3>
<p>* Portuguese (Brazilian) (Thanks to Célio Faria Jr)<br />
* Japanese (Thanks to Siro Kida and Koji Chono)</p>
<h3>Performance</h3>
<p>* Memory starvation manager, warns the user before running out of memory<br />
* Less memory usage with attributes</p>
<h3>Bug fixes</h3>
<p>* Timeline need more precision when dealing with dates <a href="https://bugs.launchpad.net/gephi/+bug/521937">(bug 521937)</a><br />
* Exception on range slider <a href="https://bugs.launchpad.net/gephi/+bug/541808">(bug 541808)</a><br />
* Inconsistent label data from Overview to Preview <a href="https://bugs.launchpad.net/gephi/+bug/660204">(bug 660204)</a><br />
* Statistics: sub-optimal modularity <a href="https://bugs.launchpad.net/gephi/+bug/727701">(bug 727701)</a><br />
* Timeline cann&#8217;t drag if the two sliders moved to the left <a href="https://bugs.launchpad.net/gephi/+bug/745476">(bug 745476)</a><br />
* Missing Polish characters when exporting to pdf <a href="https://bugs.launchpad.net/gephi/+bug/746740">(bug 746740)</a><br />
* Edge selection color is not correct on OSX <a href="https://bugs.launchpad.net/gephi/+bug/752300">(bug 752300)</a><br />
* Workspace name truncated, hard to read <a href="https://bugs.launchpad.net/gephi/+bug/758578">(bug 758578)</a><br />
* Average degree cannot be switched to directed / undirected <a href="https://bugs.launchpad.net/gephi/+bug/760454">(bug 760454)</a><br />
* Window-&gt;Favorites appears in 0.8 alpha <a href="https://bugs.launchpad.net/gephi/+bug/764494">(bug 764494)</a><br />
* Disable &#8216;directed&#8217; on metric settings if the graph is undirected <a href="https://bugs.launchpad.net/gephi/+bug/771318">(bug 771318)</a><br />
* Timeline does not work (exception) <a href="https://bugs.launchpad.net/gephi/+bug/774455">(bug 774455)</a><br />
* Layout properties can&#8217;t be saved in a language and loaded in another language <a href="https://bugs.launchpad.net/gephi/+bug/783637">(bug 783637)</a><br />
* Preview: edge label not shown <a href="https://bugs.launchpad.net/gephi/+bug/783868">(bug 783868)</a><br />
* Possible memory leak on Dynamic Range Filter <a href="https://bugs.launchpad.net/gephi/+bug/784606">(bug 784606)</a><br />
* Edge attributes not saved in .gephi project file <a href="https://bugs.launchpad.net/gephi/+bug/785268">(bug 785268)</a><br />
* Data Lab: Exception when selecting only one column for merging <a href="https://bugs.launchpad.net/gephi/+bug/785269">(bug 785269)</a><br />
* Data Lab Import Spreadsheet should not ignore parallel edges <a href="https://bugs.launchpad.net/gephi/+bug/785635">(bug 785635)</a><br />
* Data Laboratory: wrong edge type created (mutual instead of directed) <a href="https://bugs.launchpad.net/gephi/+bug/787401">(bug 787401)</a><br />
* Data Lab: impossible to edit time intervals in a date format <a href="https://bugs.launchpad.net/gephi/+bug/793163">(bug 793163)</a><br />
* Spelling of Proportionnal <a href="https://bugs.launchpad.net/gephi/+bug/794358">(bug 794358)</a><br />
* Graphics errors when JOGL installed as a JRE/JDK extension <a href="https://bugs.launchpad.net/gephi/+bug/799545">(bug 799545)</a><br />
* NPE if source/target is empty in GEXF import <a href="https://bugs.launchpad.net/gephi/+bug/799574">(bug 799574)</a><br />
* Toolkit can&#8217;t open .gephi files <a href="https://bugs.launchpad.net/gephi/+bug/802101">(bug 802101)</a><br />
* Resizing edge sizes changes edge weight values <a href="https://bugs.launchpad.net/gephi/+bug/803763">(bug 803763)</a><br />
* Preview does not use node label settings from overview tab <a href="https://bugs.launchpad.net/gephi/+bug/805763">(bug 805763)</a><br />
* Data Lab &#8216;Import Spreadsheet&#8217; dialogue should accept other file types than .csv <a href="https://bugs.launchpad.net/gephi/+bug/806798">(bug 806798)</a><br />
* Edge weights not imported from CSV matrix <a href="https://bugs.launchpad.net/gephi/+bug/808078">(bug 808078)</a><br />
* Preview tab: no option to switch off node borders? <a href="https://bugs.launchpad.net/gephi/+bug/808606">(bug 808606)</a><br />
* Gephi runs out of memory without warning the user <a href="https://bugs.launchpad.net/gephi/+bug/811373">(bug 811373)</a><br />
* Counter-intuitive filename in Data export dialog <a href="https://bugs.launchpad.net/gephi/+bug/814178">(bug 814178)</a><br />
* NullPointerException when creating newProjects too quickly <a href="https://bugs.launchpad.net/gephi/+bug/817170">(bug 817170)</a><br />
* Nodes and edges Id attribute dictionary is not properly created when loading a .gephi file <a href="https://bugs.launchpad.net/gephi/+bug/818181">(bug 818181)</a><br />
* Database driver doesn&#8217;t persist in Edge List Database import UI <a href="https://bugs.launchpad.net/gephi/+bug/822316">(bug 822316)</a><br />
* NodeEqualNumberFilter does not work <a href="https://bugs.launchpad.net/gephi/+bug/823038">(bug 823038)</a><br />
* Gephi does not build on JDK 7 <a href="https://bugs.launchpad.net/gephi/+bug/823543">(bug 823543)</a><br />
* SVG node, edge export should include relevant node IDs as classes <a href="https://bugs.launchpad.net/gephi/+bug/827706">(bug 827706)</a><br />
* Import Spreadsheet: need to trim column names <a href="https://bugs.launchpad.net/gephi/+bug/829956">(bug 829956)</a><br />
* Layout list not sorted by name <a href="https://bugs.launchpad.net/gephi/+bug/830149">(bug 830149)</a><br />
* In/Out degree metric is computed on the main graph instead of the visible graph <a href="https://bugs.launchpad.net/gephi/+bug/830752">(bug 830752)</a><br />
* Layout is not giving the algorithm&#8217;s number of iterations <a href="https://bugs.launchpad.net/gephi/+bug/831782">(bug 831782)</a><br />
* Banner height issues, need a fixed height <a href="https://bugs.launchpad.net/gephi/+bug/834400">(bug 834400)</a><br />
* NPE when running ClusteringCoefficient on a filtered graph <a href="https://bugs.launchpad.net/gephi/+bug/852799">(bug 852799)</a><br />
* Missing node properties from dot file <a href="https://bugs.launchpad.net/gephi/+bug/855410">(bug 855410)</a><br />
* &#8216;The value column doesn&#8217;t exist&#8217; error when opening a gephi file <a href="https://bugs.launchpad.net/gephi/+bug/857595">(bug 857595)</a><br />
* Import fails for NET (Pajek) file with position/color data <a href="https://bugs.launchpad.net/gephi/+bug/860825">(bug 860825)</a><br />
* GEXF export referes to v1.1 schema, should be v1.2 schema <a href="https://bugs.launchpad.net/gephi/+bug/864484">(bug 864484)</a></p>
<h3>New Plug-ins documentation</h3>
<p>Checkout the documentation for the newly created Preview module: <a href="https://wiki.gephi.org/index.php/HowTo_write_a_preview_renderer">HowTo write a Preview Renderer</a>. Learn also <a href="http://wiki.gephi.org/index.php/HowTo_extend_data_laboratory_features">how to extend the Data Laboratory features</a> in a new tutorial.</p>
<h3>New license</h3>
<p>Gephi is now released in the dual license <a href="http://www.opensource.org/licenses/CDDL-1.0">CDDL</a> + <a href="http://www.gnu.org/licenses/gpl.html">GNU GPLv3</a>. We abandon the GNU AGPL to offer new opportunities to reuse and integrate parts of Gephi in a full Open Source way. The dual license system means the possibility to choose to apply either the CDDL or the GNU GPLv3 when Gephi source code is integrated to a derivative work. When modified, original files of Gephi should always be published publicly so that the community benefit from the improvements. However, the CDDL license does not require to publish the whole work, so <strong>you can build commercial applications for free</strong> using Gephi source code!<br />
The CDDL is a license created by Sun and approved by the Open Source Initiative. It is business-friendly. Read the <a href="/about/legal/faq/">Legal FAQs</a> to learn more, and ask questions on the <a href="https://forum.gephi.org/viewforum.php?f=35">forum</a>.</p>
<h3>Contribute</h3>
<p>It&#8217;s fun to contribute to an open-source project! <a href="/users/contribute/">Contribute</a> whatever the time you can give: few minutes to  report a bug, some hours to fix one or to translate the user interface or more to create a plug-in. If you&#8217;re a student and looking for cool and challenging semester projects check out the <a href="https://wiki.gephi.org/index.php/Gephi_Student_Program">Gephi Student Program</a> or <a href="mailto:contact@gephi.org">contact us</a>.</p>
<p><strong>Do Gephi technologies matter for your research or business?</strong> You can support us by <a href="http://pledgie.com/campaigns/13977">donating</a> to the <a href="http://consortium.gephi.org/">Gephi Consortium</a>, or becoming a member to have an impact on our roadmap.</p>
<p>Feel free to <a href="mailto:contact@gephi.org">reach to us</a> if you are willing to organize events (meetups, workshops, hackathon, etc.), we will support them.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2011/gephi-0-8-beta-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Gephi Plugin Developers Workshop on October, 6</title>
		<link>https://gephi.org/2011/first-gephi-plugin-developers-workshop-on-october-6/</link>
		<comments>https://gephi.org/2011/first-gephi-plugin-developers-workshop-on-october-6/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 15:09:43 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[bay area]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[toolkit]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://gephi.org/?p=4277</guid>
		<description><![CDATA[[ October 6, 2011; 7:00 pm; ] 

This is an announcement for the first Gephi Plugins Developers Workshop October 6, 2011 in Mountain View, California. Come and learn how to write your first Gephi plugin and ask questions. The workshop is organized by Mathieu Bastian, Gephi Architect and will be gratefully hosted by IMVU.

Gephi is a modular software and can be extended [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-4278" title="gephi workshop" src="/wp-content/uploads/2011/09/gephi-workshop.jpg" alt="" width="125" height="125" /></p>
<p>This is an announcement for the first Gephi Plugins Developers Workshop <strong>October 6, 2011</strong> in <strong>Mountain View, California</strong>. Come and learn how to write your first Gephi plugin and ask questions. The workshop is organized by <strong>Mathieu Bastian</strong>, Gephi Architect and will be gratefully hosted by <a href="http://www.imvu.com">IMVU</a>.</p>
<p>Gephi is a modular software and can be extended with plug-ins. Plug-ins can add new features like layout, filters, metrics, data sources, etc. or modify existing features. Gephi is written in Java so anything that can be used in Java can be packaged as a Gephi plug-in! Visit the <a href="http://wiki.gephi.org/index.php/Plugins_portal">Plugins Portal</a> on the wiki and follow the tutorials to get started.</p>
<p>The workshop will start with a presentation of Gephi&#8217;s architecture and the different types of plugins that can be written with examples. Details about <a href="/docs/api/">Gephi&#8217;s APIs</a>, code examples and best practices will be presented in an interactive &#8220;live coding&#8221; way. The <a href="http://gephi.org/toolkit">Gephi Toolkit</a> will also be covered in details. The second part of the workshop will be dedicated to help individuals with their projects and answer questions.</p>
<p>Some of the best projects using or extending Gephi are developed in the Silicon Valley and we are looking forward helping the developer community. Please don&#8217;t hesitate to send us <a href="contact@gephi.org">your ideas</a> to maximize efficiency.</p>
<p class="reclame" style="text-align: left; font-weight: normal; font-size: 11px;"><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" /><a href="http://www.meetup.com/gephi-sf-bay-area/events/34844102/"><strong>RSVP here</strong></a></p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2011/first-gephi-plugin-developers-workshop-on-october-6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Gephi Toolkit release, based on 0.8alpha</title>
		<link>https://gephi.org/2011/new-gephi-toolkit-release-based-on-0-8alpha/</link>
		<comments>https://gephi.org/2011/new-gephi-toolkit-release-based-on-0-8alpha/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 17:53:38 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[0.8]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[toolkit]]></category>

		<guid isPermaLink="false">http://gephi.org/?p=3739</guid>
		<description><![CDATA[A new release of the Gephi Toolkit arrived, based on the 0.8alpha version. Download the latest package, including Javadoc and demos by clicking on the link below.

It includes all features and bugfixes the 0.8alpha version has, notably:

GEXF 1.2 support (partial)
Add Neighbour Filter
Improve support of meta-edges in Statistics and Filters
Edge weight option in PageRank, which can [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3209" title="Gephi Toolkit on Truthy" src="/wp-content/uploads/2010/10/toolkitarticleexample1-300x211.png" alt="" width="156" height="108" />A new release of the <a href="/toolkit">Gephi Toolkit</a> arrived, based on the <a href="gephi-0-8alpha-released/">0.8alpha</a> version. Download the latest package, including Javadoc and demos by clicking on the link below.</p>
<p><a href="http://launchpad.net/gephi/toolkit/toolkit-0.8.2234/+download/gephi-toolkit-0.8.2234-all.zip"><img class="alignnone size-full wp-image-2658" title="Download Gephi Toolkit" src="/wp-content/uploads/2010/06/download-toolkit.png" alt="" width="168" height="44" /></a></p>
<p>It includes <strong>all features</strong> and <strong>bugfixes</strong> the 0.8alpha version has, notably:</p>
<ul>
<li>GEXF 1.2 support (partial)</li>
<li>Add Neighbour Filter</li>
<li>Improve support of meta-edges in Statistics and Filters</li>
<li>Edge weight option in PageRank, which can now be used by the algorithm</li>
<li>VNA Import (Thanks to Vojtech Bardiovsky)</li>
<li>Label Adjust algorithm 3 times faster</li>
<li>Saving/Loading projects is faster and use less memory</li>
</ul>
<p>Demos available on the <a href="https://wiki.gephi.org/index.php/Toolkit_portal">Toolkit Portal</a> have been adapted when necessary and tested. If you are intrested in using plug-ins from the Toolkit, checkout <a href="https://wiki.gephi.org/index.php/How_to_use_Gephi_plug-ins_with_the_Gephi_Toolkit">How to use plug-ins with the Toolkit</a>.</p>
<p>Links you may be interested:</p>
<ul>
<li><a href="http://www.slideshare.net/gephi/gephi-toolkit-tutorialtoolkit">Gephi Toolkit Tutorial</a></li>
<li><a href="https://forum.gephi.org/viewtopic.php?t=476">Tips to use the Gephi Toolkit with other JVM languages</a></li>
<li><a href="/plugins/script-console/">Scripting plugin</a></li>
</ul>
<p style="text-align: center;"><img class="size-full wp-image-2594  aligncenter" title="separator" src="/wp-content/uploads/2010/06/separator.png" alt="" width="98" height="20" /></p>
<p>This summer, the student Luiz Ribeiro is working on <a href="https://wiki.gephi.org/index.php/Specification_-_GSoC_Scripting_Plug-in">GSoC Scripting Plugin</a>, a project to bring advanced scripting features in Gephi, using Python. This project will work with the Gephi Toolkit, and greatly facilitate its usage.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2011/new-gephi-toolkit-release-based-on-0-8alpha/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The GSoC rocket launched</title>
		<link>https://gephi.org/2011/the-gsoc-rocket-launched-2/</link>
		<comments>https://gephi.org/2011/the-gsoc-rocket-launched-2/#comments</comments>
		<pubDate>Mon, 02 May 2011 08:52:10 +0000</pubDate>
		<dc:creator>Sebastien Heymann</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[gsoc]]></category>

		<guid isPermaLink="false">http://gephi.org/?p=3648</guid>
		<description><![CDATA[The Google Summer of Code 2011 is officially launched! Results have been announced by Google. Congratulations to the students that are joining Gephi project:

Daniel Bernardes &#8211; Timeline player and movie creation
Ernesto Aneiros &#8211; Indexing Attributes API with Lucene
Keheliya Gallaba &#8211; Automated build &#38; Maven
Luiz Ribeiro  &#8211; Scripting plug-in
Urban Škudnik &#8211; Network visualization with WebGL
Vojtech [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-3506" title="Google Summer of Code 2011" src="http://gephi.org/wp-content/uploads/2011/03/GSoC2011.png" alt="" width="300" height="200" />The Google Summer of Code 2011 is officially launched! <a href="http://www.google-melange.com/gsoc/projects/list/google/gsoc2011">Results</a> have been announced by Google. Congratulations to the students that are joining Gephi project:</p>
<ul>
<li>Daniel Bernardes<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Timeline player and movie creation</span></li>
<li>Ernesto Aneiros<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Indexing Attributes API with Lucene</span></li>
<li>Keheliya Gallaba<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Automated build &amp; Maven</span></li>
<li>Luiz Ribeiro <span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Scripting plug-in</span></li>
<li>Urban Škudnik<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Network visualization with WebGL</span></li>
<li>Vojtech Bardiovsky <span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; New Visualization Engine </span></li>
<li>Yudi Xue<span style="color: #666666; font-style: italic; font-size: 11px;"> &#8211; Preview Refactoring </span></li>
</ul>
<p><span style="font-style: italic;">You put a lot of attention on doing the bests applications and demonstrate great motivation in addition to strong technical skills. We are very excited to work with you guys!</span></p>
<p>This year we are also honored to count on world-class researchers in the mentoring team: <a href="http://www.cond.org/">Eytan Adar</a> and <a href="http://www.informatik.uni-rostock.de/~ct/">Christian Tominski</a>! Eytan is an Assistant Professor of Information and Computer Science at the University of Michigan, and is well-known for the graph exploration software <a href="http://www.graphexploration.org/">GUESS</a>. Christian is a Lecturer and Researcher at the Institute for Computer Science at the University of Rostock. He has authored and co-authored several articles in the field of information visualization.</p>
<h4><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />The Summer <a href="http://www.google-melange.com/document/show/gsoc_program/google/gsoc2011/timeline">Timeline</a>:</h4>
<p>* <strong>Until May 23:</strong> Students get to know mentors, read documentation, get up to speed to begin working on their projects.<br />
* <strong>May 23:</strong> Students starts to code<br />
* <strong>July 15:</strong> Mid-term evaluation<br />
* <strong>August 22:</strong> Pencils down</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2011/the-gsoc-rocket-launched-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gephi 0.8alpha released</title>
		<link>https://gephi.org/2011/gephi-0-8alpha-released/</link>
		<comments>https://gephi.org/2011/gephi-0-8alpha-released/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 09:51:57 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[0.8]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[store]]></category>

		<guid isPermaLink="false">http://gephi.org/?p=3561</guid>
		<description><![CDATA[The latest version of Gephi has been released today, download it for Windows, Mac OS and Linux platforms. Focus has again been made on stability with more than 80 bug fixes, and performance improvements. Thanks to users who reported bugs, that always makes the difference.
The team will now focus on the Google Summer of Code. [...]]]></description>
			<content:encoded><![CDATA[<p>The latest version of Gephi has been released today, <a title="Download" href="/users/download/"><strong>download</strong></a> it for Windows, Mac OS and Linux platforms. Focus has again been made on stability with more than 80 bug fixes, and performance improvements. Thanks to users who reported bugs, that always makes the difference.</p>
<p>The team will now focus on the Google Summer of Code. Have a look at the exciting <a href="https://wiki.gephi.org/index.php/Google_Summer_Of_Code_2011">projects</a> developed this summer. We are also willing to help as much as possible <a href="/plugins/">plug-ins</a> developers to get things done and improve documentation.</p>
<p>Because it&#8217;s a major release, changes <strong>are not deployed through the AutoUpdate</strong>, you need to download and install the new version. Plug-ins also need to be checked for compatibility. They will reappear on the Plugin Center in the coming days, as they are verified.</p>
<p><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />Consult the <a href="https://wiki.gephi.org/index.php/Gephi_Releases#Gephi_0.8alpha_.28Apr_08_2011.29">release notes</a> and the new <a href="/docs/api">Javadoc</a> for more information.</p>
<h3>Features highlight</h3>
<table style="background: #eeeeee; margin-top: 15px;" border="0" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td><img class="alignnone size-thumbnail wp-image-3164" style="border: 1px solid grey;" title="Localization" src="/wp-content/uploads/2010/10/Flag-collection-thumb-100x100.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>Localization</strong></p>
<p>Localization is coming with this release, with <strong>French</strong> and <strong>Spanish</strong>! In Gephi, simply go to <strong>Tools -&gt; Languages</strong> to switch.</p>
<p>You speak German, Russian or Italian? All three? Localization need your help, show up on the <a href="https://forum.gephi.org/viewforum.php?f=20">Forum</a> to get started.</td>
</tr>
<tr>
<td><img class="size-thumbnail wp-image-3562 alignnone" style="border: 1px solid grey;" title="Email Spigot" src="/wp-content/uploads/2011/04/email_spigot-100x100.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>Email spigot</strong></p>
<p>Now import emails from files or servers and look at <strong>communication networks</strong>. Spigots in Gephi are more advanced way to import networks, look for &#8216;Import Spigots&#8217; in the File menu. Using wizards to configure settings, new spigots like <strong>Twitter</strong> or <strong>New York Times API</strong> are available as <a href="/plugins/social-network-data-import/">plug-ins</a>.</td>
</tr>
</tbody>
</table>
<h3>New And Noteworthy</h3>
<p>* GEXF 1.2 support (partial)<br />
* Add Neighbour Filter<br />
* Improve support of meta-edges in Statistics and Filters<br />
* Improve usability of Filters<br />
* Edge weight option in PageRank, which can now be used by the algorithm<br />
* Duplicate workspaces (Edit Menu)<br />
* Graph files now supports GZ compression<br />
* Better Filters support in .gephi files<br />
* VNA Import</p>
<h3>Performance</h3>
<p>* Label Adjust algorithm 3 times faster<br />
* Saving/Loading projects is faster and use less memory</p>
<h3>Bug fixes</h3>
<p>* Windows installer should not require admin privileges <a href="https://bugs.launchpad.net/gephi/+bug/663337">(bug 663337)</a><br />
* Cancelled Vector Export Disabled &#8220;File&#8221; Menu <a href="https://bugs.launchpad.net/gephi/+bug/728871">(bug 728871)</a><br />
* Misformated SQL-Server JDBC url <a href="https://bugs.launchpad.net/gephi/+bug/745414">(bug 745414)</a><br />
* Partition Filter Loses Categories As Subfilter <a href="https://bugs.launchpad.net/gephi/+bug/726107">(bug 726107)</a><br />
* Workspace name does not increment <a href="https://bugs.launchpad.net/gephi/+bug/711185">(bug 711185)</a><br />
* Ranking Color can&#8217;t be changed on OSX <a href="https://bugs.launchpad.net/gephi/+bug/737727">(bug 737727)</a><br />
* Filter panel not cleared after query removed <a href="https://bugs.launchpad.net/gephi/+bug/737992">(bug 737992)</a><br />
* Ego Filter &#8220;with self&#8221; option doesn&#8217;t work with depth &gt; 1 <a href="https://bugs.launchpad.net/gephi/+bug/671007">(bug 671007)</a><br />
* Maximum Degree Range Doesn&#8217;t Update on Subfilter <a href="https://bugs.launchpad.net/gephi/+bug/725688">(bug 725688)</a><br />
* Cannot save and reload dynamic network as project <a href="https://bugs.launchpad.net/gephi/+bug/709270">(bug 709270)</a><br />
* GDF exports attributes when option is disabled <a href="https://bugs.launchpad.net/gephi/+bug/735927">(bug 735927)</a><br />
* Rename &#8220;Edit&#8221; menu to &#8220;Workspaces&#8221;? <a href="https://bugs.launchpad.net/gephi/+bug/735475">(bug 735475)</a><br />
* Data laboratory context menu takes too much time to appear when a lot of nodes are selected <a href="https://bugs.launchpad.net/gephi/+bug/735721">(bug 735721)</a><br />
* export svg/pdf with no edges causes NPE <a href="https://bugs.launchpad.net/gephi/+bug/693789">(bug 693789)</a><br />
* Can&#8217;t import the same file twice in Welcome window <a href="https://bugs.launchpad.net/gephi/+bug/598157">(bug 598157)</a><br />
* Graph Window in Overview Tab Fails to Load <a href="https://bugs.launchpad.net/gephi/+bug/659773">(bug 659773)</a><br />
* Timeline appears first wrong when timeformat=&#8221;date&#8221; <a href="https://bugs.launchpad.net/gephi/+bug/709234">(bug 709234)</a><br />
* Filter query not saved when Filter button is active <a href="https://bugs.launchpad.net/gephi/+bug/671004">(bug 671004)</a><br />
* GEXF option  doesn&#8217;t work<a href="https://bugs.launchpad.net/gephi/+bug/709235">(bug 709235)</a><br />
* Ego Network Filter Searches for Substring, Does Not Match Value <a href="https://bugs.launchpad.net/gephi/+bug/726114">(bug 726114)</a><br />
* Label text settings not saved in .project <a href="https://bugs.launchpad.net/gephi/+bug/660205">(bug 660205)</a><br />
* saved preset for layouts creates several instances <a href="https://bugs.launchpad.net/gephi/+bug/612848">(bug 612848)</a><br />
* Partition colors in Filters are different from those in Partition <a href="https://bugs.launchpad.net/gephi/+bug/616037">(bug 616037)</a><br />
* import of pajek net has floating pt problem <a href="https://bugs.launchpad.net/gephi/+bug/619893">(bug 619893)</a><br />
* NullPointerException on saving project <a href="https://bugs.launchpad.net/gephi/+bug/622154">(bug 622154)</a><br />
* Name of currently opened file not updated after a &#8220;save as&#8221; <a href="https://bugs.launchpad.net/gephi/+bug/629374">(bug 629374)</a><br />
* Labels are not hidden on Preview <a href="https://bugs.launchpad.net/gephi/+bug/654006">(bug 654006)</a><br />
* Chaining Dynamic Filter <a href="https://bugs.launchpad.net/gephi/+bug/654018">(bug 654018)</a><br />
* NullPointerException on importing CSV data in Data Laboratory <a href="https://bugs.launchpad.net/gephi/+bug/654030">(bug 654030)</a><br />
* Statistics report not refreshed after a new execution <a href="https://bugs.launchpad.net/gephi/+bug/654036">(bug 654036)</a><br />
* Maximum lock count exceeded error when running Label Adjust <a href="https://bugs.launchpad.net/gephi/+bug/655544">(bug 655544)</a><br />
* GEXF export: missing attvalues element <a href="https://bugs.launchpad.net/gephi/+bug/655975">(bug 655975)</a><br />
* Can&#8217;t use ranking label transformers with toolkit <a href="https://bugs.launchpad.net/gephi/+bug/656172">(bug 656172)</a><br />
* GEXF export: attribute definitions exported even if Attributes option is unchecked <a href="https://bugs.launchpad.net/gephi/+bug/656276">(bug 656276)</a><br />
* Preview throws an Exception with negative edges <a href="https://bugs.launchpad.net/gephi/+bug/656955">(bug 656955)</a><br />
* Closeness centrality chart empty with normalized values <a href="https://bugs.launchpad.net/gephi/+bug/658361">(bug 658361)</a><br />
* Statistics fail to work on a hierarchy level different from the leaves <a href="https://bugs.launchpad.net/gephi/+bug/658394">(bug 658394)</a><br />
* Exported Data Table doesn&#8217;t use sorted columns <a href="https://bugs.launchpad.net/gephi/+bug/658816">(bug 658816)</a><br />
* Importing a TIME_INTERVAL column in Data Laboratory CSV import doesn&#8217;t enable dynamic features <a href="https://bugs.launchpad.net/gephi/+bug/659017">(bug 659017)</a><br />
* Error when using filter export features and filtering off <a href="https://bugs.launchpad.net/gephi/+bug/659229">(bug 659229)</a><br />
* Exception when using flatten filter <a href="https://bugs.launchpad.net/gephi/+bug/659270">(bug 659270)</a><br />
* GDF export generates invalid files <a href="https://bugs.launchpad.net/gephi/+bug/660200">(bug 660200)</a><br />
* Wrong color type exported in GraphML <a href="https://bugs.launchpad.net/gephi/+bug/660356">(bug 660356)</a><br />
* GEXF exporter doesn&#8217;t export the label if they are the same as the id <a href="https://bugs.launchpad.net/gephi/+bug/660382">(bug 660382)</a><br />
* Tool Selection tooltip under the graph window <a href="https://bugs.launchpad.net/gephi/+bug/660459">(bug 660459)</a><br />
* Column settings in Data Lab are not saved in .project <a href="https://bugs.launchpad.net/gephi/+bug/660469">(bug 660469)</a><br />
* Data Lab filter not executed when changing the column <a href="https://bugs.launchpad.net/gephi/+bug/660471">(bug 660471)</a><br />
* Data Lab: column used by node filter is automatically reset <a href="https://bugs.launchpad.net/gephi/+bug/660517">(bug 660517)</a><br />
* Personalized color of a specific partition is rolled back <a href="https://bugs.launchpad.net/gephi/+bug/660529">(bug 660529)</a><br />
* DOT importer ignores edge weight and .gv file extension <a href="https://bugs.launchpad.net/gephi/+bug/661257">(bug 661257)</a><br />
* Exceptions when importing mixed graph <a href="https://bugs.launchpad.net/gephi/+bug/662488">(bug 662488)</a><br />
* Error on selecting nodes from filter if graph window not shwn at startup <a href="https://bugs.launchpad.net/gephi/+bug/663561">(bug 663561)</a><br />
* Blank preview screen <a href="https://bugs.launchpad.net/gephi/+bug/664300">(bug 664300)</a><br />
* Edge text not visible on preview with other attributes <a href="https://bugs.launchpad.net/gephi/+bug/664444">(bug 664444)</a><br />
* Data does not appear on nodes table <a href="https://bugs.launchpad.net/gephi/+bug/667440">(bug 667440)</a><br />
* saving a project uses too much memory for large graphs <a href="https://bugs.launchpad.net/gephi/+bug/672071">(bug 672071)</a><br />
* Data Lab: search/replace only on a given column <a href="https://bugs.launchpad.net/gephi/+bug/676087">(bug 676087)</a><br />
* Workspace number incremented by opening a new project <a href="https://bugs.launchpad.net/gephi/+bug/681038">(bug 681038)</a><br />
* Filter &#8220;out degree range&#8221; does not work <a href="https://bugs.launchpad.net/gephi/+bug/681184">(bug 681184)</a><br />
* NullPointerException on exporting dynamic GEXF file with Toolkit <a href="https://bugs.launchpad.net/gephi/+bug/686432">(bug 686432)</a><br />
* Wrong relative betweenness <a href="https://bugs.launchpad.net/gephi/+bug/687267">(bug 687267)</a><br />
* graphml generated syntax is incorrect <a href="https://bugs.launchpad.net/gephi/+bug/688678">(bug 688678)</a><br />
* Import Report freezes when the number of issues or logs is too high <a href="https://bugs.launchpad.net/gephi/+bug/688865">(bug 688865)</a><br />
* Filters fail to work on a hierarchy level different from the leaves <a href="https://bugs.launchpad.net/gephi/+bug/691278">(bug 691278)</a><br />
* Wrong edge count in Context Panel with hierarchies <a href="https://bugs.launchpad.net/gephi/+bug/692225">(bug 692225)</a><br />
* RepaintCell exception on Mac OS X <a href="https://bugs.launchpad.net/gephi/+bug/692379">(bug 692379)</a><br />
* Exceptions when group/ungroup from Partition after delete <a href="https://bugs.launchpad.net/gephi/+bug/692382">(bug 692382)</a><br />
* GML importer don&#8217;t process &#8216;weight&#8217; column as weight <a href="https://bugs.launchpad.net/gephi/+bug/703877">(bug 703877)</a><br />
* Degree doesn&#8217;t take edge weight into account <a href="https://bugs.launchpad.net/gephi/+bug/703933">(bug 703933)</a><br />
* Edge attribute values not imported from graphml file <a href="https://bugs.launchpad.net/gephi/+bug/707390">(bug 707390)</a><br />
* PageRank not for weighted networks <a href="https://bugs.launchpad.net/gephi/+bug/715621">(bug 715621)</a><br />
* Data Lab: boolean column edition facility <a href="https://bugs.launchpad.net/gephi/+bug/717869">(bug 717869)</a><br />
* Exception on Delete Column if sorted by this column <a href="https://bugs.launchpad.net/gephi/+bug/719987">(bug 719987)</a><br />
* Data Lab: edge rows not displayed when the hierarchy level /= 0 in Overview <a href="https://bugs.launchpad.net/gephi/+bug/720033">(bug 720033)</a><br />
* Java Null Pointer when using Merge Columns <a href="https://bugs.launchpad.net/gephi/+bug/722287">(bug 722287)</a><br />
* Open Recent files doesn&#8217;t work with project files <a href="https://bugs.launchpad.net/gephi/+bug/734105">(bug 734105)</a><br />
* Timeline disappears after saving project.gephi file <a href="https://bugs.launchpad.net/gephi/+bug/695558">(bug 695558)</a><br />
* Exception on Visualization Settings if opened before Overview <a href="https://bugs.launchpad.net/gephi/+bug/734117">(bug 734117)</a><br />
* Database import is not cancelable <a href="https://bugs.launchpad.net/gephi/+bug/734126">(bug 734126)</a><br />
* &#8216;A task is still executing&#8217; error after cancelling a custom importer, not LongTask <a href="https://bugs.launchpad.net/gephi/+bug/734132">(bug 734132)</a><br />
* Edge weight slider not refreshed between workspaces <a href="https://bugs.launchpad.net/gephi/+bug/731599">(bug 731599)</a><br />
* Exception on New workspace after deleting last workspace <a href="https://bugs.launchpad.net/gephi/+bug/735273">(bug 735273)</a><br />
* Colors not imported in Pajek Net format <a href="https://bugs.launchpad.net/gephi/+bug/530028">(bug 530028)</a></p>
<h3>To 0.8 beta and beyond</h3>
<p>Following the <a href="https://wiki.gephi.org/index.php/Manifesto">Gephi Manifesto</a>, we continue our way to the release 1.0 with goals sets in the <a href="http://wiki.gephi.org/index.php/Roadmap">Roadmap</a>. You can speed up our progresses in <a href="/users/contribute/">many ways</a> whatever the time you can give: few minutes to  report a bug, some hours to fix one or to translate the user interface, some weeks to create a plug-in&#8230;you will be always greatly welcomed!</p>
<p><strong>Do Gephi technologies matter for your research or business?</strong> You can support us by <a href="http://pledgie.com/campaigns/13977">donating</a> to the <a href="https://consortium.gephi.org/">Gephi Consortium</a>, or becoming a member to have an impact on our roadmap.</p>
<p><strong>Proud to be part of the Gephi Community?</strong> On our fresh <a href="http://www.comboutique.com/shop/homeboutique-44270-0-0-0-0-0.html?lang=EN">new store</a> you can buy mugs, T-shirts and more to show it!</p>
<p><a href="http://www.comboutique.com/shop/t_shirt_impression-dark_t-shirt___men-44270-2476389.html"><img src="http://www.comboutique.com/shop/resizejpeg2.php?width=100&amp;image=products/thumb/USR57944/2476389.jpg" alt="man" /></a> <a href="http://www.comboutique.com/shop/t_shirt_impression-tank_top__women-44270-2476390.html"><img src="http://www.comboutique.com/shop/resizejpeg2.php?width=100&amp;image=products/thumb/USR57944/2476390.jpg" alt="woman" /></a> <a href="http://www.comboutique.com/shop/t_shirt_impression-official_mug_gephi-44270-2476372.html"><img src="http://www.comboutique.com/shop/resizejpeg2.php?width=100&amp;image=products/thumb/USR57944/2476372.jpg" alt="mug" /></a></p>
<p><img src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" /> <a href="http://www.comboutique.com/shop/homeboutique-44270-0-0-0-0-0.html?lang=EN">Go to the Gephi store</a></p>
<p>The stores sells in Europe (EUR). To get a tee-shirt in the US, check our <a href="http://www.redbubble.com/people/mbastian/t-shirts/6943179-gephi-org-official-tee-shirt">official Gephi tee-shirt</a>.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2011/gephi-0-8alpha-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gephi Toolkit released, based on 0.7beta</title>
		<link>https://gephi.org/2010/gephi-toolkit-released-based-on-0-7beta/</link>
		<comments>https://gephi.org/2010/gephi-toolkit-released-based-on-0-7beta/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 12:58:42 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[0.7]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[toolkit]]></category>

		<guid isPermaLink="false">http://gephi.org/?p=3208</guid>
		<description><![CDATA[The 0.7beta version of Gephi has been released last week. It is today the Gephi Toolkit release, based on the latest codebase. Download the latest package, including Javadoc and demos by clicking on the link below.

It includes all features and bugfixes the 0.7beta version has. Therefore it is possible to use dynamic networks and new [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-3209" title="Gephi Toolkit on Truthy" src="/wp-content/uploads/2010/10/toolkitarticleexample1-300x211.png" alt="" width="156" height="108" />The <a href="gephi-0-7beta-released/">0.7beta</a> version of Gephi has been released last week. It is today the <a href="/toolkit">Gephi Toolkit</a> release, based on the latest codebase. Download the latest package, including Javadoc and demos by clicking on the link below.</p>
<p><a href="http://launchpad.net/gephi/toolkit/toolkit-0.7.1970/+download/gephi-toolkit-0.7.1970-all.zip"><img class="alignnone size-full wp-image-2658" title="Download Gephi Toolkit" src="/wp-content/uploads/2010/06/download-toolkit.png" alt="" width="168" height="44" /></a></p>
<p>It includes <strong>all features</strong> and <strong>bugfixes</strong> the 0.7beta version has. Therefore it is possible to use<strong> dynamic networks</strong> and new <strong>Data Laboratory</strong> features from the Gephi Toolkit.</p>
<p>Two new demos are available from the <a href="https://wiki.gephi.org/index.php/Toolkit_portal">Toolkit Portal</a>:</p>
<ul>
<li><strong><a href="https://wiki.gephi.org/index.php/Toolkit_-_Import_Dynamic_Network_from_multiple_static_files">Import Dynamic</a></strong> &#8211; How to import several static files and transform them into longitudinal network</li>
<li><strong><a href="https://wiki.gephi.org/index.php/Toolkit_-_Metrics_over_time">Dynamic Metric</a></strong> &#8211; How to execute a metric (ex: Average Degree) for each slice of a dynamic network</li>
</ul>
<p>Links you may be interested:</p>
<ul>
<li><a href="http://www.slideshare.net/gephi/gephi-toolkit-tutorialtoolkit">Gephi Toolkit Tutorial</a></li>
<li><a href="https://forum.gephi.org/viewtopic.php?t=476">Tips to use the Gephi Toolkit with other JVM languages</a></li>
</ul>
<p style="text-align: center;"><img class="size-full wp-image-2594  aligncenter" title="separator" src="/wp-content/uploads/2010/06/separator.png" alt="" width="98" height="20" /></p>
<p>Since it&#8217;s launch in July, the Gephi Toolkit has been used in various use cases for graph visualization. Recently, the Indiana University launched <a href="http://truthy.indiana.edu/">Truthy</a>, a system to analyze and visualize the diffusion of information on Twitter. Truthy uses the Gephi Toolkit for layout.</p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2010/gephi-toolkit-released-based-on-0-7beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gephi 0.7beta released</title>
		<link>https://gephi.org/2010/gephi-0-7beta-released/</link>
		<comments>https://gephi.org/2010/gephi-0-7beta-released/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 16:03:18 +0000</pubDate>
		<dc:creator>Mathieu Bastian</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[0.7]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://gephi.org/?p=3148</guid>
		<description><![CDATA[Major milestone for Gephi today. The 0.7 beta version is ready for download for Windows, Mac OS and Linux platforms. It brings many awaited features and more than 80 bug fixes!. Stability and productivity improvements are the main objectives of this release. A complete support for longitudinal network is part of this release, it is [...]]]></description>
			<content:encoded><![CDATA[<p>Major milestone for Gephi today. The 0.7 beta version is ready for <a title="Download" href="/users/download/">download</a> for Windows, Mac OS and Linux platforms. It brings many awaited features and more than 80 bug fixes!. <strong>Stability</strong> and <strong>productivity</strong> improvements are the main objectives of this release. A complete support for longitudinal network is part of this release, it is now more easy and flexible to import and explore dynamic networks. Consult this new <a href="https://wiki.gephi.org/index.php/Import_Dynamic_Data">tutorial</a> to see how input longitudinal networks in Gephi. We support three different methods, to cover all use cases.</p>
<p>Because it&#8217;s a major release, changes <strong>are not deployed through the AutoUpdate</strong>, you need to download and install the new version if you had the alpha. Plug-ins also need to be checked for compatibility. They will reappear on the Plugin Center in the coming days, as they are verified.</p>
<p><img class="alignnone size-full wp-image-2203" title="arrow" src="/wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />Consult the <a href="https://wiki.gephi.org/index.php/Gephi_Releases#Gephi_0.7beta_.28Oct_01_2010.29">release notes</a> and the new <a href="/docs/api">Javadoc</a> for more informations.</p>
<p><img title="arrow" src="../wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />An announcement for modules developed this summer by the <a href="/users/gsoc/">Google Summer of Code</a> students, in particular <a href="gsoc-2010-mid-term-adding-support-for-neo4j-in-gephi/">Neo4j</a> and <a href="gsoc-2010-mid-term-direct-social-networks-import/">Social Network import</a>. They may be fully integrated in Gephi for its 0.8 version, in the meantime they will be released as plug-ins through our <a href="/plugins/">Plugin Center</a>. Stay tuned, it will be fast.</p>
<p><img title="arrow" src="../wp-content/uploads/2010/03/orange_arrow.gif" alt="" width="12" height="12" />A new version of the <a href="/toolkit">Gephi Toolkit</a> will be released in a few days, based on the beta codebase.</p>
<h3>Features highlight</h3>
<table style="background: #eeeeee; margin-top: 15px;" border="0" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/08/manipulators3.png"><img class="size-thumbnail wp-image-3000 alignnone" style="border: 1px solid grey;" title="New Data Laboratory" src="http://gephi.org/wp-content/uploads/2010/08/manipulators3-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>New Data Laboratory</strong></p>
<p>The Data Laboratory receives tons of new features, developed this summer by <a href="/about/people/">Eduardo Ramos</a>. It now proposes to manipulate and edit data in a broader and more productive way. A detailed list of features is available on the <a href="introducing-data-laboratory">Introducing Data Laboratory</a> post. The laboratory is also now auto-refreshing when filters are manipulated. Another essential point is that the laboratory is easily extensible with plug-ins.</td>
</tr>
</tbody>
</table>
<table style="background: #eeeeee; margin-top: 5px;" border="0" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/timelineEnable.png"><img class="alignnone size-thumbnail wp-image-3149" style="border: 1px solid grey;" title="Longitudinal Network" src="http://gephi.org/wp-content/uploads/2010/10/timelineEnable-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Longitudinal networks</strong></p>
<p>They are now fully supported in Gephi. Explore how the network topology change over time by using the Timeline component, which now appears <strong>automatically</strong>. The major improvement is the <a href="gsoc-2010-mid-term-dynamic-attributes-and-statistics/"><strong>dynamic attributes</strong></a> support. The edge weight or any attribute value can evolve over time as well, and the visualization shows the value in the right range. Enable the timeline with a single button. See <a href="http://wiki.gephi.org/index.php/Import_Dynamic_Data">tutorial</a>.</td>
</tr>
</tbody>
</table>
<table style="margin-top: 15px;" border="0" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/datalabEdit.png"><img class="alignnone size-thumbnail wp-image-3160" style="border: 1px solid grey;" title="Edit in Data Laboratory" src="http://gephi.org/wp-content/uploads/2010/10/datalabEdit-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Edit</strong></p>
<p>Simple edit by selecting one or several nodes or edges in the Data Laboratory. Keep Control key on the table to select several rows and change values of several elements in one action. Edit also manually visualization variables like color, size or position. The <strong>Edit</strong> window is available by right-clicking on rows. Many other features are now available through the context menu, and more can be added with plug-ins.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/08/search-replace.png"><img class="alignnone size-thumbnail wp-image-2975" style="border: 1px solid grey;" title="Search/Replace in Gephi" src="http://gephi.org/wp-content/uploads/2010/08/search-replace-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Search/Replace</strong></p>
<p>General Data Laboratory actions like <strong>Add node/edge</strong>, <strong>Search/Replace</strong> or <strong>Import CSV</strong>. The Search/Replace feature shows an advanced UI to search and replace values in the table cells. It can do a normal search or a regular expression based search, among other useful options. It is implemented in a separate controller that is part of the Data Laboratory API.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/08/merge-strategies.png"><img class="size-thumbnail wp-image-2974 alignnone" style="border: 1px solid grey;" title="Merge columns" src="http://gephi.org/wp-content/uploads/2010/08/merge-strategies-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Columns merge</strong></p>
<p>Manipulate columns and do basic calculations. On numerical columns one can get <strong>sum, average, median, &#8230;</strong> from several other columns. New columns can be created from a regular expression based on a existing column. Among other merge strategies, a <strong>Time Interval</strong> column <a href="http://wiki.gephi.org/index.php/Import_Dynamic_Data#Tranform_existing_column_in_Time_Interval">can be get from a simple numerical column</a>. Get a longitudinal network from a simple &#8216;year&#8217; column in your data.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/filtersExportLabels.png"><img class="alignnone size-thumbnail wp-image-3150" style="border: 1px solid grey;" title="Hide labels from filters result" src="http://gephi.org/wp-content/uploads/2010/10/filtersExportLabels-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Label visibility</strong></p>
<p>Decide whether a label should be visible or not from the filter result. Nodes and edges not in the filtered graph will have their labels hidden. Can be reset by the &#8216;Reset Visible&#8217; action (left of graph window).</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/copyToNewWorkspace.png"><img class="alignnone size-thumbnail wp-image-3151" style="border: 1px solid grey;" title="Copy selection to new/existing workspace" src="http://gephi.org/wp-content/uploads/2010/10/copyToNewWorkspace-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Copy and Move to a workspace</strong></p>
<p>New option when right-clicking on the graph. You can copy or move the selection to a new or existing workspace.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/createMissingNodes.png"><img class="alignnone size-thumbnail wp-image-3152" style="border: 1px solid grey;" title="New import option" src="http://gephi.org/wp-content/uploads/2010/10/createMissingNodes-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Import &#8216;Missing Nodes&#8217; option</strong></p>
<p>New option in the import panel to import nodes which were not properly defined in the file. Use this option to create nodes only from their reference in edges.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/importTimeFrame1.png"><img class="alignnone size-thumbnail wp-image-3153" style="border: 1px solid grey;" title="Import Time Frame" src="http://gephi.org/wp-content/uploads/2010/10/importTimeFrame1-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Import Time Frame</strong></p>
<p>Their are different way to import longitudinal network in Gephi. One of them is to import multiple &#8217;static&#8217; files, where each is a particular snaphsot in time (one file per day or per month). There is a new option for that in the import report. See this <a href="http://wiki.gephi.org/index.php/Import_Dynamic_Data#Use_Time_Frame_Import_with_several_static_files">tutorial section</a> to use it.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/importTimeFrame2.png"><img class="alignnone size-thumbnail wp-image-3154" style="border: 1px solid grey;" title="Import Time Frame settings" src="http://gephi.org/wp-content/uploads/2010/10/importTimeFrame2-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Time Frame settings</strong></p>
<p>Decides whether the time format is a date or a real number. The processor will look for existing elements in the workspace and append the time frame to nodes and edges. The network becomes longitudinal, each node, edge and attribute is defined with time intervals.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/previewPresets.png"><img class="alignnone size-thumbnail wp-image-3155" style="border: 1px solid grey;" title="New Preview Presets" src="http://gephi.org/wp-content/uploads/2010/10/previewPresets-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Preview Presets</strong></p>
<p>The Preview settings has now default presets: <strong>Default Curved</strong>, <strong>Highlight Mutual Edges</strong>, <strong>Small Labels</strong> and more.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/rescaleWeight.png"><img class="alignnone size-thumbnail wp-image-3156" style="border: 1px solid grey;" title="Rescale weight in Preview" src="http://gephi.org/wp-content/uploads/2010/10/rescaleWeight-100x99.png" alt="" width="100" height="99" /></a></td>
<td valign="top"><strong>Rescale weight in Preview</strong></p>
<p>New option in preview to have edge weight look the same as Overview. Meta-edges have also now a separate scale slider in Visualization settings. This scale value is used in Preview to respect dimensions.</td>
</tr>
<tr>
<td><a href="http://gephi.org/wp-content/uploads/2010/10/previewEdgeOriginalColor.png"><img class="alignnone size-thumbnail wp-image-3157" style="border: 1px solid grey;" title="Original edge color option in Preview" src="http://gephi.org/wp-content/uploads/2010/10/previewEdgeOriginalColor-100x100.png" alt="" width="100" height="100" /></a></td>
<td valign="top"><strong>Original color option</strong></p>
<p>When edges color are imported from a file or set by Partition, they have a custom color. This color mode can now be rendered by Preview by setting &#8216;Original&#8217; in the color dialog.</td>
</tr>
<tr>
<td><img class="alignnone size-thumbnail wp-image-3164" style="border: 1px solid grey;" title="Localization" src="http://gephi.org/wp-content/uploads/2010/10/Flag-collection-thumb-100x100.png" alt="" width="100" height="100" /></td>
<td valign="top"><strong>Localization</strong></p>
<p>Localization is now possible in Gephi, <strong>French</strong> and <strong>Spanish</strong> versions will be available soon. Please consider helping us, show up on the <a href="http://forum.gephi.org/viewforum.php?f=20">Translations</a> forum section.</td>
</tr>
</tbody>
</table>
<h3>New And Noteworthy</h3>
<p>* <strong>NOT Operator</strong> (Filters)<br />
* <strong>MASK Operator</strong> (Filters) &#8211; keep edges according to source/target/both/any &#8211; can easily obtain neighbors of a set of nodes<br />
* Display edge weight as labels on visualization<br />
* New <strong>StAX</strong> GEXF importer and exporter, with hierarchy and dynamic support<br />
* New List/Arrays attribute types. Can only be imported from GEXF for now.<br />
* Flatten Filter &#8211; Flatten a hierarchical graph to the visible view, transform meta-edges into normal edges<br />
* New <strong>Giant Component Filter</strong><br />
* Set size for the &#8216;Reset Size&#8217; action, by right-clicking on the reset size button<br />
* Get degree column from Undirected graphs<br />
* Statistics reports now <strong>saved</strong> in Gephi projects<br />
* When parallel edges are found during import, it now increases the weight of the edge by default<br />
* Option in Ego Filter to include the parent node or not<br />
* Meta-edges have now a separate scale slider in Visualization settings, change how thick they are compared to normal edges<br />
* Ranking and Partition list of attributes are now sorted<br />
* Ranking now <strong>updates itself</strong> with filtered graphs. Clicking on Apply will refresh bounds and the transformation (color, size)<br />
* It&#8217;s now possible to drag a filter sub query to become a main query<br />
* With <strong>dynamic attributes</strong>, Ranking, Partition, Visualization and Filters will use the current Timeline range to find values<br />
* Edge weight can be dynamic, type DYNAMIC_FLOAT. Force Atlas layout will use the current Timeline range<br />
* Filters are refreshed when the graph is modified, the current filter is reexecuted</p>
<h3>Bug fixes</h3>
<p>* Nodes not unselected after turning off Selection on Filter Panel <a href="https://bugs.launchpad.net/gephi/+bug/649920">bug 649920</a><br />
* PDF Export only with default font <a href="https://bugs.launchpad.net/gephi/+bug/651273">bug 651273</a><br />
* Ego Filter doesn&#8217;t include the node itself <a href="https://bugs.launchpad.net/gephi/+bug/649908">bug 649908</a><br />
* Exception on opening project file <a href="https://bugs.launchpad.net/gephi/+bug/648617">bug 648617</a><br />
* Partition filter automatically filters null value <a href="https://bugs.launchpad.net/gephi/+bug/648602">bug 648600</a><br />
* Edges weight not merged with parallel edges <a href="https://bugs.launchpad.net/gephi/+bug/648600">bug 648600</a><br />
* Negative edges not rendered in Preview <a href="https://bugs.launchpad.net/gephi/+bug/628223">bug 628223</a><br />
* Edge weight scale is different between Graph and Preview <a href="https://bugs.launchpad.net/gephi/+bug/569329">bug 569329</a><br />
* Edges native color are not displayed in Preview <a href="https://bugs.launchpad.net/gephi/+bug/586237">bug 586237</a><br />
* Text not displayed in Preview <a href="https://bugs.launchpad.net/gephi/+bug/627567">bug 627567</a><br />
* Errors at PDF export when labels have font size zero <a href="https://bugs.launchpad.net/gephi/+bug/626865">bug 626865</a><br />
* Filtering not refreshed when sub-queries set or removed <a href="https://bugs.launchpad.net/gephi/+bug/594511">bug 594511</a><br />
* Wrong stroke weight when SVG imported in Illustrator <a href="https://bugs.launchpad.net/gephi/+bug/626378">bug 626378</a><br />
* Generating a graph on a previously loaded undirected graph <a href="https://bugs.launchpad.net/gephi/+bug/624671">bug 624671</a><br />
* Wrong folder selected in the Export Panel when changing file type <a href="https://bugs.launchpad.net/gephi/+bug/620337">bug 620337</a><br />
* Node Degree not in Label Text settings <a href="https://bugs.launchpad.net/gephi/+bug/598170">bug 598170</a><br />
* Ranking and Partition parameters list not ordered <a href="https://bugs.launchpad.net/gephi/+bug/594520">bug 594520</a><br />
* Read positions from dot files <a href="https://bugs.launchpad.net/gephi/+bug/594793">bug 594793</a><br />
* Wrong node size when Ranking has same min and max size <a href="https://bugs.launchpad.net/gephi/+bug/631689">bug 631689</a><br />
* SVG files not listed in Export dialog <a href="https://bugs.launchpad.net/gephi/+bug/626394">bug 626394</a><br />
* Export to pdf background is always white <a href="https://bugs.launchpad.net/gephi/+bug/583386">bug 583386</a><br />
* Selected filter query not properly refreshed in UI <a href="https://bugs.launchpad.net/gephi/+bug/626483">bug 626483</a><br />
* Wrong node positions when setting X or Y to zero <a href="https://bugs.launchpad.net/gephi/+bug/615844">bug 615844</a><br />
* z-coordinate not exported in GraphML <a href="https://bugs.launchpad.net/gephi/+bug/614606">bug 614606</a><br />
* Partitions don&#8217;t refresh when opening project not from Overview <a href="https://bugs.launchpad.net/gephi/+bug/612902">bug 612902</a><br />
* duplicate label in filter window <a href="https://bugs.launchpad.net/gephi/+bug/604003">bug 604003</a><br />
* Visualization size limitation <a href="https://bugs.launchpad.net/gephi/+bug/602470">bug 602470</a><br />
* Can&#8217;t close project when generating a graph <a href="https://bugs.launchpad.net/gephi/+bug/631341">bug 631341</a><br />
* csv file export problem <a href="https://bugs.launchpad.net/gephi/+bug/598767">bug 598767</a><br />
* Can&#8217;t import the same file twice in Welcome window <a href="https://bugs.launchpad.net/gephi/+bug/598157">bug 598157</a><br />
* &#8220;CommandLineParsing null&#8221; message when error on opening file from command line or desktop <a href="https://bugs.launchpad.net/gephi/+bug/594630">bug 594630</a><br />
* Default selection of Nodes in Data Laboratory necessary <a href="https://bugs.launchpad.net/gephi/+bug/594515">bug 594515</a><br />
* Preview ratio not available at first time <a href="https://bugs.launchpad.net/gephi/+bug/594176">bug 594176</a><br />
* Impossible to cancel the Average Path Length Statistic calculation <a href="https://bugs.launchpad.net/gephi/+bug/590226">bug 590226</a><br />
* Auto-scale flips the graph <a href="https://bugs.launchpad.net/gephi/+bug/577843">bug 577843</a><br />
* &#8220;Node must be in the graph&#8221; error when importing a hierarchical graph with height greater than 1 <a href="https://bugs.launchpad.net/gephi/+bug/577180">bug 577180</a><br />
* FileNotFoundException during saving of PDF file <a href="https://bugs.launchpad.net/gephi/+bug/572876">bug 572876</a><br />
* dynamic graph unrecognized if everlasting nodes <a href="https://bugs.launchpad.net/gephi/+bug/555637">bug 555637</a><br />
* Edit window not hidden on tabs <a href="https://bugs.launchpad.net/gephi/+bug/552494">bug 552494</a><br />
* &#8216;Format&#8217; not recognized on DL import <a href="https://bugs.launchpad.net/gephi/+bug/619069">bug 619069</a><br />
* Visualization selection color inversion between &#8216;out&#8217; and &#8216;both&#8217; color <a href="https://bugs.launchpad.net/gephi/+bug/618726">bug 618726</a><br />
* Workspace Selection failed to refresh after closing workspace <a href="https://bugs.launchpad.net/gephi/+bug/616814">bug 616814</a><br />
* NullPointerException when selecting &#8220;&#8211;Choose a Layout&#8221; in the Layout ComboBox <a href="https://bugs.launchpad.net/gephi/+bug/606964">bug 606964</a><br />
* In/Out degree metric doesn&#8217;t work with undirected graphs <a href="https://bugs.launchpad.net/gephi/+bug/606305">bug 606305</a><br />
* Right click on workspace after deleting a node throws &#8220;node can&#8217;t be null&#8221; <a href="https://bugs.launchpad.net/gephi/+bug/605947">bug 605947</a><br />
* Import transform to Undirected don&#8217;t merge weight <a href="https://bugs.launchpad.net/gephi/+bug/603478">bug 603478</a><br />
* Can&#8217;t display edge weight as text <a href="https://bugs.launchpad.net/gephi/+bug/603134">bug 603134</a><br />
* Can&#8217;t select Postgresql driver in database import settings <a href="https://bugs.launchpad.net/gephi/+bug/595223">bug 595223</a><br />
* Error when opening Plugin Center <a href="https://bugs.launchpad.net/gephi/+bug/616829">bug 616829</a><br />
* Node invisible (too small) when created with the node pencil <a href="https://bugs.launchpad.net/gephi/+bug/574807">bug 574807</a><br />
* Ranking not refreshed when graph filtered <a href="https://bugs.launchpad.net/gephi/+bug/632459">bug 632459</a><br />
* Ranking parameters re-initialized at each new ranking <a href="https://bugs.launchpad.net/gephi/+bug/594231">bug 594231</a><br />
* Can&#8217;t drag a filter sub-query to become a root query <a href="https://bugs.launchpad.net/gephi/+bug/626495">bug 626495</a><br />
* NullPointerException when switching between workspaces while a layout is running <a href="https://bugs.launchpad.net/gephi/+bug/597458">bug 597458</a><br />
* NullPointerException when executing the &#8220;Eigenvector Centrality&#8221; Statistic <a href="https://bugs.launchpad.net/gephi/+bug/589731">bug 589731</a><br />
* Memory Leak in Graph Distance <a href="https://bugs.launchpad.net/gephi/+bug/587450">bug 587450</a><br />
* ForceAtlas and Fruchterman Reingold not layouting with meta-edges <a href="https://bugs.launchpad.net/gephi/+bug/584286">bug 584286</a><br />
* Cannot save / saves as when opening a Gephi by doubleclick a graph in Windows <a href="https://bugs.launchpad.net/gephi/+bug/583397">bug 583397</a><br />
* GraphML importer doesn&#8217;t import node labels data <a href="https://bugs.launchpad.net/gephi/+bug/581629">bug 581629</a><br />
* Exception on clicking on &#8216;Hierarchy&#8217; while running multilevel layout <a href="https://bugs.launchpad.net/gephi/+bug/631663">bug 631663</a><br />
* Opening Archived ZIP files is broken <a href="https://bugs.launchpad.net/gephi/+bug/578876">bug 578876</a><br />
* Partition Settings in Filter not saved on switching workspaces  <a href="https://bugs.launchpad.net/gephi/+bug/616052">bug 616052</a><br />
* Filtered graph not exported with &#8220;Select&#8221; pressed <a href="https://bugs.launchpad.net/gephi/+bug/573685">bug 573685</a><br />
* Partition &#8220;All Blacks&#8221; feature randomizes colors <a href="https://bugs.launchpad.net/gephi/+bug/601066">bug 601066</a><br />
* &#8217;start&#8217; and &#8216;end&#8217; attributes are missing when exporting dynamic GEXF <a href="https://bugs.launchpad.net/gephi/+bug/521848">bug 521848</a><br />
* EdgeList Database Configuration is not saved <a href="https://bugs.launchpad.net/gephi/+bug/571263">bug 571263</a><br />
* Slowness on picking a partition entry <a href="https://bugs.launchpad.net/gephi/+bug/519549">bug 519549</a><br />
* Unable to cancel a project opening <a href="https://bugs.launchpad.net/gephi/+bug/616415">bug 616415</a><br />
* Progress is not shown when opening/saving project <a href="https://bugs.launchpad.net/gephi/+bug/594644">bug 594644</a><br />
* Incorrect mutual edge weight on Preview <a href="https://bugs.launchpad.net/gephi/+bug/610469">bug 610469</a><br />
* Memory Leak in GEXF/GraphML Parser <a href="https://bugs.launchpad.net/gephi/+bug/596872">bug 596872</a><br />
* Node Size Mode and Filter Paramaters don&#8217;t save in project <a href="https://bugs.launchpad.net/gephi/+bug/596430">bug 596430</a><br />
* Errors with Yifan Hu MultiLevel Layout on a filtered graph <a href="https://bugs.launchpad.net/gephi/+bug/594643">bug 594643</a><br />
* Preview is not displaying meta-edges <a href="https://bugs.launchpad.net/gephi/+bug/584289">bug 584289</a><br />
* Meta-edges are not displayed <a href="https://bugs.launchpad.net/gephi/+bug/584283">bug 584283</a><br />
* gtk+ slider problem <a href="https://bugs.launchpad.net/gephi/+bug/529913">bug 529913</a><br />
* NullPointerException on importing dynamic graph <a href="https://bugs.launchpad.net/gephi/+bug/581872">bug 581872</a><br />
* NullPointerException when filtering undirected graphs <a href="https://bugs.launchpad.net/gephi/+bug/571153">bug 571153</a><br />
* Filtering with convex hulls displayed <a href="https://bugs.launchpad.net/gephi/+bug/541819">bug 541819</a><br />
* Wrong edge removed from Edge Weight filter <a href="https://bugs.launchpad.net/gephi/+bug/603469">bug 603469</a></p>
         ]]></content:encoded>
			<wfw:commentRss>https://gephi.org/2010/gephi-0-7beta-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

