Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • devrtz/chatty
  • agx/chatty
  • DebianOnMobile-team/chatty
3 results
Show changes
Commits on Source (12)
Showing with 32 additions and 19 deletions
((nil . ((indent-tabs-mode . nil)))
(c-mode . ((c-file-style . "Linux")
(c-basic-offset . 2)
(c-file-offsets
(brace-list-intro . +))))
(c-ts-mode . ((c-ts-mode-style . linux)
(c-ts-mode-indent-offset . 2)))
)
Overview of Changes in Chats 0.7.0. Tue, 14 February 2023
============================================================
* Matrix - Fix showing notifications
* Matrix - Avoid listing duplicate events
* Fix swipe on headerbar
Overview of Changes in Chats 0.7.0~rc5. Wed, 09 January 2023
============================================================
* Fix failing to load sessions on device boot
......
chatty (0.7.0-1) unstable; urgency=medium
* New upstream release 0.7.0
Includes fixes for
- Not showing notifications for unread messages in matrix
- Double messages in matrix
-- Evangelos Ribeiro Tzaras <devrtz-debian@fortysixandtwo.eu> Mon, 20 Feb 2023 20:03:31 +0100
chatty (0.7.0~rc5-1) unstable; urgency=medium
* New upstream release candidate 0.7.0~rc5
......
project(
'chatty', 'c', 'cpp',
version: '0.7.0.rc5',
version: '0.7.0',
meson_version: '>= 0.56.0',
)
......
......@@ -13,7 +13,6 @@ src/chatty-contact-list.c
src/chatty-clock.c
src/chatty-contact-provider.c
src/chatty-contact-provider.h
src/chatty-header-bar.c
src/chatty-history.c
src/chatty-history.h
src/chatty-fp-row.c
......@@ -70,7 +69,6 @@ src/ui/chatty-contact-row.ui
src/ui/chatty-dialog-join-muc.ui
src/ui/chatty-dialog-new-chat.ui
src/ui/chatty-file-item.ui
src/ui/chatty-header-bar.ui
src/ui/chatty-info-dialog.ui
src/ui/chatty-invite-view.ui
src/ui/chatty-ma-chat-info.ui
......
......@@ -241,7 +241,7 @@ chatty_application_open_chat (GSimpleAction *action,
g_autoptr(GString) str = NULL;
str = g_string_new (NULL);
g_string_append (str, "Opening chat:");
g_string_append_printf (str, "Opening chat (%p):", chat);
chatty_log_anonymize_value (str, room_id);
g_string_append (str, ", account:");
chatty_log_anonymize_value (str, account_id);
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-attachments-view.c
*
* Copyright 2021 Purism SPC
......@@ -30,7 +29,8 @@ struct _ChattyAttachmentsView
G_DEFINE_TYPE (ChattyAttachmentsView, chatty_attachments_view, GTK_TYPE_BOX)
static void
attachments_view_item_removed_cb (ChattyAttachmentsView *self)
attachments_view_item_removed_cb (ChattyAttachmentsView *self,
GtkWidget *child)
{
g_autoptr(GList) children = NULL;
g_assert (CHATTY_IS_ATTACHMENTS_VIEW (self));
......@@ -38,6 +38,7 @@ attachments_view_item_removed_cb (ChattyAttachmentsView *self)
if (gtk_widget_in_destruction (GTK_WIDGET (self)))
return;
g_debug ("Remove file: %p", child);
children = gtk_container_get_children (GTK_CONTAINER (self->files_box));
if (!children || (children && !children->data)) {
......@@ -108,6 +109,8 @@ chatty_attachments_view_add_file (ChattyAttachmentsView *self,
g_return_if_fail (file_path && *file_path);
child = chatty_file_item_new (file_path);
g_debug ("Add file: %p", child);
gtk_widget_show_all (child);
gtk_container_add (GTK_CONTAINER (self->files_box), child);
}
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-attachments-view.h
*
* Copyright 2021 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-avatar.c
*
* Author(s):
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-avatar.h
*
* Author(s):
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-chat-list.c
*
* Copyright 2021 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-chat-list.h
*
* Copyright 2021 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-chat-view.c
*
* Copyright 2020 Purism SPC
......@@ -415,6 +414,8 @@ chat_view_show_file_chooser (ChattyChatView *self)
g_assert (CHATTY_IS_CHAT_VIEW (self));
g_debug ("Show file chooser");
window = gtk_application_get_active_window (GTK_APPLICATION (g_application_get_default ()));
dialog = gtk_file_chooser_dialog_new (_("Select File..."),
window,
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-chat-view.h
*
* Copyright 2020 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-chat.c
*
* Copyright 2020 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-chat.h
*
* Copyright 2020 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-clock.c
*
* Copyright 2021 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-clock.h
*
* Copyright 2021 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-contact-provider.c
*
* Copyright 2020 Purism SPC
......
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
/* chatty-contact-provider.h
*
* Copyright 2020 Purism SPC
......