<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/gitk, branch v1.3.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.3.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.3.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2006-04-17T00:27:59Z</updated>
<entry>
<title>gitk: Fix bug caused by missing commitlisted elements</title>
<updated>2006-04-17T00:27:59Z</updated>
<author>
<name>Paul Mackerras</name>
<email>paulus@samba.org</email>
</author>
<published>2006-04-17T00:27:59Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e7da347520486ce33bb77d241b574787c0ec18e8'/>
<id>urn:sha1:e7da347520486ce33bb77d241b574787c0ec18e8</id>
<content type='text'>
This bug was reported by Yann Dirson, and results in an 'Error:
expected boolean value but got ""' dialog when scrolling to the bottom
of the graph under some circumstances.  The issue is that git-rev-list
isn't outputting all the boundary commits when it is asked for commits
affecting only certain files.  We already cope with that by adding the
missing boundary commits in addextraid, but there we weren't adding a
0 to the end of the commitlisted list when we added the extra id to
the end of the displayorder list.

This fixes it by appending 0 to commitlisted in addextraid, thus keeping
commitlisted and displayorder in sync.

Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>gitk: Fix incorrect invocation of getmergediffline</title>
<updated>2006-04-06T00:20:03Z</updated>
<author>
<name>Paul Mackerras</name>
<email>paulus@samba.org</email>
</author>
<published>2006-04-06T00:20:03Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=c5a4c4debec43ff98053cb6b69d35d63e45ee131'/>
<id>urn:sha1:c5a4c4debec43ff98053cb6b69d35d63e45ee131</id>
<content type='text'>
Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] gitk: Fix searching for filenames in gitk</title>
<updated>2006-04-06T00:19:23Z</updated>
<author>
<name>Pavel Roskin</name>
<email>proski@gnu.org</email>
</author>
<published>2006-04-05T23:02:50Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=37543541257c1066f8222e5c62933266936efabf'/>
<id>urn:sha1:37543541257c1066f8222e5c62933266936efabf</id>
<content type='text'>
findcont should not accept any arguments.

Signed-off-by: Pavel Roskin &lt;proski@gnu.org&gt;
Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] Provide configurable UI font for gitk</title>
<updated>2006-04-05T00:29:47Z</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2006-04-04T07:19:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=4840be66b10fd5e5d67e27a8d0c67a96d5b8356a'/>
<id>urn:sha1:4840be66b10fd5e5d67e27a8d0c67a96d5b8356a</id>
<content type='text'>
This makes the font used in the UI elements of gitk configurable in the
same way the other fonts are. The default fonts used in the Xft build of
tk8.5 are particularily horrific, making this change more important
there.

Signed-off-by: Keith Packard &lt;keithp@neko.keithp.com&gt;
Acked-by: Junio C Hamano &lt;junkio@cox.net&gt;
Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] gitk: Use git wrapper to run git-ls-remote.</title>
<updated>2006-04-05T00:28:34Z</updated>
<author>
<name>Mark Wooding</name>
<email>mdw@distorted.org.uk</email>
</author>
<published>2006-04-04T06:24:55Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=ce08872259d3036f424070cb5a9a4d5ec67f1f7a'/>
<id>urn:sha1:ce08872259d3036f424070cb5a9a4d5ec67f1f7a</id>
<content type='text'>
For some reason, the Cygwin Tcl's `exec' command has trouble running
scripts.  Fix this by using the C `git' wrapper.  Other GIT programs run
by gitk are written in C already, so we don't need to incur a
performance hit of going via the wrapper (which I'll bet isn't pretty
under Cygwin).

Signed-off-by: Mark Wooding &lt;mdw@distorted.org.uk&gt;
Acked-by: Junio C Hamano &lt;junkio@cox.net&gt;
Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] gitk: add key bindings for selecting first and last commit</title>
<updated>2006-04-05T00:24:03Z</updated>
<author>
<name>Rutger Nijlunsing</name>
<email>git@tux.tmfweb.nl</email>
</author>
<published>2006-04-05T00:24:03Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=6e5f7203de440fd46c6709a9f71a7e0641363a5c'/>
<id>urn:sha1:6e5f7203de440fd46c6709a9f71a7e0641363a5c</id>
<content type='text'>
For a keyboard addict like me some keys are still missing from
gitk. Especially a key to select a commit when no commit is selected,
like just after startup. While we're at it, complete the bindings for
moving the view seperately from the selected line. Currently, the up
and down keys act on the selected line while pageup and pagedown act
on the commits viewed.

The idea is to have to normal keys change the selected line:
  - Home selects first commit
  - End selects last commit
  - Up selects previous commit
  - Down selects next commit
  - PageUp moves selected line one page up
  - PageDown moves selected line one page down
...and together with the Control key, it moves the commits view:
  - Control-Home views first page of commits
  - Control-End views last page of commits
  - Control-Up moves commit view one line up
  - Control-Down moves commit view one line down
  - Control-PageUp moves commit view one page up
  - Control-PageDown moves commit view one page down

Signed-off-By: Rutger Nijlunsing &lt;gitk@tux.tmfweb.nl&gt;

and with some cleanups and simplifications...
Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>gitk: Add a help menu item to display key bindings</title>
<updated>2006-04-04T23:39:51Z</updated>
<author>
<name>Paul Mackerras</name>
<email>paulus@samba.org</email>
</author>
<published>2006-04-04T23:39:51Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=4e95e1f738720e2f768098f73e76109c15a4e1ff'/>
<id>urn:sha1:4e95e1f738720e2f768098f73e76109c15a4e1ff</id>
<content type='text'>
Suggested by Paul Schulz.  I made it a separate entry under the Help
menu rather than putting it in the About box, though.

Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] gitk: allow goto heads</title>
<updated>2006-04-04T23:14:02Z</updated>
<author>
<name>Stephen Rothwell</name>
<email>sfr@canb.auug.org.au</email>
</author>
<published>2006-03-30T05:13:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e100712968cb781183a549f164e34596d6e7fcb2'/>
<id>urn:sha1:e100712968cb781183a549f164e34596d6e7fcb2</id>
<content type='text'>
This patch allows you to enter a head name in the SHA1 id: field.

It also removes some unnecessary global declarations.

Signed-off-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;
Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>gitk: replace parent and children arrays with lists</title>
<updated>2006-04-02T10:47:40Z</updated>
<author>
<name>Paul Mackerras</name>
<email>paulus@samba.org</email>
</author>
<published>2006-04-02T10:47:40Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=79b2c75e043ad85f9a6b1a8d890b601a2f761a0e'/>
<id>urn:sha1:79b2c75e043ad85f9a6b1a8d890b601a2f761a0e</id>
<content type='text'>
This will make it easier to switch between views efficiently, and
turns out to be slightly faster as well.

Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
<entry>
<title>gitk: Better workaround for arrows on diagonal line segments</title>
<updated>2006-03-30T23:45:14Z</updated>
<author>
<name>Paul Mackerras</name>
<email>paulus@samba.org</email>
</author>
<published>2006-03-30T23:45:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=879e8b1aad021cade0a254db0a5b67f56d99902a'/>
<id>urn:sha1:879e8b1aad021cade0a254db0a5b67f56d99902a</id>
<content type='text'>
Instead of adding extra padding to create a vertical line segment at
the lower end of a line that has an arrow, this now just draws a very
short vertical line segment at the lower end.  This alternative
workaround for the Tk8.4 behaviour (not drawing arrows on diagonal
line segments) doesn't have the problem of making the graph very wide
when people do a lot of merges in a row (hi Junio :).

Signed-off-by: Paul Mackerras &lt;paulus@samba.org&gt;
</content>
</entry>
</feed>
