ClipIt-v1.2.3-11112010002
+ Fixed: Fixed the manpage so it now aligns to the conventions for writing Linux man pages. + Fixed: Added the "-Wl,--as-needed" flag, so only the needed packages are included. Changes to be committed: modified: ChangeLog modified: configure.in modified: doc/clipit.1 modified: src/Makefile.am
This commit is contained in:
parent
2ebb6b5085
commit
80f9e3d4f9
@ -1,3 +1,9 @@
|
||||
ClipIt-v1.2.3-11112010002 - 11 Nov. 2010
|
||||
+ Fixed: Fixed the manpage so it now aligns to the conventions for
|
||||
writing Linux man pages.
|
||||
+ Fixed: Added the "-Wl,--as-needed" flag, so only the needed packages
|
||||
are included.
|
||||
|
||||
ClipIt-v1.2.2-11112010001 - 11 Nov. 2010
|
||||
+ Fixed: Some small compatibility changes for debian packaging.
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
# Autoconf/automake.
|
||||
# -------------------------------------------------------------------------------
|
||||
AC_PREREQ([2.5])
|
||||
AC_INIT([clipit], [1.2.2], [oss@web-tm.com])
|
||||
AC_INIT([clipit], [1.2.3], [oss@web-tm.com])
|
||||
AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
24
doc/clipit.1
24
doc/clipit.1
@ -1,4 +1,4 @@
|
||||
.TH CLIPIT 1 "01.11.2010"
|
||||
.TH CLIPIT 1 "2010-11-11"
|
||||
.SH NAME
|
||||
ClipIt \- Lightweight GTK+ Clipboard Manager
|
||||
.SH SYNOPSIS
|
||||
@ -13,27 +13,33 @@ of your standard input get copied to your clipboard. See \fBCLI EXAMPLES\fR.
|
||||
.B OPTIONS
|
||||
.TP
|
||||
.B \-?\fR, \fB\-\-help
|
||||
Show help options
|
||||
Show help options.
|
||||
.TP
|
||||
.B \-d\fR, \fB\-\-daemon
|
||||
Run as daemon. Use this mode if you just want \fBClipIt\fR to keep your clipboard
|
||||
and primary contents safe
|
||||
and primary contents safe.
|
||||
.TP
|
||||
.B \-n\fR, \fB\-\-no-icon
|
||||
Do not use status icon
|
||||
Do not use status icon.
|
||||
.TP
|
||||
.B \-c\fR, \fB\-\-clipboard
|
||||
Print clipboard contents
|
||||
Print clipboard contents.
|
||||
.TP
|
||||
.B \-p\fR, \fB\-\-primary
|
||||
Print primary contents
|
||||
.SH ACTIONS
|
||||
Print primary contents.
|
||||
.SH NOTES
|
||||
.SS ACTIONS
|
||||
\fBClipIt's\fR actions perform commands using the contents of your clipboard. "\fB%s\fR" in the command
|
||||
is replaced with the clipboard contents.
|
||||
.SH CLI EXAMPLES
|
||||
.SS CLI EXAMPLES
|
||||
.TP
|
||||
Put text in the clipboard
|
||||
echo "copied to clipboard" | clipit
|
||||
clipit "copied to clipboard"
|
||||
.TP
|
||||
Put text in the clipboard and print the clipboard contents
|
||||
echo "copied to clipboard" | clipit \-c
|
||||
.SH Hotkeys
|
||||
.SS Hotkeys
|
||||
The available hotkey modifiers are <Ctrl>, <Alt> <Shift>, <Release>, <Meta>, <Super>, <Hyper>, <Mod[1\-5]>
|
||||
.SH SEE ALSO
|
||||
.PP
|
||||
|
@ -1,6 +1,7 @@
|
||||
AM_CFLAGS = -I$(top_srcdir) -DCLIPITLOCALEDIR=\""$(clipitlocaledir)"\"
|
||||
INCLUDES = $(GTK_CFLAGS)
|
||||
LDADD = $(GTK_LIBS)
|
||||
AM_LDFLAGS = -Wl,--as-needed
|
||||
|
||||
bin_PROGRAMS = clipit
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user