Skip to content

Commit 50fa25f

Browse files
committed
Bumped version to 0.9.38
1 parent c37e097 commit 50fa25f

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 0.9.38:
2+
3+
* Fixed bug in auto_reload
4+
* Added command line option for auto reload
5+
* Added mouse button and modifier info to the pick_coordinate jsonrpc command
6+
17
Version 0.9.37:
28

39
* Added interactive option "I" for toggling image display

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AM_CONFIG_HEADER(config.h)
55
PACKAGE=givwidget
66
GIVWIDGET_API_VERSION=2.0
77

8-
AM_INIT_AUTOMAKE(giv, 0.9.37)
8+
AM_INIT_AUTOMAKE(giv, 0.9.38)
99

1010
dnl Use libtool to get shared libraries
1111
LT_PREREQ

doc/giv.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ <h1 align=center>A Manual for Giv<br></h1>
1717
</center>
1818
<h2 align=center>
1919
<img src="giv-logo-150.png"><br>
20-
<font size=+2>Version 0.9.36</font><br>
20+
<font size=+2>Version 0.9.38</font><br>
2121
<font size=-1>Dov Grobgeld</font><br>
2222
<font size=-1>Homepage: <a href="http://giv.sourceforge.net/giv">http://giv.sourceforge.net/giv</a></font><br>
2323
<font size=-1>Development: <a href="http://github.com/dov/giv">http://github.com/dov/giv</a></font><br>
2424
<font size=-1>Chat room: <a href="https://gitter.im/dov/giv?utm_source=share-link&utm_medium=link&utm_campaign=share-link">Gitter Giv Chat room</a></font><br>
2525
<font size=-1><a href="mailto:[email protected]">[email protected]</a></font><br>
26-
<font size=-1>Last modified: 2023-02-09 Thu</font>
26+
<font size=-1>Last modified: 2023-11-26 Sun</font>
2727
</h2>
2828

2929
<h2><a name="SEC1">1. Description</a></h2>
@@ -690,11 +690,11 @@ <h2><a name="SEC5">5. Remote access protocol</a></h2>
690690
<p>
691691
The simplified form splits the arguments on whitespace and takes the first argument as the name of the remote method and the rest as the parameters.
692692
<pre>
693-
giv -remote "load_file /home/dov/pictures/maja.pgm"
693+
giv --remote "load_file /home/dov/pictures/maja.pgm"
694694
</pre>
695695
The full forms allows specifying the parameters in json syntax. The following command is equivalent to the above code:
696696
<pre>
697-
./giv -json_method load_file -json_params '["/home/dov/github/giv/examples/lena.pgm"]'
697+
./giv --json_method load_file -json_params '["/home/dov/github/giv/examples/lena.pgm"]'
698698
</pre>
699699
<p>
700700
For windows there is a command line tool called <tt>giv-remote-client.exe</tt> that provides a simple remote client:

doc/giv.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ sub code_snippet { # usage: code_snippet($filename, title)
9393
</center>
9494
<h2 align=center>
9595
<img src="giv-logo-150.png"><br>
96-
<font size=+2>Version 0.9.37</font><br>
96+
<font size=+2>Version 0.9.38</font><br>
9797
<font size=-1>Dov Grobgeld</font><br>
9898
<font size=-1>Homepage: <a href="http://giv.sourceforge.net/giv">http://giv.sourceforge.net/giv</a></font><br>
9999
<font size=-1>Development: <a href="http://github.com/dov/giv">http://github.com/dov/giv</a></font><br>
100100
<font size=-1>Chat room: <a href="https://gitter.im/dov/giv?utm_source=share-link&utm_medium=link&utm_campaign=share-link">Gitter Giv Chat room</a></font><br>
101101
<font size=-1><a href="mailto:[email protected]">[email protected]</a></font><br>
102-
<font size=-1>Last modified: 2023-02-09 Thu</font>
102+
<font size=-1>Last modified: 2023-11-26 Sun</font>
103103
</h2>
104104

105105
<: section("Description") :>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Work in progress
22
project('giv', ['c','cpp','vala'],
3-
version : '0.9.37',
3+
version : '0.9.38',
44
license: 'LGPLv3+')
55

66
add_global_arguments('-DSPDLOG_FMT_EXTERNAL',

0 commit comments

Comments
 (0)