This prepares the GitX 0.7 release-notes and also fixes two small bugs in the previous notes.
It also fixes a CSS-bug which makes the gitx-website display the same font with Firefox and Safari instead of using a serif with FF. Signed-off-by: Johannes Gilger <[email protected]> --- Documentation/ReleaseNotes/v0.6.2.txt | 3 ++- Documentation/ReleaseNotes/v0.6.3.txt | 3 ++- Documentation/ReleaseNotes/v0.7.txt | 25 +++++++++++++++++++++++++ Site/assets/css/master.css | 4 ++-- Site/text/index.markdown | 2 +- 5 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 Documentation/ReleaseNotes/v0.7.txt diff --git a/Documentation/ReleaseNotes/v0.6.2.txt b/Documentation/ReleaseNotes/v0.6.2.txt index 37303d7..172b799 100644 --- a/Documentation/ReleaseNotes/v0.6.2.txt +++ b/Documentation/ReleaseNotes/v0.6.2.txt @@ -15,4 +15,5 @@ In addition, the following features have been added: * There is now a 'Newâ¦' option to create a new repository * The 'Gist It' feature now asks for confirmation by default. This can be changed in the preferences * GitX can now open any directory by dragging it on the icon -* GitX now asks for confirmation before deleting a branch \ No newline at end of file +* GitX now asks for confirmation before deleting a branch + diff --git a/Documentation/ReleaseNotes/v0.6.3.txt b/Documentation/ReleaseNotes/v0.6.3.txt index c2f16a3..bed1fe8 100644 --- a/Documentation/ReleaseNotes/v0.6.3.txt +++ b/Documentation/ReleaseNotes/v0.6.3.txt @@ -5,4 +5,5 @@ This is a maintenance release. The following bugs have been fixed: * Fixed a problem where GitX could not open some directories, for example those that include a . [Johannes Gilger] * Fixed a performance issue when staging or unstaging a lot of files -* Various buildfixes (Benjamin Kramer, Arjen Laarhoven) \ No newline at end of file +* Various buildfixes (Benjamin Kramer, Arjen Laarhoven) + diff --git a/Documentation/ReleaseNotes/v0.7.txt b/Documentation/ReleaseNotes/v0.7.txt new file mode 100644 index 0000000..a2b99dd --- /dev/null +++ b/Documentation/ReleaseNotes/v0.7.txt @@ -0,0 +1,25 @@ +v0.7 +=== + +This feature-release has the following new features and enhancements: + +* Line-wise staging by selecting lines from hunks +* Discarding hunks/changes to files (using git apply --reverse) +* Show current HEAD in window-title +* Show current branch in orange in history view +* Collapse commit-list/diff-view using Command-Shift-Up/Down +* Sign-Off commits in commit view +* "Show in Finder" for files in commit view +* Commit hooks are executed when committing + +Small enhancements: + +* Show committer name if it differs from authors name +* Columns in history view can be toggled +* Branches can be deleted from the UI +* Reuse author-information when amending a commit +* Use modal alerts where possible +* Don't display content of binary-files in tree-view +* Correctly determine whether a repo is bare or not + +In addition a lot of bugs were fixed. diff --git a/Site/assets/css/master.css b/Site/assets/css/master.css index 017df12..760a7cf 100644 --- a/Site/assets/css/master.css +++ b/Site/assets/css/master.css @@ -3,7 +3,7 @@ body { background-color: #abc; - font-family: 'Lucida Grande' Arial; + font-family: 'Lucida Grande', Arial; background: url('../images/bg.png') repeat; } @@ -255,4 +255,4 @@ p.noclear code a { font-weight: normal; -} \ No newline at end of file +} diff --git a/Site/text/index.markdown b/Site/text/index.markdown index c8bea36..7de3247 100644 --- a/Site/text/index.markdown +++ b/Site/text/index.markdown @@ -20,7 +20,7 @@ then in silky smooth OS X style!</p> </h3> <ul> <li>Detailed history viewer</li> - <li>Nice commit GUI, allowing per-commit staging</li> + <li>Nice commit GUI, allowing hunk- and line-wise staging</li> <li>Fast</li> <li>Nice Aqua interface</li> <li>Paste commits to gist.github.com</li> -- 1.6.4.2.236.gf324c
