-
Notifications
You must be signed in to change notification settings - Fork 714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a new version of python psutil #12
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Ignas Anikevicius <[email protected]>
philb
pushed a commit
that referenced
this pull request
Jul 8, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Jul 15, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Jul 15, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Jul 16, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Jul 27, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Jul 29, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Jul 30, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 3, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 17, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 18, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 18, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 20, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 24, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 24, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 27, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Aug 31, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
philb
pushed a commit
that referenced
this pull request
Sep 14, 2015
the patch comes from: https://bugs.launchpad.net/ubuntu/+source/netkit-telnet/+bug/507455 https://launchpadlibrarian.net/37882973/0001-telnetd-Fix-deadlock-on-cleanup.patch The cleanup function in telnetd is called both directly and on SIGCHLD signals. This, unfortunately, triggered a deadlock in eglibc 2.9 while running on a 2.6.31.11 kernel. What we were seeing is hangs like these: (gdb) bt #0 0xb7702424 in __kernel_vsyscall () #1 0xb7658e61 in __lll_lock_wait_private () from ./lib/libc.so.6 #2 0xb767e7b5 in _L_lock_15 () from ./lib/libc.so.6 #3 0xb767e6e0 in utmpname () from ./lib/libc.so.6 #4 0xb76bcde7 in logout () from ./lib/libutil.so.1 #5 0x0804c827 in cleanup () #6 <signal handler called> #7 0xb7702424 in __kernel_vsyscall () #8 0xb7641003 in __fcntl_nocancel () from ./lib/libc.so.6 #9 0xb767e0c3 in getutline_r_file () from ./lib/libc.so.6 #10 0xb767d675 in getutline_r () from ./lib/libc.so.6 #11 0xb76bce42 in logout () from ./lib/libutil.so.1 #12 0x0804c827 in cleanup () #13 0x0804a0b5 in telnet () #14 0x0804a9c3 in main () and what has happened here is that the user closes the telnet session via the escape character. This causes telnetd to call cleanup in frame the SIGCHLD signal is delivered while telnetd is executing cleanup. Telnetd then calls the signal handler for SIGCHLD, which is cleanup(). Ouch. The actual deadlock is in libc. getutline_r in frame #10 gets the __libc_utmp_lock lock, and utmpname above does the same thing in frame The fix registers the SIGCHLD handler as cleanup_sighandler, and makes cleanup disable the SIGCHLD signal before calling cleanup_sighandler. Signed-off-by: Simon Kagstrom <[email protected]> Signed-off-by: Li Wang <[email protected]> Signed-off-by: Martin Jansa <[email protected]>
Please read README and send patches to [email protected] for review. |
halstead
pushed a commit
that referenced
this pull request
Apr 13, 2018
WARNING: hddtemp-0.3-beta15-r1 do_patch: Some of the context lines in patches were ignored. This can lead to incorrectly applied patches. The context lines in the patches can be updated with devtool: devtool modify <recipe> devtool finish --force-patch-refresh <recipe> <layer_path> Then the updated patches and the source tree (in devtool's workspace) should be reviewed to make sure the patches apply in the correct place and don't introduce duplicate lines (which can, and does happen when some of the context is ignored). Further information: http://lists.openembedded.org/pipermail/openembedded-core/2018-March/148675.html https://bugzilla.yoctoproject.org/show_bug.cgi?id=10450 Details: Applying patch hddtemp_0.3-beta15-52.diff patching file doc/hddtemp.8 patching file po/fr.po patching file po/ru.po patching file po/sv.po patching file po/pt.po patching file po/de.po patching file po/LINGUAS patching file po/hddtemp.pot patching file src/sata.c patching file src/satacmds.c patching file src/backtrace.c patching file src/daemon.c patching file src/hddtemp.c Hunk #5 succeeded at 268 with fuzz 2 (offset 4 lines). Hunk #6 succeeded at 283 (offset 4 lines). Hunk #7 succeeded at 295 (offset 4 lines). Hunk #8 succeeded at 372 (offset 4 lines). Hunk #9 succeeded at 409 (offset 4 lines). Hunk #10 succeeded at 483 (offset 4 lines). Hunk #11 succeeded at 496 (offset 4 lines). Hunk #12 succeeded at 510 (offset 4 lines). Hunk #13 succeeded at 532 (offset 4 lines). patching file src/ata.c patching file src/hddtemp.h patching file src/scsicmds.c Now at patch hddtemp_0.3-beta15-52.diff Signed-off-by: Armin Kuster <[email protected]>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 3, 2021
Release notes for 1.9.8 ======================= - Fix dialog icons and add title to error dialog - Go back to actions dialog if image upload fails (openembedded#12) - Go back to actions dialog if GtkFileChooser is dismissed (openembedded#33) - Make radio buttons execute actions on enter/space press - Exclude shadow borders from CSD windows (!10) - Capture mouse cursor in rectangle selection (openembedded#30) - Region size should show updated size (!9) - Add info about Ctrl to "Select region" tooltip - Replace AC_CONFIG_MACRO_DIR with AC_CONFIG_MACRO_DIRS (!4) - Added 24px and 32px icons - Fix screenshot capture when scale > 1 - Add new App icon and switch to rDNS icon name - Switch to README.md and foreign automake mode - Bug #16717: Move from exo-csource to xdt-csource - Update homepage link at appdata.xml - Translation Updates: Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese Signed-off-by: Andreas Müller <[email protected]>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 3, 2021
Release notes for 2.5.1 ======================= - Fix not always using new action icons. (Issue openembedded#33) Release notes for 2.5.0 ======================= - Add option to show all applications by default. (Issue openembedded#4) - Rearrange sidebar buttons to match default category. (Issue openembedded#9) - Show panel button title as tooltip in icon-only mode. (Issue openembedded#12) - Always sort top-level categories. - Vertically center contents of header. - Use new Xfce action icons. - Use new desktop ids for default programs. - Rewrite to hide menu on focus out. - Refactor code to use new Xfce functions. - Refactor building translations. - Translation updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Esperanto, French, Galician, German, Italian, Korean, Lithuanian, Malay, Polish, Portuguese, Portuguese (Brazil), Slovak, Spanish, Swedish, Turkish. Signed-off-by: Andreas Müller <[email protected]>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 3, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 3, 2021
Release notes for 1.9.8 ======================= - Fix dialog icons and add title to error dialog - Go back to actions dialog if image upload fails (openembedded#12) - Go back to actions dialog if GtkFileChooser is dismissed (openembedded#33) - Make radio buttons execute actions on enter/space press - Exclude shadow borders from CSD windows (!10) - Capture mouse cursor in rectangle selection (openembedded#30) - Region size should show updated size (!9) - Add info about Ctrl to "Select region" tooltip - Replace AC_CONFIG_MACRO_DIR with AC_CONFIG_MACRO_DIRS (!4) - Added 24px and 32px icons - Fix screenshot capture when scale > 1 - Add new App icon and switch to rDNS icon name - Switch to README.md and foreign automake mode - Bug #16717: Move from exo-csource to xdt-csource - Update homepage link at appdata.xml - Translation Updates: Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 3, 2021
Release notes for 2.5.1 ======================= - Fix not always using new action icons. (Issue openembedded#33) Release notes for 2.5.0 ======================= - Add option to show all applications by default. (Issue openembedded#4) - Rearrange sidebar buttons to match default category. (Issue openembedded#9) - Show panel button title as tooltip in icon-only mode. (Issue openembedded#12) - Always sort top-level categories. - Vertically center contents of header. - Use new Xfce action icons. - Use new desktop ids for default programs. - Rewrite to hide menu on focus out. - Refactor code to use new Xfce functions. - Refactor building translations. - Translation updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Esperanto, French, Galician, German, Italian, Korean, Lithuanian, Malay, Polish, Portuguese, Portuguese (Brazil), Slovak, Spanish, Swedish, Turkish. Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 4, 2021
Release notes for 1.9.8 ======================= - Fix dialog icons and add title to error dialog - Go back to actions dialog if image upload fails (openembedded#12) - Go back to actions dialog if GtkFileChooser is dismissed (openembedded#33) - Make radio buttons execute actions on enter/space press - Exclude shadow borders from CSD windows (!10) - Capture mouse cursor in rectangle selection (openembedded#30) - Region size should show updated size (!9) - Add info about Ctrl to "Select region" tooltip - Replace AC_CONFIG_MACRO_DIR with AC_CONFIG_MACRO_DIRS (!4) - Added 24px and 32px icons - Fix screenshot capture when scale > 1 - Add new App icon and switch to rDNS icon name - Switch to README.md and foreign automake mode - Bug #16717: Move from exo-csource to xdt-csource - Update homepage link at appdata.xml - Translation Updates: Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 4, 2021
Release notes for 2.5.1 ======================= - Fix not always using new action icons. (Issue openembedded#33) Release notes for 2.5.0 ======================= - Add option to show all applications by default. (Issue openembedded#4) - Rearrange sidebar buttons to match default category. (Issue openembedded#9) - Show panel button title as tooltip in icon-only mode. (Issue openembedded#12) - Always sort top-level categories. - Vertically center contents of header. - Use new Xfce action icons. - Use new desktop ids for default programs. - Rewrite to hide menu on focus out. - Refactor code to use new Xfce functions. - Refactor building translations. - Translation updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Esperanto, French, Galician, German, Italian, Korean, Lithuanian, Malay, Polish, Portuguese, Portuguese (Brazil), Slovak, Spanish, Swedish, Turkish. Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 4, 2021
Release notes for 1.9.8 ======================= - Fix dialog icons and add title to error dialog - Go back to actions dialog if image upload fails (openembedded#12) - Go back to actions dialog if GtkFileChooser is dismissed (openembedded#33) - Make radio buttons execute actions on enter/space press - Exclude shadow borders from CSD windows (!10) - Capture mouse cursor in rectangle selection (openembedded#30) - Region size should show updated size (!9) - Add info about Ctrl to "Select region" tooltip - Replace AC_CONFIG_MACRO_DIR with AC_CONFIG_MACRO_DIRS (!4) - Added 24px and 32px icons - Fix screenshot capture when scale > 1 - Add new App icon and switch to rDNS icon name - Switch to README.md and foreign automake mode - Bug #16717: Move from exo-csource to xdt-csource - Update homepage link at appdata.xml - Translation Updates: Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese Signed-off-by: Andreas Müller <[email protected]>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 4, 2021
Release notes for 2.5.1 ======================= - Fix not always using new action icons. (Issue openembedded#33) Release notes for 2.5.0 ======================= - Add option to show all applications by default. (Issue openembedded#4) - Rearrange sidebar buttons to match default category. (Issue openembedded#9) - Show panel button title as tooltip in icon-only mode. (Issue openembedded#12) - Always sort top-level categories. - Vertically center contents of header. - Use new Xfce action icons. - Use new desktop ids for default programs. - Rewrite to hide menu on focus out. - Refactor code to use new Xfce functions. - Refactor building translations. - Translation updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Esperanto, French, Galician, German, Italian, Korean, Lithuanian, Malay, Polish, Portuguese, Portuguese (Brazil), Slovak, Spanish, Swedish, Turkish. Signed-off-by: Andreas Müller <[email protected]>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 4, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 4, 2021
Release notes for 1.9.8 ======================= - Fix dialog icons and add title to error dialog - Go back to actions dialog if image upload fails (openembedded#12) - Go back to actions dialog if GtkFileChooser is dismissed (openembedded#33) - Make radio buttons execute actions on enter/space press - Exclude shadow borders from CSD windows (!10) - Capture mouse cursor in rectangle selection (openembedded#30) - Region size should show updated size (!9) - Add info about Ctrl to "Select region" tooltip - Replace AC_CONFIG_MACRO_DIR with AC_CONFIG_MACRO_DIRS (!4) - Added 24px and 32px icons - Fix screenshot capture when scale > 1 - Add new App icon and switch to rDNS icon name - Switch to README.md and foreign automake mode - Bug #16717: Move from exo-csource to xdt-csource - Update homepage link at appdata.xml - Translation Updates: Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 4, 2021
Release notes for 2.5.1 ======================= - Fix not always using new action icons. (Issue openembedded#33) Release notes for 2.5.0 ======================= - Add option to show all applications by default. (Issue openembedded#4) - Rearrange sidebar buttons to match default category. (Issue openembedded#9) - Show panel button title as tooltip in icon-only mode. (Issue openembedded#12) - Always sort top-level categories. - Vertically center contents of header. - Use new Xfce action icons. - Use new desktop ids for default programs. - Rewrite to hide menu on focus out. - Refactor code to use new Xfce functions. - Refactor building translations. - Translation updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Esperanto, French, Galician, German, Italian, Korean, Lithuanian, Malay, Polish, Portuguese, Portuguese (Brazil), Slovak, Spanish, Swedish, Turkish. Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 5, 2021
Release notes for 1.9.8 ======================= - Fix dialog icons and add title to error dialog - Go back to actions dialog if image upload fails (openembedded#12) - Go back to actions dialog if GtkFileChooser is dismissed (openembedded#33) - Make radio buttons execute actions on enter/space press - Exclude shadow borders from CSD windows (!10) - Capture mouse cursor in rectangle selection (openembedded#30) - Region size should show updated size (!9) - Add info about Ctrl to "Select region" tooltip - Replace AC_CONFIG_MACRO_DIR with AC_CONFIG_MACRO_DIRS (!4) - Added 24px and 32px icons - Fix screenshot capture when scale > 1 - Add new App icon and switch to rDNS icon name - Switch to README.md and foreign automake mode - Bug #16717: Move from exo-csource to xdt-csource - Update homepage link at appdata.xml - Translation Updates: Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 5, 2021
Release notes for 2.5.1 ======================= - Fix not always using new action icons. (Issue openembedded#33) Release notes for 2.5.0 ======================= - Add option to show all applications by default. (Issue openembedded#4) - Rearrange sidebar buttons to match default category. (Issue openembedded#9) - Show panel button title as tooltip in icon-only mode. (Issue openembedded#12) - Always sort top-level categories. - Vertically center contents of header. - Use new Xfce action icons. - Use new desktop ids for default programs. - Rewrite to hide menu on focus out. - Refactor code to use new Xfce functions. - Refactor building translations. - Translation updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Esperanto, French, Galician, German, Italian, Korean, Lithuanian, Malay, Polish, Portuguese, Portuguese (Brazil), Slovak, Spanish, Swedish, Turkish. Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 6, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 6, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 6, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 6, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <[email protected]> Signed-off-by: Khem Raj <[email protected]>
schnitzeltony
added a commit
to schnitzeltony/meta-openembedded
that referenced
this pull request
Jan 7, 2021
GTK2 libs are gone so extra GRK2/GTK3 packages can go Release notes for 4.16.0 ======================== - about: Harmonize capitalisation - Update credits for Xfce 4.16 - Translation Updates: Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Serbian Release notes for 4.15.7 ======================== [Please note that this is a development release.] - libxfce4ui now needs libxfce4util >= 4.15.6 - Update configure.ac.in syntax - Namespace of the gir needs capital first letter - Remove hardcoded translators list - Bump libepoxy version to 1.2 - Translation Updates: Portuguese (Brazil), Slovenian, Swedish Release notes for 4.15.6 ======================== [Please note that this is a development release.] - Introduce xfce_spawn and xfce_spawn_command_line in favor and instead of xfce_spawn_no_child - Bump GLib (and gio, gthread, etc) minimum to 2.50.0 - about: Support multiple GPUs and print GPU memory size - about: Drop window subtitle - Always perform sanity check - Avoid checking for epoxy if libgtop is disabled - XfceTitledDialog: Fix erroneous check (Fixes openembedded#30) - No startup notification in Wayland to prevent crash (Issue openembedded#17) - Translation Updates: Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew, Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish Release notes for 4.15.5 ======================== [Please note that this is a development release.] - Add new API xfce_spawn_no_child (!8): Launch processes re-parenting them to init vs. as children - about: Fix icon names - about: Display userspace bitness if it differs from OS kernel bitness - about: Print GPU name in system info - about: Use more understandable arch labels (Issue openembedded#27) - Improve xfce_icon_name API - No startup notification in wayland to prevent crash (Issue openembedded#17) - Add missing docstring - Fix typos - Add README.md to EXTRA_DIST - Translation Updates: Catalan, Chinese (China), Danish, Galician, German, Italian, Lithuanian, Turkish Release notes for 4.15.4 ======================== This is a development release of libxfce4ui aiming the upcoming release of Xfce 4.16. - Avoid redundant key re-grabbing - Adds new README.md and updates AM_INIT_AUTOMAKE - Silence compiler warnings (Fixes openembedded#25) - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS - Add default shortcuts for tiling (Fixes openembedded#4) - Avoid shortening the keycodes GArray while walking it. - about: Revamp About Xfce tab - about: More icon name fixes - Add more logo icons and new about icon - Update deprecated icon names - keyboard-shortcuts: Improve UI for setting shortcuts - shortcut-dialog: Add label to clear button - shortcut-dialog: Port to new XfceTitledDialog API - shortcut-dialog: Only grab keyboard - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes openembedded#20) - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh Release notes for 4.15.3 ======================== [Please note that this is a development release.] - Update bug URLs to point to gitlab.xfce - xfce-about: Hide empty email address tags (Fixes openembedded#12) - Remove translator email address as per request (Fixes openembedded#11) - Add missing translator "Hugo Carvalho" to xfce4-about (issue openembedded#18) - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes openembedded#15) - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes openembedded#16) - Add basic GitLab pipeline - Allow more granular control over menu item accelerators. - No automatic accelerator activation formenu items - Added 'gtk_menu_item_set_accel_label' - Added 'xfce_gtk_accel_group_connect_action_entries' - renamed 'xfce_gtk_accel_group_append' to 'xfce_gtk_accel_map_add_entries' and modified internals accordingly. No automatic add to an accel_group any more, since this may lead to double-activation in some cases. - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to revert "xfce_gtk_accel_group_connect_action_entries" - Add title to xfce_dialog_confirm_close_tabs - Add new methods to libxfce4ui.symbols. Followup of 231e57daccb5946379f413ed440629c32025f6f3 - Translation Updates: Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English (Australia), English (United Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Uighur, Ukrainian, Welsh Release notes for 4.15.2 ======================== [Please note that this is a development release.] - Introduced 'XfceGtkActionEntry' as replacement for the deprecated 'GtkAction', 'GtkActionEntry' in order to keep simple menu creation. This includes various support methods, like: 'xfce_gtk_translate_action_entries' to to translate a list of XfceGtkActionEntrys 'xfce_gtk_accel_group_append' to register the provided accelerators of the entries 'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. by using a enumeration 'xfce_gtk_***_new_from_action_entry' to create the specific menu- or tool-items from an XfceGtkActionEntry - Add a widget for filename input (Bug #16542) - Enabled doc generation for XfceGtkActionEntry and related methods - Enabled doc generation for new widget 'xfce-filename-input' - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979) - Add more default keyboard shortcuts (Bug #16470) - shortcuts: Replace xfrun4 by xfce4-appfinder - shortcuts: Also map Homepage to browser - shortcuts: Remove calculator shortcut - Update gitignore - Translation Updates: Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan), Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian, Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Ukrainian Release notes for 4.15.1 ======================== This release introduces the following features: - Switch XfceTitledDialog to headerbar/CSD layout - Use GtkMessageDialog as base class for Xfce Dialogs - Add two new functions to search for app icons - Improve Tests and Docs Full changelog: - Switch XfceTitledDialog to headerbar layout - XfceTitledDialog: Keep buttons in the action area - XfceTitledDialog: Also repack xfce_titled_dialog_new - XfceTitledDialog: Make sure windows can be dragged - XfceTitledDialog: Add _create_action_area, _add_button and _add_action_widget - Introduce xfce_titled_dialog_set_default_response - Mark xfce_titled_dialog_new_with_buttons as deprecated - Add two new functions to search for app icons - xfce-about: Fix Makefile - shortcut-dialog: Show dialog content (Bug #16338) - xfce-dialogs: Use GtkMessageDialog as base class - xfce-dialogs: Improve layout of confirm_close_tabs - xfce-dialogs: Improve alignment and layout of dialogs - xfce-dialogs: Add right margin back to labels - xfce-dialogs: Drop default window titles - docs: Add xfce_dialog_confirm_close_tabs - tests: Add xfce_dialog_confirm_close_tabs - tests: Improve UI - tests: Add icons to dialog buttons - tests: Simplify code by using XfceTitledDialog - tests: Re-order buttons - tests: Fix typo in test-ui.c (Bug #16253) - Rename test-ui-gtk3 to test-ui - Improve docstrings - Fix typos - Drop gladeui Gtk2 from distcheck options - Drop unused declaration - Fix compiler warnings - Remove trailing whitespace - Always provides needed files for vala binding in dist tarball - Add recents functions to libxfce4ui.symbols - Drop xfce-header from pot files - Update docstrings - Fix license text box too small (Bug #16259) - .gitignore: ignore all .o files - Make autogen output friendlier - Translation Updates: Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish, Dutch, French, Galician, German, Hungarian, Italian, Japanese, Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian Release notes for 4.15.0 ======================== - Drop support for Gtk2 - Make glibtop an optional dependency ("About System" tab) - about: Add system info tab - about: Hide system tab conditionally - dialogs: Use symbolic window-close icon - Fix Window not visible when grabbing keyboard (Bug #16054) - Bump Gtk3 to 3.22 (Bug #15781) - Do not use gdk_screen_get_monitor_at_point (Bug #15781) - Replace gtk_show_uri (Bug #15781) - Replace gdk_display_get_screen (Bug #15781) - Replace gdk_keymap_get_default (Bug #15781) - Replace deprecated device functions (Bug #15781) - Replace gdk_error_trap_* and gdk_flush (Bug #15781) - Ignore what is hard to replace (Bug #15781) - Add a dialog to confirm closure of multiple tabs (bug #15873) - Translation Updates: Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, English (United Kingdom), Finnish, French, Galician, German, Hungarian, Interlingue, Italian, Japanese, Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Turkish Signed-off-by: Andreas Müller <[email protected]>
kraj
added a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Dec 7, 2021
List of changes * AttrList: Add get_attributes(), update(), equal() (Kjell Ahlstedt) Issue openembedded#12 (misos1) * Make CairoFontMap::set_resolution() usable by adding the CairoFontMapImpl class (Kjell Ahlstedt) Issue openembedded#15 (Ievgenii Meshcheriakov) * Add FontMap::get_family() (Kjell Ahlstedt) * AttrList: Add to_string() and from_string() Attribute: Add TextTransform, BaselineShift and FontScle enums and some create_attr_*() methods (Kjell Ahlstedt) Build: * Don't include individual pango headers (Matthias Clasen, Kjell Ahlstedt) Merge request !22 * Support Visual Studio 2022 builds (Chun-wei Fan) * Require pango >= 1.49.4 (Kjell Ahlstedt) Signed-off-by: Khem Raj <[email protected]>
kraj
added a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Dec 7, 2021
List of changes * AttrList: Add get_attributes(), update(), equal() (Kjell Ahlstedt) Issue openembedded#12 (misos1) * Make CairoFontMap::set_resolution() usable by adding the CairoFontMapImpl class (Kjell Ahlstedt) Issue openembedded#15 (Ievgenii Meshcheriakov) * Add FontMap::get_family() (Kjell Ahlstedt) * AttrList: Add to_string() and from_string() Attribute: Add TextTransform, BaselineShift and FontScle enums and some create_attr_*() methods (Kjell Ahlstedt) Build: * Don't include individual pango headers (Matthias Clasen, Kjell Ahlstedt) Merge request !22 * Support Visual Studio 2022 builds (Chun-wei Fan) * Require pango >= 1.49.4 (Kjell Ahlstedt) Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Oct 31, 2022
Fix RDEPENDS, in particular perl-module-perlio-encoding and perl-module-encode-encoding were needed to be able to open the database in /usr/lib/perl5/5.36.0/vendor_perl/MIME/types.db... even though no warnings or errors were reported. bin/collect-types was dropped in 2.18 Upstream release notes: version 2.22: Wed 27 Oct 16:54:38 CEST 2021 Changes: - webm keeps on producting unexpected results [issue openembedded#11, Даша Федорова] - iana updates version 2.21: Fri 28 May 12:01:00 CEST 2021 Changes: - application/octet-stream is better for .dat [issue openembedded#11, Даша Федорова] - add video/webm which Google forgot to register [issue openembedded#12, Brent Laabs] - add image/webp which Google registered too late [issue openembedded#12, Brent Laabs] version 2.20: Thu 22 Apr 12:48:35 CEST 2021 Fixes: - problems with PAUSE cause the previous release to show-up in the wrong location. Let's hope this release solves it. Changes: - heif/heic/heifs/heics/hif fix [issue openembedded#9, Даша Федорова] - no 'and' and 'or' extensions [issue openembedded#9, Даша Федорова] - application/octet-stream is better for .bin [issue openembedded#10, Даша Федорова] version 2.19: Fri 16 Apr 11:47:10 CEST 2021 Improvements: - update with the newest data from IANA and Apache httpd Changes: - mp4 preference is video/mp4 [issue openembedded#5, Даша Федорова] - yt preference is video/vnd.youtube.yt [issue openembedded#6, Даша Федорова] - 3gp and 3gpp preference is video/3gpp [issue openembedded#7, Даша Федорова] version 2.18: Wed 9 Dec 10:29:46 CET 2020 Improvements: - update with newest data Changes: - Mojo 6.0 changed types() into mapping() [Dmitry Latin] - Mojo 7.94 adds experimental file_type() - Mojo 7.94 adds experimental content_type() Signed-off-by: Tim Orling <[email protected]> Signed-off-by: Khem Raj <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a simple addition of a new version of psutil. Should I create a pull request for other branches as well? I am not too familiar with the branch naming structure, but I would like to push it to dizzy as well as branches for releases scheduled after dizzy.
Note, that the python API between the old and this version are different.
Signed-off-by: Ignas Anikevicius [email protected]