summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Merry <dev@randomguy3.me.uk>2013-05-07 14:10:56 +0100
committerAlex Merry <dev@randomguy3.me.uk>2013-05-07 14:41:30 +0100
commit3e131dd390d67a0dfc161b460ca4b96c7e516618 (patch)
tree50983d7ee9a57da68a21968a4159dd2df114c1e1
parent70139e02d87eda4e26d9d3d04da51706ab1c7b01 (diff)
GTK: 1.0 releasev1.0
-rw-r--r--tikzit/INSTALL4
-rw-r--r--tikzit/NEWS10
-rw-r--r--tikzit/configure.ac2
-rw-r--r--tikzit/tikzit.spec5
-rw-r--r--www/htdocs/link.php2
-rw-r--r--www/sourceforge/README.mkd23
6 files changed, 24 insertions, 22 deletions
diff --git a/tikzit/INSTALL b/tikzit/INSTALL
index a5a91d5..695982d 100644
--- a/tikzit/INSTALL
+++ b/tikzit/INSTALL
@@ -24,9 +24,7 @@ To build from subversion (and for development) you will additionally need:
automake
and you will need to prepare the source tree by running
- aclocal
- autoconf
- automake --add-missing
+ ./autogen.sh
diff --git a/tikzit/NEWS b/tikzit/NEWS
index 4bf1ff9..0efc18f 100644
--- a/tikzit/NEWS
+++ b/tikzit/NEWS
@@ -1,3 +1,13 @@
+tikzit 1.0 (2013-05-07):
+ * GIMP-like user interface (multiple documents, separate toolboxes)
+ * Preferences now called Configuration, and includes node and edge styles
+ * Error-highlighting in the code pane
+ * Single-key-shortcuts for tool selection, and <space> to update the preview
+ * Edge anchor support
+ * Option for drag-select to select nodes, edges or both
+ * Memory leak fixes
+ * Should now be impossible to use the UI to create a graph that cannot be parsed
+
tikzit 0.9 (2012-08-24):
* Compilers without basic Objective C 2 support cannot be
used to compile TikZiT any more
diff --git a/tikzit/configure.ac b/tikzit/configure.ac
index 7d713bb..8f791b6 100644
--- a/tikzit/configure.ac
+++ b/tikzit/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.60])
-AC_INIT([TikZiT], [0.9],
+AC_INIT([TikZiT], [1.0],
[http://sourceforge.net/apps/trac/tikzit],
[tikzit],
[http://tikzit.sourceforge.net])
diff --git a/tikzit/tikzit.spec b/tikzit/tikzit.spec
index 56b6eaa..880a3e5 100644
--- a/tikzit/tikzit.spec
+++ b/tikzit/tikzit.spec
@@ -1,5 +1,5 @@
Name: tikzit
-Version: 0.9
+Version: 1.0
Release: 1%{?dist}
Summary: Tool for creating and modifying pgf/TikZ diagrams for TeX
@@ -71,6 +71,9 @@ rm -rf %{buildroot}
%changelog
+* Tue May 7 2013 Alex Merry <dev@randomguy3.me.uk> 1.0-1
+-Bumped version
+
* Fri Aug 24 2012 Alex Merry <dev@randomguy3.me.uk> 0.9-1
-Bumped version
-Bumped requirements
diff --git a/www/htdocs/link.php b/www/htdocs/link.php
index 78ee3ab..d6ec8da 100644
--- a/www/htdocs/link.php
+++ b/www/htdocs/link.php
@@ -1,6 +1,6 @@
<?
$dmg_ver = "0.8";
-$src_ver = "0.9";
+$src_ver = "1.0";
$win_ver = "0.9";
$file_root = "http://sourceforge.net/projects/tikzit/files";
diff --git a/www/sourceforge/README.mkd b/www/sourceforge/README.mkd
index ce5a1d0..fb11cd4 100644
--- a/www/sourceforge/README.mkd
+++ b/www/sourceforge/README.mkd
@@ -10,22 +10,13 @@ It comes in two flavours: MacOSX (Cocoa) and GTK+. Note that you will need to b
* poppler (including glib bindings - tested with 0.12.4)
* An Objective-C compiler (eg: gcc-objc)
-## Changes since 0.7:
+## Changes since 0.9:
### GTK+ flavour:
-* Compilers without basic Objective C 2 support cannot be
- used to compile TikZiT any more
-* Add support for scale to node styles
-* Add support for editing edge styles
-* Add support for multiple custom preambles
-* The path to pdflatex is now configurable
-* Make everything look a bit better
-* Edges now start from the edge of a node, not the centre,
- which is what tikz does
-* Edges can now have arrow heads and arrow tails
-* Nodes and edges have consistent ordering, and this can be
- changed with Edge-&gt;Arrange
-* Edges now have colours
-* Edges can now be reversed easily
-* Fix various crashes
+* UI overhaul: multiple documents can be open at once, and there are GIMP-like separate toolbox windows
+* Better keyboard shortcuts for changing tools
+* Support for edge anchors
+* Option to drag-select edges as well as or instead of nodes
+* Error highlighting in code pane
+* Various bugfixes including crashes, memory leaks and parsing issues