diff --git a/NEWS b/NEWS index fbedce81..ba818239 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,57 @@ += gitg 44 = +args to build libgit2 +linter fixes +bundle git in flatpak distro +Fix flatpak dependencies +Add sha1 and committer name to history view +control available lanes to paint +gitg mainline needs to be explicitly set +insert lanes directly in correct order +avoid load history twice +Show commit details for submodule history view +Honor core.hooksPath property +Add file filter by name for stage view +refresh references on external change +Check renamed branch prefix does not match with existing branches +Start rename edition from history view +Calculate selected ref on history view +Disable remove current checked branch +Show info on errors in command line about init option +retrieve correctly the parent window for context menus +Open files in external editor +Reuse previous filemode when staging patches +Fix window growing each start +Allow to sign commits +Correct behaviour of --standalone option +Option to delete sources from disk +customizable datetime format +honor avatar service settings +honor commit settings +flatpak: upgrade libssh2 to version 1.10.0 +Deal correctly with stage/unstage of selection on new files +Honor system preferences about using dark theme +Do not disable image diff tools +highlight characters outside margins +Include conflict status +use datetime for visited +Use non deprecated show_uri +Handle all DiffLineType +Use timezone constructor +Added init option +Update release 41 metadata info +Added reference action to create patch +Added reference action to add tags +Added reference action to create branch +Manage invalid remotes +Allow to edit remotes +Allow to remove remotes +Allow to add new remotes +default to text diff if mime type detection fails +Fix offset from parsing tags +Avoid parse html tags from commits +Show diff renderer switch only when diff expanded +Update windows installer + = gitg 41 = Manage if there's no textconv config Convert to text using gitattributes config diff --git a/README.md b/README.md index 04b16de8..895abb48 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ gitg is a graphical user interface for git. It aims at being a small, fast and convenient tool to visualize the history of git repositories. Besides visualization, gitg also provides several utilities to manage your repository and commit your work. -The latest version of gitg is 41. +The latest version of gitg is 44. - Website: https://wiki.gnome.org/Apps/Gitg - Issues: https://gitlab.gnome.org/GNOME/gitg/issues @@ -13,11 +13,11 @@ The latest version of gitg is 41. ## Installing gitg -To install the latest version of gitg, make sure to download gitg-41.tar.xz from the download site. After downloading the following procedure installs gitg: +To install the latest version of gitg, make sure to download gitg-44.tar.xz from the download site. After downloading the following procedure installs gitg: ``` -$ tar Jxf gitg-41.tar.xz -$ cd gitg-41 +$ tar Jxf gitg-44.tar.xz +$ cd gitg-44 $ meson --prefix=/usr build $ ninja -C build $ sudo ninja -C build install diff --git a/data/org.gnome.gitg.appdata.xml.in.in b/data/org.gnome.gitg.appdata.xml.in.in index 83058264..01ecc773 100644 --- a/data/org.gnome.gitg.appdata.xml.in.in +++ b/data/org.gnome.gitg.appdata.xml.in.in @@ -45,6 +45,65 @@ + + +

Bug fixes:

+
    +
  • args to build libgit2
  • +
  • inter fixes
  • +
  • undle git in flatpak distro
  • +
  • ix flatpak dependencies
  • +
  • dd sha1 and committer name to history view
  • +
  • ontrol available lanes to paint
  • +
  • itg mainline needs to be explicitly set
  • +
  • nsert lanes directly in correct order
  • +
  • void load history twice
  • +
  • how commit details for submodule history view
  • +
  • onor core.hooksPath property
  • +
  • dd file filter by name for stage view
  • +
  • efresh references on external change
  • +
  • heck renamed branch prefix does not match with existing branches
  • +
  • tart rename edition from history view
  • +
  • alculate selected ref on history view
  • +
  • isable remove current checked branch
  • +
  • how info on errors in command line about init option
  • +
  • etrieve correctly the parent window for context menus
  • +
  • pen files in external editor
  • +
  • euse previous filemode when staging patches
  • +
  • ix window growing each start
  • +
  • llow to sign commits
  • +
  • orrect behaviour of --standalone option
  • +
  • ption to delete sources from disk
  • +
  • ustomizable datetime format
  • +
  • onor avatar service settings
  • +
  • onor commit settings
  • +
  • latpak: upgrade libssh2 to version 1.10.0
  • +
  • eal correctly with stage/unstage of selection on new files
  • +
  • onor system preferences about using dark theme
  • +
  • o not disable image diff tools
  • +
  • ighlight characters outside margins
  • +
  • nclude conflict status
  • +
  • se datetime for visited
  • +
  • se non deprecated show_uri
  • +
  • andle all DiffLineType
  • +
  • se timezone constructor
  • +
  • dded init option
  • +
  • pdate release 41 metadata info
  • +
  • dded reference action to create patch
  • +
  • dded reference action to add tags
  • +
  • dded reference action to create branch
  • +
  • anage invalid remotes
  • +
  • llow to edit remotes
  • +
  • llow to remove remotes
  • +
  • llow to add new remotes
  • +
  • efault to text diff if mime type detection fails
  • +
  • ix offset from parsing tags
  • +
  • void parse html tags from commits
  • +
  • how diff renderer switch only when diff expanded
  • +
  • pdate windows installer
  • +
+
+

Bug fixes:

diff --git a/meson.build b/meson.build index 6fd945ea..03d3ccc7 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'gitg', ['c', 'vala'], - version: '41', + version: '44', license: 'GPL2+', default_options: 'buildtype=debugoptimized', meson_version: '>= 0.50.0',