diff options
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | Dockerfile | 5 | ||||
-rw-r--r-- | README.md | 1 |
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 277b746..9303ec8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2020-11-04 03:16:34 ([heywoodlh](https://github.com/heywoodlh)) +- add signal + ## 2020-04-09 20:27:51 - add otr @@ -310,7 +310,6 @@ RUN echo SIGNAL=${SIGNAL} > /tmp/status \ # --- - FROM alpine:${ALPINE_VERSION} as bitlbee-plugins COPY --from=bitlbee-build /usr/sbin/bitlbee /tmp/usr/sbin/bitlbee @@ -391,10 +390,10 @@ RUN addgroup -g 101 -S bitlbee \ && source /plugins \ && if [ ${OTR} -eq 1 ]; then PKGS="${PKGS} libotr"; fi \ && if [ ${FACEBOOK} -eq 1 ] || [ ${SKYPEWEB} -eq 1 ] || [ ${HANGOUTS} -eq 1 ] \ - || [ ${ROCKETCHAT} -eq 1 ] || [ ${MATRIX} -eq 1 ]; then PKGS="${PKGS} json-glib"; fi \ + || [ ${ROCKETCHAT} -eq 1 ] || [ ${MATRIX} -eq 1 ] || [ ${SIGNAL} -eq 1 ]; then PKGS="${PKGS} json-glib"; fi \ && if [ ${STEAM} -eq 1 ] || [ ${TELEGRAM} -eq 1 ] || [ ${MATRIX} -eq 1 ]; then PKGS="${PKGS} libgcrypt"; fi \ && if [ ${TELEGRAM} -eq 1 ]; then PKGS="${PKGS} zlib libwebp libpng"; fi \ - && if [ ${HANGOUTS} -eq 1 ]; then PKGS="${PKGS} protobuf-c"; fi \ + && if [ ${HANGOUTS} -eq 1 ] || [ ${SIGNAL} -eq 1 ]; then PKGS="${PKGS} protobuf-c"; fi \ && if [ ${SIPE} -eq 1 ]; then PKGS="${PKGS} libxml2"; fi \ && if [ ${ROCKETCHAT} -eq 1 ]; then PKGS="${PKGS} discount"; fi \ && if [ ${MATRIX} -eq 1 ]; then PKGS="${PKGS} sqlite http-parser"; fi \ @@ -12,6 +12,7 @@ This docker image includes bitlbee with a bunch of useful plugins: - [rocket.chat](https://bitbucket.org/EionRobb/purple-rocketchat) - [mastodon](https://github.com/kensanata/bitlbee-mastodon) - [matrix](https://github.com/matrix-org/purple-matrix) + - [signal](https://github.com/hoehermann/libpurple-signald) The most significant being the [libpurple Slack plugin](https://github.com/dylex/slack-libpurple). As Slack is turning off its IRC gateway on May 15 2018, now is the time to spin up your own docker image and start using bitlbee instead. |