lp:geary

Owned by Geary Launchpad
Get this repository:
git clone https://git.not.enabled/geary

Import details

Import Status: Suspended

This repository is an import of the Git repository at https://gitlab.gnome.org/GNOME/geary.git.

Last successful import was .

Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 30 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 30 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-2 and finished taking 30 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 30 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 30 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-5 and finished taking 25 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-4 and finished taking 25 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-1 and finished taking 30 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 30 seconds — see the log
Import started on juju-98ee42-prod-launchpad-codeimport-3 and finished taking 30 seconds — see the log

Branches

Name Last Modified Last Commit
geary-0.11 2017-11-20 23:57:09 UTC
Don't compile with vala >= 0.36, it will break the composer terribly.

Author: Michael Gratton
Author Date: 2017-11-20 23:57:09 UTC

Don't compile with vala >= 0.36, it will break the composer terribly.

Bug 781220

wip/778728-split-composer 2017-10-17 07:49:21 UTC
Add new builder and source files to POTFILES.in.

Author: Michael Gratton
Author Date: 2017-10-12 02:08:32 UTC

Add new builder and source files to POTFILES.in.

wip/768431-forwarded-in-conversation 2016-07-31 03:17:21 UTC
WIP implementation to include forwarded messages in conversation.

Author: Michael Gratton
Author Date: 2016-07-31 03:17:21 UTC

WIP implementation to include forwarded messages in conversation.

There's two parts to this: First, add a References header to the
forwarded messages for the conversation they are a part of. Second, check
for matching references when querying for related messages, in addition
to in-reply-to.

This would all be well and good, except that since the References header
is a list of message ids, but it is stored in the DB as a single string,
the query has to be a substring match, which is horrifically slow.

This WIP adds an index, but it doesn't help, since SQLite only uses the
index if using GLOB or case-insensitiive ILIKE, and only if there is no
wild card at the start of the string, which we need to do. So the correct
solution would be to split the References header into its own table.

Bug 768431

* sql/CMakeLists.txt: Add new SQL migration script.

* sql/version-025.sql: Create index for MessageTable.reference_ids.

* src/client/composer/composer-widget.vala
  (ComposerWidget::ComposerWidget): Add references to outoging forwarded
  messages.

* src/engine/imap-db/imap-db-account.vala
  (Geary.ImapDB.Account::search_message_id_async): Include references in
  when searching for messages.

geary-0.6 2016-03-13 13:44:44 UTC
Updated Occitan translation

Author: Cédric VALMARY (Tot en òc)
Author Date: 2016-03-13 13:44:44 UTC

Updated Occitan translation

geary-0.8 2016-03-13 13:44:00 UTC
Added Occitan translation

Author: Cédric VALMARY (Tot en òc)
Author Date: 2016-03-13 13:44:00 UTC

Added Occitan translation

geary-0.10 2016-03-13 13:43:41 UTC
Added Occitan translation

Author: Cédric VALMARY (Tot en òc)
Author Date: 2016-03-13 13:43:41 UTC

Added Occitan translation

wip/713150-conversations 2015-11-05 20:59:10 UTC
Merge branch 'master' into wip/713150-conversations

Author: Jim Nelson
Author Date: 2015-11-05 20:59:10 UTC

Merge branch 'master' into wip/713150-conversations

wip/745561-hang 2015-03-31 00:18:26 UTC
Potential fix to hang problem

Author: Jim Nelson
Author Date: 2015-03-31 00:18:26 UTC

Potential fix to hang problem

 * Geary.Endpoint uses a 30s connect timeout and an app-specific
   activity timeout (10m in case of IMAP).
 * ClientSessionManager is refactored to avoid locking issues with
   sessions mutex.

wip/743960-split-header-3 2015-03-11 01:14:55 UTC
Display participants in subtitle of conversation header

Author: Robert Schroll
Author Date: 2015-03-04 06:21:09 UTC

Display participants in subtitle of conversation header

wip/714793-orientation2 2015-03-09 19:16:16 UTC
Remove line left over in refactoring

Author: Robert Schroll
Author Date: 2015-03-09 19:16:16 UTC

Remove line left over in refactoring

wip/743960-split-header-2 2015-03-04 06:21:09 UTC
Display participants in subtitle of conversation header

Author: Robert Schroll
Author Date: 2015-03-04 06:21:09 UTC

Display participants in subtitle of conversation header

wip/714793-orientation 2015-02-21 00:15:18 UTC
Fix version check for MAJOR_VERSION > 3

Author: Robert Schroll
Author Date: 2015-02-21 00:15:18 UTC

Fix version check for MAJOR_VERSION > 3

wip/743960-split-header 2015-02-11 07:18:50 UTC
Set title of composer headerbar segment from subject

Author: Robert Schroll
Author Date: 2015-02-11 07:18:50 UTC

Set title of composer headerbar segment from subject

wip/714802-chron 2015-01-27 00:24:36 UTC
Cleanup, candidate fix

Author: Jim Nelson
Author Date: 2015-01-27 00:24:36 UTC

Cleanup, candidate fix

wip/738188-multireplies 2015-01-14 21:18:21 UTC
Paned composer for handling multi-replies

Author: Robert Schroll
Author Date: 2015-01-14 01:06:58 UTC

Paned composer for handling multi-replies

When the user replies with a quote to a second message, the composer
moves into a paned below the conversation viewer. This makes it easy to
scroll through the conversation and select text for replies.

The Gtk.Paned acutally holds a Box, which in turn can hold many
ComposerBoxes. Only one is shown at a time, but the model used
elsewhere is that each ComposerWidget has a ComposerContainer until it
is destroyed. When a composer is closed, it hides while finishing up
asynchronous work. This allows us to hold hidden paned composers as
they finish up their work.

The logic for focus handling at detachment is moved into the
ComposerWidget from ComposerEmbed, since it may also be detached from
the paned state. ComposerContainers gain a remove_composer() method
that does the container's clean up, as well as returning the focused
widget. The ComposerWindow's remove_composer() method should never be
called.

wip/739130-focus 2014-10-28 22:48:27 UTC
Possible fix for bug

Author: Jim Nelson
Author Date: 2014-10-28 22:48:27 UTC

Possible fix for bug

wip/713872-filtering 2014-10-21 20:55:51 UTC
"messages" -> "conversations"

Author: Jim Nelson
Author Date: 2014-10-21 20:55:51 UTC

"messages" -> "conversations"

wip/712912-select-quote 2014-09-19 19:13:27 UTC
Strip quote chrome from selection when replying

Author: Robert Schroll
Author Date: 2014-09-19 06:15:15 UTC

Strip quote chrome from selection when replying

https://bugzilla.gnome.org/show_bug.cgi?id=712912

wip/714650-login-denied 2014-08-29 19:19:03 UTC
First work to differentiate btwn login denied and login failed

Author: Jim Nelson
Author Date: 2014-08-29 19:19:03 UTC

First work to differentiate btwn login denied and login failed

wip/733544-disconnect 2014-08-05 19:08:19 UTC
More bug fixing with broken connections and disconnect

Author: Jim Nelson
Author Date: 2014-08-05 19:08:19 UTC

More bug fixing with broken connections and disconnect

This does two things: (a) there was an asymmetry in the ClientSession
state machine with how client-side disconnects were handled. The
DISCONNECTING state was used in some code paths and not in others.
Analysis shows it's unnecessary. All client-side disconnects immed.
transition to BROKEN.

(b) Flushing pending commands in the replay queue was being determined
by the remote close reason. This is insufficient in the case of BYE
because it's a non-error close but, because it's initiated by the
server, pending commands should not be flushed. An additional close
flag deals with this case.

wip/713739-inline 2014-05-20 02:05:03 UTC
Don't search drafts

Author: Robert Schroll
Author Date: 2014-05-20 02:05:03 UTC

Don't search drafts

This avoids the constant resorting when replying to a conversation in
the search folder. It also avoids the problems with the inline composer
in this state.

wip/728542-special-names 2014-05-13 23:00:34 UTC
Potential fix

Author: Jim Nelson
Author Date: 2014-05-13 23:00:34 UTC

Potential fix

wip/713530-sync 2014-03-17 19:08:12 UTC
Merge branch 'master' into wip/713530-sync

Author: Jim Nelson
Author Date: 2014-03-17 19:08:12 UTC

Merge branch 'master' into wip/713530-sync

wip/721967-status-icon 2014-01-14 20:17:20 UTC
Add status icon to Geary: Refs bgo#721967

Author: Gwendal Le Bihan
Author Date: 2014-01-14 20:17:20 UTC

Add status icon to Geary: Refs bgo#721967

wip/721441-originator 2014-01-07 02:01:41 UTC
Some debug and error-checking toward fixing problems

Author: Jim Nelson
Author Date: 2014-01-07 02:01:41 UTC

Some debug and error-checking toward fixing problems

wip/714217-offline 2013-12-13 03:12:14 UTC
Finishing up on persistance/ module

Author: Jim Nelson
Author Date: 2013-12-13 03:12:14 UTC

Finishing up on persistance/ module

geary-0.4 2013-12-12 23:52:31 UTC
Bump to 0.4.3+branch

Author: Jim Nelson
Author Date: 2013-12-12 23:52:31 UTC

Bump to 0.4.3+branch

wip/713034-alert-layout 2013-09-26 02:22:33 UTC
Merged from github, some alterations

Author: Jim Nelson
Author Date: 2013-09-26 02:22:33 UTC

Merged from github, some alterations

Can't take submessages (helpful message) because we're past
string freeze. "No conversations selected" is never displayed.

wip/713969-expunge 2013-09-24 00:15:51 UTC
Merge branch 'master' into bug/7512-expunge

Author: Jim Nelson
Author Date: 2013-09-24 00:15:51 UTC

Merge branch 'master' into bug/7512-expunge

wip/713089-context-menu-hide 2013-06-21 19:29:39 UTC
Close context menu in conversation list when the message disappears

Author: Eric Gregory
Author Date: 2013-06-21 19:29:39 UTC

Close context menu in conversation list when the message disappears

geary-0.3 2013-04-09 21:51:44 UTC
Merge branch 'master' into geary-0.3

Author: Charles Lindsay
Author Date: 2013-04-09 21:51:44 UTC

Merge branch 'master' into geary-0.3

Conflicts:
 CMakeLists.txt

geary-0.2 2012-10-18 23:37:57 UTC
Version 0.2.2+branch

Author: Jim Nelson
Author Date: 2012-10-18 23:37:57 UTC

Version 0.2.2+branch

101132 of 132 results
This repository contains Public information 
Everyone can see this information.