mirror of
https://github.com/profanity-im/profanity.git
synced 2024-10-27 20:30:13 -04:00
Added config dir to source
This commit is contained in:
parent
740e5b4228
commit
9d34c41227
16
Makefile.am
16
Makefile.am
@ -1,10 +1,9 @@
|
|||||||
bin_PROGRAMS = profanity
|
bin_PROGRAMS = profanity
|
||||||
profanity_SOURCES = src/contact.c src/preferences.c src/contact.h src/log.c \
|
profanity_SOURCES = src/contact.c src/contact.h src/log.c src/common.c \
|
||||||
src/preferences.h src/common.c src/contact_list.c src/log.h \
|
src/contact_list.c src/log.h src/profanity.c src/common.h \
|
||||||
src/profanity.c src/common.h src/contact_list.h src/main.c \
|
src/contact_list.h src/main.c src/profanity.h src/chat_session.c \
|
||||||
src/profanity.h src/chat_session.c src/chat_session.h src/muc.c src/muc.h \
|
src/chat_session.h src/muc.c src/muc.h src/files.c src/files.h \
|
||||||
src/theme.c src/theme.h src/files.c src/files.h src/accounts.c \
|
src/jid.h src/jid.c \
|
||||||
src/accounts.h src/jid.h src/jid.c \
|
|
||||||
src/xmpp/xmpp.h src/xmpp/capabilities.c src/xmpp/connection.c \
|
src/xmpp/xmpp.h src/xmpp/capabilities.c src/xmpp/connection.c \
|
||||||
src/xmpp/iq.c src/xmpp/message.c src/xmpp/presence.c src/xmpp/stanza.c \
|
src/xmpp/iq.c src/xmpp/message.c src/xmpp/presence.c src/xmpp/stanza.c \
|
||||||
src/xmpp/stanza.h src/xmpp/message.h src/xmpp/iq.h src/xmpp/presence.h \
|
src/xmpp/stanza.h src/xmpp/message.h src/xmpp/iq.h src/xmpp/presence.h \
|
||||||
@ -16,7 +15,10 @@ profanity_SOURCES = src/contact.c src/preferences.c src/contact.h src/log.c \
|
|||||||
src/command/parser.h \
|
src/command/parser.h \
|
||||||
src/tools/autocomplete.c src/tools/autocomplete.h \
|
src/tools/autocomplete.c src/tools/autocomplete.h \
|
||||||
src/tools/history.c src/tools/history.h \
|
src/tools/history.c src/tools/history.h \
|
||||||
src/tools/tinyurl.c src/tools/tinyurl.h
|
src/tools/tinyurl.c src/tools/tinyurl.h \
|
||||||
|
src/config/accounts.c src/config/accounts.h \
|
||||||
|
src/config/preferences.c src/config/preferences.h \
|
||||||
|
src/config/theme.c src/config/theme.h
|
||||||
|
|
||||||
TESTS = tests/testsuite
|
TESTS = tests/testsuite
|
||||||
check_PROGRAMS = tests/testsuite
|
check_PROGRAMS = tests/testsuite
|
||||||
|
@ -27,8 +27,8 @@
|
|||||||
|
|
||||||
#include "chat_session.h"
|
#include "chat_session.h"
|
||||||
|
|
||||||
|
#include "config/preferences.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "preferences.h"
|
|
||||||
|
|
||||||
#define PAUSED_TIMOUT 10.0
|
#define PAUSED_TIMOUT 10.0
|
||||||
#define INACTIVE_TIMOUT 30.0
|
#define INACTIVE_TIMOUT 30.0
|
||||||
|
@ -27,20 +27,20 @@
|
|||||||
|
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
#include "accounts.h"
|
|
||||||
#include "chat_session.h"
|
#include "chat_session.h"
|
||||||
#include "command/command.h"
|
#include "command/command.h"
|
||||||
#include "command/history.h"
|
#include "command/history.h"
|
||||||
#include "command/parser.h"
|
#include "command/parser.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "config/accounts.h"
|
||||||
|
#include "config/preferences.h"
|
||||||
|
#include "config/theme.h"
|
||||||
#include "contact.h"
|
#include "contact.h"
|
||||||
#include "contact_list.h"
|
#include "contact_list.h"
|
||||||
#include "jid.h"
|
#include "jid.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "muc.h"
|
#include "muc.h"
|
||||||
#include "preferences.h"
|
|
||||||
#include "profanity.h"
|
#include "profanity.h"
|
||||||
#include "theme.h"
|
|
||||||
#include "tools/autocomplete.h"
|
#include "tools/autocomplete.h"
|
||||||
#include "tools/tinyurl.h"
|
#include "tools/tinyurl.h"
|
||||||
#include "ui/ui.h"
|
#include "ui/ui.h"
|
||||||
|
@ -32,8 +32,8 @@
|
|||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "config/preferences.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "preferences.h"
|
|
||||||
|
|
||||||
#define PROF "prof"
|
#define PROF "prof"
|
||||||
|
|
||||||
|
@ -31,8 +31,10 @@
|
|||||||
|
|
||||||
#include "profanity.h"
|
#include "profanity.h"
|
||||||
|
|
||||||
#include "accounts.h"
|
|
||||||
#include "chat_session.h"
|
#include "chat_session.h"
|
||||||
|
#include "config/accounts.h"
|
||||||
|
#include "config/preferences.h"
|
||||||
|
#include "config/theme.h"
|
||||||
#include "command/command.h"
|
#include "command/command.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "contact.h"
|
#include "contact.h"
|
||||||
@ -40,8 +42,6 @@
|
|||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "muc.h"
|
#include "muc.h"
|
||||||
#include "preferences.h"
|
|
||||||
#include "theme.h"
|
|
||||||
#include "ui/ui.h"
|
#include "ui/ui.h"
|
||||||
#include "xmpp/xmpp.h"
|
#include "xmpp/xmpp.h"
|
||||||
|
|
||||||
|
@ -35,11 +35,11 @@
|
|||||||
|
|
||||||
#include "command/command.h"
|
#include "command/command.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "config/preferences.h"
|
||||||
|
#include "config/theme.h"
|
||||||
#include "contact_list.h"
|
#include "contact_list.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "preferences.h"
|
|
||||||
#include "profanity.h"
|
#include "profanity.h"
|
||||||
#include "theme.h"
|
|
||||||
#include "ui/ui.h"
|
#include "ui/ui.h"
|
||||||
|
|
||||||
#define _inp_win_refresh() prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1)
|
#define _inp_win_refresh() prefresh(inp_win, 0, pad_start, rows-1, 0, rows-1, cols-1)
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#include <ncurses.h>
|
#include <ncurses.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "theme.h"
|
#include "config/theme.h"
|
||||||
#include "ui/ui.h"
|
#include "ui/ui.h"
|
||||||
|
|
||||||
static WINDOW *status_bar;
|
static WINDOW *status_bar;
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "theme.h"
|
#include "config/theme.h"
|
||||||
#include "ui/ui.h"
|
#include "ui/ui.h"
|
||||||
|
|
||||||
static WINDOW *title_bar;
|
static WINDOW *title_bar;
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
#include <ncurses.h>
|
#include <ncurses.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "theme.h"
|
#include "config/theme.h"
|
||||||
#include "ui/window.h"
|
#include "ui/window.h"
|
||||||
|
|
||||||
#define CONS_WIN_TITLE "_cons"
|
#define CONS_WIN_TITLE "_cons"
|
||||||
|
@ -43,13 +43,13 @@
|
|||||||
#include "chat_session.h"
|
#include "chat_session.h"
|
||||||
#include "command/command.h"
|
#include "command/command.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "config/preferences.h"
|
||||||
|
#include "config/theme.h"
|
||||||
#include "contact.h"
|
#include "contact.h"
|
||||||
#include "contact_list.h"
|
#include "contact_list.h"
|
||||||
#include "jid.h"
|
#include "jid.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "muc.h"
|
#include "muc.h"
|
||||||
#include "preferences.h"
|
|
||||||
#include "theme.h"
|
|
||||||
#include "ui/ui.h"
|
#include "ui/ui.h"
|
||||||
#include "ui/window.h"
|
#include "ui/window.h"
|
||||||
|
|
||||||
|
@ -28,11 +28,11 @@
|
|||||||
|
|
||||||
#include "chat_session.h"
|
#include "chat_session.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "config/preferences.h"
|
||||||
#include "contact_list.h"
|
#include "contact_list.h"
|
||||||
#include "jid.h"
|
#include "jid.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "muc.h"
|
#include "muc.h"
|
||||||
#include "preferences.h"
|
|
||||||
#include "profanity.h"
|
#include "profanity.h"
|
||||||
#include "xmpp/iq.h"
|
#include "xmpp/iq.h"
|
||||||
#include "xmpp/message.h"
|
#include "xmpp/message.h"
|
||||||
|
@ -26,9 +26,9 @@
|
|||||||
#include <strophe.h>
|
#include <strophe.h>
|
||||||
|
|
||||||
#include "chat_session.h"
|
#include "chat_session.h"
|
||||||
|
#include "config/preferences.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "muc.h"
|
#include "muc.h"
|
||||||
#include "preferences.h"
|
|
||||||
#include "profanity.h"
|
#include "profanity.h"
|
||||||
#include "xmpp/message.h"
|
#include "xmpp/message.h"
|
||||||
#include "xmpp/stanza.h"
|
#include "xmpp/stanza.h"
|
||||||
|
@ -26,9 +26,9 @@
|
|||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "config/preferences.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "muc.h"
|
#include "muc.h"
|
||||||
#include "preferences.h"
|
|
||||||
#include "profanity.h"
|
#include "profanity.h"
|
||||||
#include "xmpp/capabilities.h"
|
#include "xmpp/capabilities.h"
|
||||||
#include "xmpp/stanza.h"
|
#include "xmpp/stanza.h"
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
#include <strophe.h>
|
#include <strophe.h>
|
||||||
|
|
||||||
#include "accounts.h"
|
#include "config/accounts.h"
|
||||||
#include "jid.h"
|
#include "jid.h"
|
||||||
|
|
||||||
#define JABBER_PRIORITY_MIN -128
|
#define JABBER_PRIORITY_MIN -128
|
||||||
|
Loading…
Reference in New Issue
Block a user