OTHER: Add a manpage and a changelog, tag as 0.1-rc1
This commit is contained in:
parent
9e1b318854
commit
8aca0ba576
5 changed files with 53 additions and 3 deletions
3
ChangeLog
Normal file
3
ChangeLog
Normal file
|
@ -0,0 +1,3 @@
|
|||
Version 0.1rc1 (2009-07-08)
|
||||
* first release candidate
|
||||
* mainwindow, playlistwindow and equalizer mostly work
|
|
@ -1,8 +1,9 @@
|
|||
DEFINES += PROMOE_VERSION="\"\\\"0.1-dev\\\"\""
|
||||
DEFINES += PROMOE_VERSION="\"\\\"0.1-rc1\\\"\""
|
||||
|
||||
isEmpty(PREFIX): PREFIX = /usr/local
|
||||
isEmpty(BINDIR): BINDIR = $$PREFIX/bin
|
||||
isEmpty(DATADIR): DATADIR = $$PREFIX/share/promoe
|
||||
isEmpty(MANDIR): MANDIR = $$PREFIX/share/man
|
||||
|
||||
DEFINES += DATADIR="\"\\\"$$DATADIR\\\"\""
|
||||
|
||||
|
|
39
promoe.1
Normal file
39
promoe.1
Normal file
|
@ -0,0 +1,39 @@
|
|||
.TH PROMOE 1
|
||||
.SH NAME
|
||||
promoe \- gui client for xmms2
|
||||
.SH SYNOPSIS
|
||||
.B promoe
|
||||
.P
|
||||
.SH DESCRIPTION
|
||||
.I Promoe
|
||||
is a client for the xmms2 music daemon. Promoe's interface is modeled after
|
||||
XMMS/WinAMP classic.
|
||||
.SH FILES
|
||||
.TP
|
||||
.I $XDG_CONFIG_HOME/xmms2/Promoe.conf
|
||||
The configuration file
|
||||
.TP
|
||||
.I $HOME/.config/xmms2/clients/promoe/skins
|
||||
Default directory for skins, can be changed in the configuration file
|
||||
.SH ENVIRONMENT VARIABLES
|
||||
.TP
|
||||
.I XMMS_PATH
|
||||
The URL path to
|
||||
.I xmms2d.
|
||||
See
|
||||
.B IPC SOCKET
|
||||
in
|
||||
.I xmms2d(8)
|
||||
for details of possible values for this variable
|
||||
.SH SEE ALSO
|
||||
xmms2d(8), http://xmms2.xmms.org
|
||||
.SH BUGS
|
||||
Please report bugs at
|
||||
.B http://bugs.xmms2.xmms.se
|
||||
.SH AUTHORS
|
||||
Thomas Frauendorfer, Tobias Rundström, Daniel Svensson and others.
|
||||
The
|
||||
.B AUTHORS
|
||||
file contains a complete list of contributors
|
||||
.PP
|
||||
Thomas Frauendorfer is to blame for the manpage
|
|
@ -4,9 +4,16 @@ SUBDIRS = lib src
|
|||
|
||||
include (config.pri)
|
||||
|
||||
message ( "Install path set to:" $$PREFIX )
|
||||
message ( "Install prefix set to:" $$PREFIX )
|
||||
|
||||
binary.path = $$BINDIR
|
||||
binary.files = promoe
|
||||
|
||||
INSTALLS += binary
|
||||
|
||||
unix: {
|
||||
manpages1.path = $$MANDIR/man1
|
||||
manpages1.files = promoe.1
|
||||
INSTALLS += manpages1
|
||||
}
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ Application::handleDisconnected ()
|
|||
|
||||
int pressed =
|
||||
QMessageBox::warning( NULL, "xmms2 daemon disconnected",
|
||||
"The xmms2 deamon has disconnected\n"
|
||||
"The xmms2 daemon has disconnected\n"
|
||||
"This could be because the server crashed\n"
|
||||
"or because another client has shut down the sever.",
|
||||
"Reconnect", "Quit Promoe");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue