aboutsummaryrefslogtreecommitdiff
path: root/dragon.c
diff options
context:
space:
mode:
authorMichael Homer <mwh@mwh.geek.nz>2019-07-06 09:11:51 +1200
committerMichael Homer <mwh@mwh.geek.nz>2019-07-06 09:11:51 +1200
commitf7f21215bc65e6e67d7ca2268b6d75c06c5b52d1 (patch)
treeb27178bffc12870b38f2eedcc9fdddda0f8582df /dragon.c
parentAdd verbose logging for drag receive events (diff)
downloaddragon-f7f21215bc65e6e67d7ca2268b6d75c06c5b52d1.tar.gz
dragon-f7f21215bc65e6e67d7ca2268b6d75c06c5b52d1.tar.bz2
dragon-f7f21215bc65e6e67d7ca2268b6d75c06c5b52d1.zip
Increment version to 1.1.0
This release introduces the -p option to print paths instead of file: URIs, and various bug fixes.
Diffstat (limited to 'dragon.c')
-rw-r--r--dragon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dragon.c b/dragon.c
index bdd39c7..112a08d 100644
--- a/dragon.c
+++ b/dragon.c
@@ -24,7 +24,7 @@
#include <stdbool.h>
#include <string.h>
-#define VERSION "1.0.0"
+#define VERSION "1.1.0"
GtkWidget *window;
bgstack15