Skip to content

Commit f7de04e

Browse files
committed
gitignore++, fix contact mail address, add TODO file
1 parent 3125796 commit f7de04e

4 files changed

Lines changed: 41 additions & 5 deletions

File tree

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
1+
Makefile.in
2+
Makefile
3+
*.o
4+
*.lo
5+
*.loT
6+
*.la
7+
*.c
8+
*.h
9+
.*.swp
10+
*.stamp
11+
*.gir
12+
*.lineno
13+
.deps
14+
.libs
15+
16+
config.*
17+
aclocal.m4
18+
autom4te.cache
19+
configure
20+
depcomp
21+
libtool
22+
install-sh
23+
missing
24+
ltmain.sh
25+
ylwrap
26+
compile
27+
stamp-h1
28+
29+
*.pc
30+
*.service
31+
*.vapi
32+
33+
build
34+
core
135
src/mdbus2
236

README

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
===========================================================
2-
mdbus 2.1.0
2+
mdbus – DBus has never been that much fun!
33
===========================================================
44

55
This utility helps you to explore and interact with DBus
@@ -19,5 +19,3 @@ that happens on the bus is monitored.
1919

2020
NOTE: Mickey's DBus Utility requires well-behaved services,
2121
i.e. those which implement the DBus introspection protocol.
22-
23-
mdbus2: DBus has never been that much fun!

TODO

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Random ideas:
2+
3+
* Colored output on terms that support it?
4+
* A GUI mode?

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ m4_define([mdbus_base_version], [2.4.0])
33
m4_define([mdbus_maybe_gitrev], m4_if(mdbus_released, [1], [], [m4_esyscmd([git show-ref --hash=5 HEAD | tr -d '\n\r'])]))
44
m4_define([mdbus_version], m4_if(mdbus_released, [1], [mdbus_base_version], [mdbus_base_version-mdbus_maybe_gitrev]))
55

6-
AC_INIT([mdbus2], mdbus_version, [smartphones-userland@linuxtogo.org], [mdbus2])
6+
AC_INIT([mdbus2], mdbus_version, [mlauer@vanille-media.de], [mdbus2])
77
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
88

99
AC_PREREQ([2.65])
@@ -52,7 +52,7 @@ AM_CONDITIONAL([HAVE_VALA], [test "x$enable_vala" = "xyes"])
5252
# Check for various dependencies
5353
#########################################################################################
5454

55-
GLIB_REQUIRED=2.26.0
55+
GLIB_REQUIRED=2.26.2
5656

5757
AC_CHECK_LIB(readline, rl_bind_key,
5858
[LIBREADLINE=-lreadline

0 commit comments

Comments
 (0)