summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Contact: use const string[] for sorted properties.Niels De Graef2018-02-131-1/+1
|
* Extract ImService to a separate file.Niels De Graef2018-02-136-44/+76
| | | | Thanks to al from #vala for troubleshooting with some building issues!
* Update Indonesian translationKukuh Syafaat2018-02-101-28/+53
|
* Update Turkish translationEmin Tufan Çetin2018-02-101-103/+96
|
* Update Friulian translationFabio Tomat2018-02-091-3/+3
|
* Update Friulian translationFabio Tomat2018-02-091-27/+51
|
* Update Brazilian Portuguese translationEnrico Nicoletto2018-02-091-220/+312
|
* Merge branch 'bugfix/issue_78' into 'master'Niels De Graef2018-02-082-0/+9
|\ | | | | | | | | | | | | ContactPane: Update right titlebar after editing contact Closes #78 See merge request GNOME/gnome-contacts!3
| * ContactPane: Update right titlebar after editing contactFrank Zschage2018-02-062-0/+9
| | | | | | | | introduced a signal display_name_changed to notify listeners and especially to update the right titlebar after the name of a contact has been changed to fix issue #78
* | Update Polish translationPiotr Drąg2018-02-081-201/+251
| |
* | Update Finnish translationJiri Grönroos2018-02-061-28/+51
|/
* Release unstable version 3.27.90.3.27.90Niels De Graef2018-02-052-1/+16
|
* Update bugtracker to point to GitLab.Niels De Graef2018-02-052-2/+2
|
* Allow sorting by first name or surname.Niels De Graef2018-02-057-15/+143
| | | | Fixes #54.
* Update Friulian translationFabio Tomat2018-02-041-118/+137
|
* Update Swedish translationAnders Jonsson2018-02-031-203/+281
|
* Update Finnish translationJiri Grönroos2018-02-031-121/+138
|
* Update Indonesian translationKukuh Syafaat2018-02-031-249/+230
|
* Update Catalan translationGil Forcada2018-02-021-198/+278
|
* Update Hungarian translationBalázs Úr2018-01-261-206/+246
|
* CI: Don't build man pages.Niels De Graef2018-01-251-1/+1
|
* Add GitLab CI support.Niels De Graef2018-01-251-0/+29
|
* Update Spanish translationDaniel Mustieles2018-01-251-130/+141
|
* README.md: update after migrating to GitLab.Niels De Graef2018-01-241-17/+12
|
* Update German translationTim Sabsch2018-01-241-13/+11
|
* Avatar: Contact.individual is never null.Niels De Graef2018-01-241-2/+1
|
* Avatar: unnecessary Cairo save() and restore()Niels De Graef2018-01-241-4/+0
|
* Store: don't use lambda for individuals_changed_detailed.Niels De Graef2018-01-231-67/+69
| | | | | It makes it so much harder to debug, and it's way too long, making the construct block hard to follow.
* ContactList: don't use a separate map for contacts.Niels De Graef2018-01-231-17/+17
|
* ContactList: simplify sorting function.Niels De Graef2018-01-231-14/+5
| | | | | | Individual.display_name is never null. Also, refrain from using trivial anonymous lambdas, for easier debugging.
* ContactList: right-click == checkbox toggle in selection mode.Niels De Graef2018-01-221-1/+1
| | | | | This, together with the previous commit, fixes [bug 703201](https://bugzilla.gnome.org/show_bug.cgi?id=703201).
* ContactList: start select mode on right click.Niels De Graef2018-01-221-1/+13
|
* Center: remove xalign.Niels De Graef2018-01-222-7/+1
| | | | It's not used (and shouldn't be, we have halign for that).
* Don't use anonymous lambdas if not necessary.Niels De Graef2018-01-223-6/+6
| | | | | This is effectively a function call less, *and* it's easier to debug in a stracktrace if necessary.
* Avatar: don't add a class style context.Niels De Graef2018-01-222-6/+0
| | | | | It won't work with the drawing area, so don't bother with all that extra code.
* ListPane: don't put the filter_entry in a toolbarNiels De Graef2018-01-222-36/+8
|
* LinkedAccountsDialog: use GtkTemplate.Niels De Graef2018-01-227-61/+83
| | | | | Also rename to LinkedPersonasDialog, and use the coding conventions a bit more.
* LinkedAccountsDialog: contact name is not translatableNiels De Graef2018-01-221-1/+1
|
* Update German translationMario Blättermann2018-01-221-136/+149
|
* Window: ngettext call should be correct this time.Niels De Graef2018-01-221-1/+1
| | | | | This is what happens on a shortage of coffee. Thanks again Piotr!
* Window: do the ngettext thing properly this time.Niels De Graef2018-01-221-3/+6
| | | | Again, big thanks to Piotr Drąg for his feedback.
* Window: reinstate ngettext() for delete notification.Niels De Graef2018-01-221-2/+3
| | | | Kudos to Piotr Drąg for spotting this so quickly.
* Avatar: lazily load the Pixbuf of the avatar.Niels De Graef2018-01-227-44/+39
| | | | This should again decrease our memory usage in most cases.
* Contact: Remove display_name property.Niels De Graef2018-01-2210-23/+19
| | | | | It's just a shorthand for `individual.display_name`, so make that more explicit.
* ContactList: set visible = true earlier.Niels De Graef2018-01-221-2/+1
| | | | This makes sure we don't show an empty list as contacts are being added.
* ContactDataRow: prevent display name from "twitching".Niels De Graef2018-01-221-7/+9
| | | | | | Every time we hover over a row in the ContactList, it adds a checkbox. However, this made the display name of the contact change position a tiny bit, making it "twitch" a little bit.
* Window: disable edit buttons after canceling the creation a new contact.Niels De Graef2018-01-221-2/+2
|
* Window: use a single function for contact deletion.Niels De Graef2018-01-222-43/+18
| | | | This removes some copy-pasta.
* Window: add tooltips to icon buttons.Niels De Graef2018-01-212-3/+5
|
* Store: remove unused is_empty()Niels De Graef2018-01-211-8/+0
|