summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Makefile3
-rw-r--r--src/config.h2
-rw-r--r--src/main.c3
4 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 0000000..0aa799f
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,4 @@
+Release 2010.08.21
+
+- First "official" release
+
diff --git a/Makefile b/Makefile
index 5cb4344..46cc5e4 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,8 @@ PIANOBAR_HDR=\
${PIANOBAR_DIR}/ui_act.h \
${PIANOBAR_DIR}/ui.h \
${PIANOBAR_DIR}/ui_readline.h \
- ${PIANOBAR_DIR}/main.h
+ ${PIANOBAR_DIR}/main.h \
+ ${PIANOBAR_DIR}/config.h
PIANOBAR_OBJ=${PIANOBAR_SRC:.c=.o}
LIBPIANO_DIR=libpiano/src
diff --git a/src/config.h b/src/config.h
index 39ab51d..ddfa818 100644
--- a/src/config.h
+++ b/src/config.h
@@ -4,4 +4,6 @@
/* package name */
#define PACKAGE "pianobar"
+#define VERSION "2010.08.21"
+
#endif /* _CONFIG_H */
diff --git a/src/main.c b/src/main.c
index 4c15698..19cdad2 100644
--- a/src/main.c
+++ b/src/main.c
@@ -84,7 +84,8 @@ int main (int argc, char **argv) {
BarSettingsInit (&app.settings);
BarSettingsRead (&app.settings);
- BarUiMsg (MSG_NONE, "Welcome to " PACKAGE "! Press %c for a list of commands.\n",
+ BarUiMsg (MSG_NONE, "Welcome to " PACKAGE " (" VERSION ")! "
+ "Press %c for a list of commands.\n",
app.settings.keys[BAR_KS_HELP]);
/* init fds */