Package Details: emerald-git 0.8.14.r18.g93e490c-1

Git Clone URL: https://aur.archlinux.org/emerald-git.git (read-only, click to copy)
Package Base: emerald-git
Description: Emerald window decorator
Upstream URL: https://gitlab.com/compiz/emerald
Licenses: GPL
Groups: compiz-fusion, compiz-fusion-gtk, compiz-fusion-kde
Conflicts: emerald, emerald0.9
Provides: emerald
Submitter: ShadowKyogre
Maintainer: ShadowKyogre (isseigx)
Last Packager: ShadowKyogre
Votes: 7
Popularity: 0.000000
First Submitted: 2015-12-15 04:01 (UTC)
Last Updated: 2018-06-05 04:19 (UTC)

Latest Comments

1 2 Next › Last »

ShadowKyogre commented on 2019-08-22 18:48 (UTC)

Hey everyone.

Requesting for comaintainers on this package since there's been several circumstances that happened that make it hard to maintain all the packages I normally attend to.

See

https://lists.archlinux.org/pipermail/aur-general/2019-August/035332.html

for more information.

If you're interested in co-maintaining, don't forget to leave a comment (or email me, or toot me on Mastodon).

ShadowKyogre commented on 2017-04-04 20:30 (UTC)

Tidied the dependencies to remove an extraneous gtk2 dependency when libwnck already pulls it in. Also pushed a gtk3 build of this under the package name emerald-gtk3-git.

applebloom commented on 2016-01-05 12:53 (UTC)

Ya, it works. Should've checked this more thoroughly. Thanks.

ShadowKyogre commented on 2016-01-04 22:48 (UTC)

@applebloom, @Shemhamforash: Fix for segfault patch is now pushed upstream!

Terrowin commented on 2016-01-02 23:08 (UTC)

@ShadowKyogre Applied the patch and no segfault, everything working.

ShadowKyogre commented on 2016-01-02 18:41 (UTC)

@applebloom: Tested patch. There were some instances where gtk_combo_box_text_new_with_entry() wasn't the ideal widget to replace the deprecated gtk_combo_box_new_text() call. However, there is a gtk_combo_box_text_new () to replace gtk_combo_box_new_text() calls when we don't need a textbox alongside the spinbox. This is crucial for parts where there are limited choices. @applebloom, @Shemhamforash: https://ptpb.pw/rkvp.patch here's a revised version of the patch mentioned in the previous comments ( https://ptpb.pw/rkvp/diff for online viewing ). Could both of you please test the revised patch before I include it in the PKGBUILD?

ShadowKyogre commented on 2016-01-02 18:18 (UTC)

@applebloom: Awesome! Be sure to stop by #compiz on freenode to submit the patch so it makes it upstream. Ideally, it should be formatted with git format-patch -1 to retain authorship and notes when writing the patch. Until then, I'll include the patch in the PKGBUILD until it makes it upstream.

applebloom commented on 2016-01-01 10:30 (UTC)

I had the same problem and solved it by replacing every instance of gtk_combo_box_new_text (which is marked as deprecated) with gtk_combo_box_text_new_with_entry. Patch: http://sprunge.us/WReN

Terrowin commented on 2015-12-30 02:45 (UTC)

@ShadowKyogre OK, here is the output of gdb: https://ptpb.pw/6VKx

ShadowKyogre commented on 2015-12-30 02:26 (UTC) (edited on 2015-12-30 02:31 (UTC) by ShadowKyogre)

@Shemhamforash: Peculiar. It's segfaulting when attempting to add to the combobox entry for the titlebar. Can you do the following to check the value the combobox widget address? * Run `gdb path/to/emerald-theme-manager` * Now type in the prompt `b main.c:801`. This should set a breakpoint just before it segfaults. * Repeat previous step for lines 793, 787, and 781 to set breakpoints there. The variable junk is used there to hold references to the current widget that's being added to the layout. * Type in the prompt `run` * When you get to the breakpoint, type `p junk`. This will print the value of junk. * Type 'c' to continue past the breakpoint * Repeat the previous two steps until you've passed all the break points and printed the value of junk at each breakpoint * Copy the output of gdb and paste it here/in a pastebin