Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Thunar Plugins
thunar-vcs-plugin
Commits
5cb0f394
Commit
5cb0f394
authored
Nov 08, 2009
by
Peter de Ridder
Browse files
=== Released 0.1.2 ===
parent
d1bc519d
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
5cb0f394
2009-11-08 Peter de Ridder <peter@xfce.org>
* === Released 0.1.2 ===
* thunar-vcs-plugin/tvp-provider.c: Fixed build when svn is disabled.
* tvp-git-helper/tgh-{add,move,reset}.c: Fixed WEXITSTATUS includes.
2009-11-07 Peter de Ridder <peter@xfce.org>
* tvp-git-helper/tgh-{add,blame,clean,log,reset}.c: Changed deprecated
...
...
NEWS
View file @
5cb0f394
0.1.2
=====
- More git actions are added: blame, clean, move and stash.
- Git icon added.
0.1.1
=====
- Unimplemented options are hidden in menu.
...
...
@@ -18,7 +23,7 @@ thunar-svn-plugin-0.0.3
thunar-svn-plugin-0.0.2
=======================
- New Subversion actions
have been
added: switch, relocate, blame.
- New Subversion actions
are
added: switch, relocate, blame.
- File selection dialog added for various Subversion actions.
thunar-svn-plugin-0.0.1
...
...
configure.ac.in
View file @
5cb0f394
...
...
@@ -12,9 +12,9 @@ dnl *** Version information ***
dnl ***************************
m4_define([tvp_version_major], [0])
m4_define([tvp_version_minor], [1])
m4_define([tvp_version_micro], [
1
])
m4_define([tvp_version_micro], [
2
])
m4_define([tvp_version_build], [@REVISION@])
m4_define([tvp_version_tag], [
git
]) # Leave empty for releases
m4_define([tvp_version_tag], []) # Leave empty for releases
m4_define([tvp_version], [tvp_version_major().tvp_version_minor().tvp_version_micro()ifelse(tvp_version_tag(), [], [], [tvp_version_tag()-tvp_version_build()])])
dnl *******************************************
...
...
@@ -99,9 +99,9 @@ fi
AM_CONDITIONAL([HAVE_SUBVERSION], [test x"$found_subversion" = x"yes"])
AC_ARG_ENABLE([git],
AC_HELP_STRING([--enable-git], [Enable git])
AC_HELP_STRING([--disable-git], [Disable git
(default)
]),
[check_for_git=$enableval], [check_for_git=
no
])
AC_HELP_STRING([--enable-git], [Enable git
(default)
])
AC_HELP_STRING([--disable-git], [Disable git]),
[check_for_git=$enableval], [check_for_git=
yes
])
AC_MSG_CHECKING([for optional package git])
if test x"$check_for_git" = x"yes"; then
found_git=yes
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment