0.10.0 (2021-01-09) ===== Six months and 270 commits after 0.9.5 we are happy to release 0.10.0. 10 people contributed code to it: @wstrm, @DebXWoody, @pasis, @niacat, @kaffeekanne, @timgates42, @spth, @licaon-kter, @misaflo and @jubalh. Thanks a lot to our sponsors: @mdosch, @wstrm, @huhndev and one person who wants to stay anonymous. If you want to support us too: https://profanity-im.github.io/donate.html This release depends on: - libstrophe/libmesode >= 0.10.0. - glib >= 2.62.0 - sqlite >= 3.22.0 - gtk3 >= 3.24 or gtk2 >= 2.24.10 The goal for this release was mostly internal cleanup, like announced in the 0.10.0 roadmap: https://lists.notraces.net/pipermail/profanity/2020/000018.html There was also some undercover work done for MAM (XEP-0313). Changes: - Code cleanup - Several memory leaks fixed (b45384, #805, #1416, #1427) - Handle headline stanza (#1366) - By default log only WARN not INFO (#1353) - Fix OMEMO: check for current item (#1384) - Fix request OMEMO device id (#1332) - Add experimental OX (XEP-0373, XEP-0374) support (#1331) - Add clang format file for uniform coding style (#1396) - Add contributing guidelines (#1397) - Dont highlight console once all messages have been read (#1399) - New setting: Only highlight in console upon MUC mention (#1371) `/console muc mention` - Remove `/tiny` command (#1370) - Fix `/lastactivity` behaviour (#1411) - Fix `/correct` quotation marks usage (#1404) - Parse Stable Stanza IDs (XEP-0359) (#1207) (#660) - Only insert new messages in database (c9b154) (#660) - Support both gtk2 and gtk3 (05d19c) - Update gruvbox theme (#1421) - Add NetBSD support (#1424) - Fix uninitialized field in bookmarks (#1432) - Don't link functional tests against tcl (da513a) - Fix date format for MAM requests (15f45f) - Print error stanzas (#1435) - Add man pages for each profanity command (#1444) - Fix chatlogs for outgoing carbons (#1439) - Add OMEMO media sharing support (#1375) See `/help sendfile` `/help executable` - Expand trackbar to whole line (#1448) - Set default color for trackbar (#1453) - Log incoming carbons (#1446) - Use whole path as logfile when defined via -f (#1442) `profanity -f ~/mylog` - Fix color for outgoing messages when no receipts are enabled (#1441) - Set input window size to max window size (#1458) - For details see: https://github.com/profanity-im/profanity/milestone/20 0.9.5 (2020-07-01) ===== Changes: - Fix segfault in `/theme properties` due to uninitialized `titlebar.scrollable` (#1380) 0.9.4 (2020-06-24) ===== Changes: - Fix NULL terminated list (#1367) - Add missing string.h (#1372) (@pasis) - Fix gcc warnings for cygwin (#1373) (@pasis) 0.9.3 (2020-06-19) ===== Changes: - Fix expansion in eval_password (#1364) 0.9.2 (2020-06-13) ===== Changes: - Dont manipulate pointer from getenv (#1357) - Fix reading/writing linked files (#1362) - Use gnu99 C standard (#1357) 0.9.1 (2020-06-11) ===== This release depends on libstrophe 0.9.3 only if you want to have legacy authentication. Otherwise you can still use libstrophe 0.9.2. Changes: - Make legacy auth optional (#1360) (@pasis) 0.9.0 (2020-06-09) ===== Four months and 350 commits after 0.8.1 we are happy to release 0.9.0. 7 people contributed code to it: @pasis, @wstrm, @DebXWoody, @toogley, @pmaziere, @moppman and @jubalh. Thanks a lot to our sponsors: @mdosch and @wstrm! If you want to support us too: https://profanity-im.github.io/donate.html This release depends on li
#
# /etc/rc.d/postgresql: start, stop or restart PostgreSQL server postmaster
#
PG_DATA=/srv/pgsql/data
case "$1" in
start|stop|status|restart|reload)
sudo -u postgres pg_ctl -D "$PG_DATA" -l /var/log/postgresql "$1"
;;
*)
echo "usage: $0 start|stop|restart|reload|status"
;;
esac
# End of file