vte 0.70.0

2022-09-18 Thread Jeremy Bicha
About Terminal widget
=

Terminal emulation library

ChangeLog
=

Author: Christian Persch 
Date:   Sat Sep 3 18:50:51 2022 +0200

build: Post release version bump

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 768acd1c0a8bd11b9b9fc2be78d8a3159ecef32b (tag: 0.69.99)


Download

https://download.gnome.org/sources/vte/0.70/vte-0.70.0.tar.xz (875K)
  sha256sum: 93e0dd4a1bc2a7a1a62da64160a274cce456976ea1567d98591da96e2d265ae6

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


vte 0.69.99

2022-09-04 Thread Jeremy Bicha
About Terminal widget
=

Terminal emulation library

ChangeLog
=

Author: Christian Persch 
Date:   Sat Sep 3 18:50:05 2022 +0200

build: Version 0.69.99 for gnome 43rc

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 73a7df10247c8822de7a377d7ce2072a5d95ad1a
Author: Alexander Mikhaylenko 
Date:   Thu Sep 1 05:13:53 2022 +0400

widget: Fix Widget::regex_match_check_at()

It was calling Terminal::regex_match_check() instead of
Terminal::regex_match_check_at().

Fixes https://gitlab.gnome.org/GNOME/vte/-/issues/2578

 src/widget.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2ba682d59daf0f0de906301fecbbd2b9a7989a14
Author: Christian Persch 
Date:   Fri Aug 19 00:03:13 2022 +0200

lib: Fix spawning on netbsd

Add netbsd to the platforms that can safely use sysconf(3) to close the
file descriptors before exec, since according to netbsd's man:sigaction(2),
sysconf(3) is async-signal-safe.

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2574
(cherry picked from commit b4abc09b0950e2b1593782116b7fa9fc2e7ffba1)

 src/missing.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6fa248b540c7e4f331828da3caba27eae850d101
Author: Christian Persch 
Date:   Tue Aug 16 17:03:33 2022 +0200

widget: Use correct view coordinates

The conversion needs to take the border into account.

(cherry picked from commit 1b750a348afb4085786e86fe80ac73caad1b829a)

 src/vte.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 1fb0b0cce5766c7a6ce42136e145d03f68c94c7b
Author: Christian Persch 
Date:   Tue Aug 9 21:09:08 2022 +0200

widget: gtk4: Only notify terminal when focused

https://gitlab.gnome.org/GNOME/vte/-/issues/2555#note_1524795
(cherry picked from commit 70366d113516382038c69f863c9915753041e563)

 src/widget.cc | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 5897ee10d53d220671fcd3a3ed96273f6151df80
Author: Christian Persch 
Date:   Tue Aug 9 21:09:08 2022 +0200

widget: gtk4: Don't grab the focus on focus-in

https://gitlab.gnome.org/GNOME/vte/-/issues/2555
(cherry picked from commit d7b1da6f8203a732fdc850b991236708adc0d52f)

 src/vte.cc | 3 +++
 1 file changed, 3 insertions(+)

commit 7fa5c680689a9e75be6d36ce1c34f8b9c537ce12
Author: Christian Persch 
Date:   Sat Aug 6 21:43:00 2022 +0200

build: Post release version bump

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f9501d9f4666bcec598baafe4ec7a99ec59aad99 (tag: 0.69.92)


Download

https://download.gnome.org/sources/vte/0.69/vte-0.69.99.tar.xz (875K)
  sha256sum: e9b1c14ad83ce7aaad1313604c04c2358183871e63bca0b7458441993d1a71ec

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


nautilus-python 4.0.alpha

2022-08-12 Thread Jeremy Bicha
About nautilus-python
=

Python bindings for the Nautilus extension framework


Download

https://download.gnome.org/sources/nautilus-python/4.0/nautilus-python-4.0.alpha.tar.xz
 (27.0K)
  sha256sum: 72e58ba4e21967416a230355df4e04696b0a259e491dcb05cb2a7f0458949a0e

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


vte 0.69.92

2022-08-08 Thread Jeremy Bicha
 is in, so
as to generate the correct focus notifications (DECSET 1004).

https://gitlab.gnome.org/GNOME/vte/-/issues/2555

 src/vte.cc |   9 +
 src/vteinternal.hh |   1 +
 src/widget.cc  | 113 +
 src/widget.hh  |  12 ++
 4 files changed, 135 insertions(+)

commit 901558bf471299e483976770e062730f35c13414
Author: Jeremy Bicha 
Date:   Fri Jul 29 22:23:50 2022 +0200

docs: Install toml file to subdir

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2570

 doc/reference/meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 08d71a30d4feb8596a9ca3b39ab1c73bc6ecff10
Author: Alexander Mikhaylenko 
Date:   Wed Jul 27 15:42:47 2022 +0400

widget: Don't queue_resize() during allocation

This is not allowed, and while here it mostly works by accident, it's
possible to break it - for example, if it resizes while unmapped.

See https://gitlab.gnome.org/GNOME/console/-/merge_requests/102#note_1510384

 src/vte.cc | 16 ++--
 src/vtegtk.cc  |  2 +-
 src/vteinternal.hh |  3 ++-
 3 files changed, 13 insertions(+), 8 deletions(-)

commit 2d165b61f527472a7a7eccee3e94f8ec96690245
Author: Alexander Mikhaylenko 
Date:   Mon Jul 25 22:25:08 2022 +0200

widget: gtk4: Don't invalidate endlessly

Have early returns to skip invalidation like in the gtk3 codepath.

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2566

 src/vte.cc | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 6beb9246d84d3161e1ea377417d0a2b9a8fb1e90
Author: Christian Persch 
Date:   Mon Jul 25 22:25:08 2022 +0200

widget: gtk4: Lower the priority of the style provider

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2567

 src/vtegtk.cc | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

commit 409cc91b95c21f83b1978796495ee8dfcfd42dfd
Author: Christian Persch 
Date:   Sun Jul 24 15:20:18 2022 +0200

widget: gtk: Make new API naming self-consistent

 src/vte/vteterminal.h |  8 
 src/vtegtk.cc | 18 +-
 2 files changed, 13 insertions(+), 13 deletions(-)

commit 0effa40fd9520e7e9af83d5a26d0d7be58b4094e
Author: Christian Persch 
Date:   Sun Jul 24 14:45:57 2022 +0200

widget: gtk4: Add API to check event context

https://gitlab.gnome.org/GNOME/vte/-/issues/2530

 src/vte.cc|  33 +
 src/vte/vteterminal.h |  33 +
 src/vtegtk.cc | 183 ++
 src/vteinternal.hh|  20 +++---
 src/widget.hh |  27 
 5 files changed, 288 insertions(+), 8 deletions(-)

commit 011b7acc60b71ea4762544ee72d106c3bccfa131
Author: Christian Persch 
Date:   Fri Jul 22 21:39:12 2022 +0200

widget: gtk4: Make background API available on gtk4

https://gitlab.gnome.org/GNOME/vte/-/issues/12#note_1506942

 src/vte/vteterminal.h | 4 
 src/vtegtk.cc | 4 
 2 files changed, 8 deletions(-)

commit 93e3d17cbb45b636a298d27a9af223a4e405382e
Author: Christian Persch 
Date:   Fri Jul 22 21:39:12 2022 +0200

widget: Add format arg to new API to get selected text

 src/vte/vteterminal.h |  3 ++-
 src/vtegtk.cc | 12 +---
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 0a663194fc1d4c9f5c2f952f6ccfea8a8a4719f7
Author: Christian Persch 
Date:   Wed Jul 13 21:14:31 2022 +0200

build: Post release version bump

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d4754ba9e4394d4e02af72e548060aadbe431f5b (tag: 0.69.90)


Download

https://download.gnome.org/sources/vte/0.69/vte-0.69.92.tar.xz (874K)
  sha256sum: 2d793d1cffe54f5ccc16a242329d47d4fd6172cb18ecb49d1487953840c9d5c4

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 42.0

2022-04-04 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


* Translation updates



Download

https://download.gnome.org/sources/gedit-plugins/42/gedit-plugins-42.0.tar.xz 
(927K)
  sha256sum: 7246420fbc3d3950ef78d2e346e21306440e71c64d74f6e8c44e51a58cd0db62

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 42.0

2022-04-01 Thread Jeremy Bicha
About gedit
===

gedit is a popular text editor for the GNOME desktop environment.

The first goal of gedit is to be easy to use, with a simple interface
by default. More advanced features are available by enabling plugins.

News


* Rename display name back to gedit
* Build fix
* Translation updates



Download

https://download.gnome.org/sources/gedit/42/gedit-42.0.tar.xz (6.60M)
  sha256sum: a87991f42961eb4f6abcdbaabb784760c23aeaeefae6363d3e21a61e9c458437

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


vte 0.68.0

2022-03-28 Thread Jeremy Bicha
About Terminal widget
=

Terminal emulation library

ChangeLog
=

Author: Christian Persch 
Date:   Sun Mar 27 19:52:19 2022 +0200

build: Version 0.68.0

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 22c815f3556450b37596bad48f03aef48d397f45
Author: Christian Persch 
Date:   Mon Feb 28 17:37:43 2022 +0100

spawn: Fix build without CLOSE_RANGE_CLOEXEC

Only call close_range() when CLOSE_RANGE_CLOEXEC is defined.
Fixes the build on non-linux.

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2544
(cherry picked from commit 5770e39b5a908952237bc8288e5342eb08c1d5bb)

 src/spawn.cc | 2 ++
 1 file changed, 2 insertions(+)

commit e723a6fa96bc50effbd046a2c2419cc51b3cc8c1
Author: Christian Persch 
Date:   Sat Feb 12 21:10:08 2022 +0100

Revert "emulation: Support XTVERSION sequence"

This reverts commit 0718a9a7f9300b2526eddb0fc74e25eef34795ba.

Issue #235 shows commiting this was premature and there's more discussion 
needed.

 src/parser-reply.hh |  1 -
 src/parser-seq.py   |  2 --
 src/vteseq.cc   | 32 ++--
 3 files changed, 2 insertions(+), 33 deletions(-)

commit 7cb2e8c03cffa39603c041e6bdd6e5efe11e6c66
Author: Christian Persch 
Date:   Sat Feb 12 19:19:07 2022 +0100

build: Post release version bump

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 08f6c596d1a05e20541b8268d19aede55ac99f4d (tag: 0.67.90)


Download

https://download.gnome.org/sources/vte/0.68/vte-0.68.0.tar.xz (881K)
  sha256sum: 13e7d4789ca216a33780030d246c9b13ddbfd04094c6316eea7ff92284dd1749

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


file-roller 3.41.90

2022-02-23 Thread Jeremy Bicha
About Archive Manager
=

File Roller is an archive manager for the GNOME environment. This
means that you can create and modify archives; view the content of an
archive; view and modify a file contained in the archive; extract
files from the archive.

 File Roller is only a front-end (a graphical interface) to archiving
programs like tar and zip. The supported file types are : * 7-Zip
Compressed File (.7z) * WinAce Compressed File (.ace) * ALZip
Compressed File (.alz) * AIX Small Indexed Archive (.ar) * ARJ
Compressed Archive (.arj) * Cabinet File (.cab) * UNIX CPIO Archive
(.cpio) * Debian Linux Package (.deb) [Read-only mode] * ISO-9660 CD
Disc Image (.iso) [Read-only mode] * Java Archive (.jar) * Java
Enterprise archive (.ear) * Java Web Archive (.war) * LHA Archive
(.lzh, .lha) * WinRAR Compressed Archive (.rar) * RAR Archived Comic
Book (.cbr) * RPM Linux Package (.rpm) [Read-only mode] * Tape Archive
File: * uncompressed (.tar) or compressed with: * gzip (.tar.gz ,
.tgz) * bzip (.tar.bz , .tbz) * bzip2 (.tar.bz2 , .tbz2) * compress
(.tar.Z , .taz) * lrzip (.tar.lrz , .tlrz) * lzip (.tar.lz , .tlz) *
lzop (.tar.lzo , .tzo) * 7zip (.tar.7z) * xz (.tar.xz) * Stuffit
Archives (.bin, .sit) * ZIP Archive (.zip) * ZIP Archived Comic Book
(.cbz) * ZOO Compressed Archive File (.zoo) * Single files compressed
with gzip, bzip, bzip2, compress, lrzip, lzip, lzop, rzip, xz.

News


This is a Beta release

 Bugs fixed:

  * Enable add button on select all (#129)
  * Support GNOME 42 dark style preference (!58)



Download

https://download.gnome.org/sources/file-roller/3.41/file-roller-3.41.90.tar.xz 
(858K)
  sha256sum: 062e6b48ed6b7bca3d38d02863d6a9b013f4ccd35ba6fbe35c56987900dfece9

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 41.0

2022-02-16 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


* Fix build with latest meson
* Translation updates



Download

https://download.gnome.org/sources/gedit-plugins/41/gedit-plugins-41.0.tar.xz 
(926K)
  sha256sum: a38f949460914f054063671bf0bb8e8a5184e6210be89f64bb304652d4520e87

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 41.0

2022-02-14 Thread Jeremy Bicha
About gedit
===

gedit is the text editor of the GNOME desktop environment.

The first goal of gedit is to be easy to use, with a simple interface
by default. More advanced features are available by enabling plugins.


Download

https://download.gnome.org/sources/gedit/41/gedit-41.0.tar.xz (6.57M)
  sha256sum: 7a9b18b158808d1892989165f3706c4f1a282979079ab7458a79d3c24ad4deb5

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 41

2022-02-14 Thread Jeremy Bicha
About gedit
===

gedit is the text editor of the GNOME desktop environment.

The first goal of gedit is to be easy to use, with a simple interface
by default. More advanced features are available by enabling plugins.

News


* Fix some crashes, one when opening files, another when
  deleting the open folder with the file browser plugin active
* Fix buttons in the color scheme selector dialog
* Build fixes
* Improve symbolic icon coloring
* Improve Save As behavior when saving error infobar is showing
* Translation updates
* Note that gnome-text-editor will be GNOME's recommended text
  editor beginning with the GNOME 42 release next month

News in 41.alpha, 2021-07-17

* Replace use of Tepl and AMTK
* Use sourceview4 in the snap build
* Enable OpenLink plugin by default
* Warn when trying to open a big file and allow to cancel
* Port open-selector to GDateTime
* Allow disabling gspell and python options
* Fix parsing of font-family strgins when they contain whitespace
* Translation updates.



Download

https://download.gnome.org/sources/gedit/41/gedit-41.tar.xz (6.57M)
  sha256sum: 6b196f706be60586619e1060c72527e293964808a3a48c0afc7784cbcbdae5d5

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


vte 0.67.90

2022-02-12 Thread Jeremy Bicha
About Terminal widget
=

Terminal emulation library

ChangeLog
=

Author: Christian Persch 
Date:   Fri Feb 11 19:01:03 2022 +0100

build: Version 0.67.90


Download

https://download.gnome.org/sources/vte/0.67/vte-0.67.90.tar.xz (880K)
  sha256sum: 46409ed71fc3aa47d7dc390249a53e8b813ac6c098bdac1516e10bdb7c20db38

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


vte 0.66.2

2021-12-07 Thread Jeremy Bicha
About Terminal widget
=

Terminal emulation library

ChangeLog
=

Author: Christian Persch 
Date:   Sat Nov 27 19:45:07 2021 +0100

parser: Fix some control codes

NAK and WM had the wrong codes assigned. Since both are NOPs, this
wasn't allowing incorrrect behaviour, but needs to be corrected still.

(cherry picked from commit ffefea92b97afd334b2f09df7a2ef040598de1c8)

 src/parser-seq.py | 24 ++--
 1 file changed, 22 insertions(+), 2 deletions(-)

commit 5901ba81e615cc8ae994c31e3faaf41785bc2fd1
Author: Luis Javier Merino Morán 
Date:   Thu Nov 4 19:25:09 2021 +0100

emulation: ECMA modes should not be saved by DECSC

From esctest:
DECRCTests.test_SaveRestoreCursor_InsertNotAffected
DECSETTiteInhibitTests.test_SaveRestoreCursor_InsertNotAffected
SCORCTests.test_SaveRestoreCursor_InsertNotAffected

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2524
(cherry picked from commit db3c6253d7fa1645996a2abd9fd55df414ca4c2d)

 src/vte.cc | 4 
 src/vteinternal.hh | 1 -
 2 files changed, 5 deletions(-)

commit b252bc26e695501b4799c2d2ec89e9a1c91a6685
Author: Luis Javier Merino Morán 
Date:   Thu Nov 4 19:14:58 2021 +0100

emulation: use correct range for DECRQCRA

Apparently at some point ranges where changed from end-inclusive to
end-exclusive, and DECRQCRA was not updated accordingly.

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2523
(cherry picked from commit c695b5e9f308cbb9e0d8dfcc9af924e177ba2c6d)

 src/vteseq.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 952a7e748d24e554f01ae12f160c56e688ee72d5
Author: Christian Persch 
Date:   Sat Oct 30 20:27:18 2021 +0200

build: Post release version bump

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 29bc0a2d7fefc0e8bc5f60b72c3a666809d490f9 (tag: 0.66.1)


Download

https://download.gnome.org/sources/vte/0.66/vte-0.66.2.tar.xz (874K)
  sha256sum: e89974673a72a0a06edac6d17830b82bb124decf0cb3b52cebc92ec3ff04d976

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


vte 0.66.1

2021-12-07 Thread Jeremy Bicha
About Terminal widget
=

Terminal emulation library

ChangeLog
=

Author: Christian Persch 
Date:   Fri Oct 8 19:24:57 2021 +0200

app: Add option to set initial title

Based on a patch by Zach DeCook.

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2517
(cherry picked from commit 64b333b11b840d2fad6643516d5b0116ef82dba4)

 src/app/app.cc | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

commit ca56bac88059a5b3cf3edda5ed58da7449cfa553
Author: Yaron Shahrabani 
Date:   Mon Sep 27 08:50:19 2021 +

Update Hebrew translation

 po/he.po | 71 +---
 1 file changed, 46 insertions(+), 25 deletions(-)

commit 1fe2f3e9e11d1b8b0e45698a268b77e8f52e25db
Author: Christian Persch 
Date:   Sat Sep 25 10:50:29 2021 +0200

vte.sh: Fix the check for PROMPT_COMMAND when it is unset

declare "helpfully" outputs on stdout for existing variables, but on stderr
for nonexistent ones.

Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/37

 src/vte.sh.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d44d57745dad46ea4ebe1f17ccd3fb45cb8f4953
Author: Christian Persch 
Date:   Wed Sep 22 18:41:53 2021 +0200

build: Post release version bump

 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 956d3bbd265279c296c56d9fb5ada1fee94768ee (tag: 0.66.0)


Download

https://download.gnome.org/sources/vte/0.66/vte-0.66.1.tar.xz (873K)
  sha256sum: ad397e0e1602d8a4cbbf1e005a8b3eb7d43148218441214d28994a6e1b156e0c

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-mahjongg 3.34.0

2019-09-25 Thread Jeremy Bicha
About gnome-mahjongg


Disassemble a pile of tiles by removing matching pairs

News


* Translation updates



Download

https://download.gnome.org/sources/gnome-mahjongg/3.34/gnome-mahjongg-3.34.0.tar.xz
 (2.92M)
  sha256sum: e5cfcf839cc86003708dfaa35c13a05aa4751618e316afb3f65284f0a61cd163

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.33.90

2019-08-06 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


- Add "gedit" to .desktop keywords as search workaround for Flatpak
  and Snap (Felipe)
- Build fixes (Christopher, Jordi, Luca, Michael, Ting-Wei)
- Translation updates

Contributors:
 Luca Bacci
 Felipe Borges
 Michael Catanzaro
 Ting-Wei Lan
 Jordi Mas
 Christopher Reiter



Download

https://download.gnome.org/sources/gedit/3.33/gedit-3.33.90.tar.xz (14.1M)
  sha256sum: 2fe33149adb65cb3ff95b8945c3f0bbcb54b5a86cbdf552941dc2a3118de14d7

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 3.33.90

2019-08-06 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


Development release
- Switch from Autotools to Meson (Martin)
- Add CI to test buildability and enforce Flake8 (Jordi)
- Add new session saver plugin (Jordi)
- Remove synctex plugin (Jordi)
- Update Commander activation shortcut to Ctrl+, (Jordi)
- Many more fixes (Baschdel, Jordi, Piotr)

Contributors: Baschdel, Martin Blanchard, Piotr Drąg, Jordi Mas



Download

https://download.gnome.org/sources/gedit-plugins/3.33/gedit-plugins-3.33.90.tar.xz
 (958K)
  sha256sum: 6fefc3002e304e8aed6b9b9e3aed27d4e1468d526e14b22d6c77a67ebb69e5ca

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-robots 3.33.90

2019-08-05 Thread Jeremy Bicha
About gnome-robots
==

Avoid the robots and make them crash into each other

News


- Switch from libcanberra-gtk to gsound (Arnaud B)



Download

https://download.gnome.org/sources/gnome-robots/3.33/gnome-robots-3.33.90.tar.xz
 (413K)
  sha256sum: 4b9abfb249979ef35f6e10968854064087e6e1a40340b6db962ca30287605e53

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


quadrapassel 3.33.90

2019-08-05 Thread Jeremy Bicha
About quadrapassel
==

Fit falling blocks together

News


* Switch from libcanberra-gtk to gsound (Arnaud)
* Translation updates

Contributors:
 Arnaud B



Download

https://download.gnome.org/sources/quadrapassel/3.33/quadrapassel-3.33.90.tar.xz
 (467K)
  sha256sum: f55b6ffbd704a8eb8c3001c221e589e5a5bd875da248afe36893fda4a2a7b1e9

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-mahjongg 3.33.90

2019-08-05 Thread Jeremy Bicha
About gnome-mahjongg


Disassemble a pile of tiles by removing matching pairs

News


* Updated app icon (Jakub)
* Translation updates

Contributors:
 Jakub Steiner



Download

https://download.gnome.org/sources/gnome-mahjongg/3.33/gnome-mahjongg-3.33.90.tar.xz
 (2.92M)
  sha256sum: 145482ace8219f1646cd0a8d7e1f3c04c66860df399e1f73edf61f5c4526f31d

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.33.90

2019-08-05 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Use libhandy so the app displays better on narrower screens (Çağatay)
* Drop obsolete Application Menu tweak (Florian)
* Update GTK+ to GTK (Piotr)
* Adapt to GNOME 3.33/3.34 gsettings schema changes (Olivier)

Contributors:
 Piotr Drąg, Olivier Fourdan, Florian Müllner, Çağatay Yiğit Şahin

Translations:
 Jordi Mas [ca], Jeroen van der Tuin [es], Charles Monzat [fr],
 Goran Vidović [hr], Florentina Mușat [hu], Sveinn í Felli [is],
 J T [mjw], Anders Johnson [ro], Daniel Korostil [uk],
 Mingcong Bai [zh_CN]



Download

https://download.gnome.org/sources/gnome-tweaks/3.33/gnome-tweaks-3.33.90.tar.xz
 (239K)
  sha256sum: 0e2e065416cfa7b949cb3ccc4def1df508b74046cc4615429b67e3591202026f

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 3.32.2

2019-05-14 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


- Fix ColorSchemer plugin for GTKSourceView 4 (Jordi)
- Cache language names per session to prevent unnecessary web requests
  by Translate plugin (Jordi)
- Fix enabling and disabling the Translate plugin (Jordi)

Contributors: Jordi Mas



Download

https://download.gnome.org/sources/gedit-plugins/3.32/gedit-plugins-3.32.2.tar.xz
 (1.41M)
  sha256sum: 1368338882c535297ab4f6677da40c3f7bea545464c04a9076ee2c0c38eabeff

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.32.2

2019-05-14 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


- Reintroduce enable-gvfs-metadata build option (Andrea)
- Fix several crash bugs (Andrea)
- Translation updates

Contributors: Andrea Azzarone



Download

https://download.gnome.org/sources/gedit/3.32/gedit-3.32.2.tar.xz (14.1M)
  sha256sum: 742fef5e496f5d0dbc95dac5c5547f040dffbea55cd835e6618294eadd9959e0

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-menus 3.32.0

2019-03-11 Thread Jeremy Bicha
About Menu Library
==

GNOME Menuss contains the libgnome-menu library, the layout
configuration files for the GNOME menu, as well as a simple menu
editor. The libgnome-menu library implements the "Desktop Menu
Specification" from freedesktop.org.

News


* Translation updates


ChangeLog
=
https://download.gnome.org/sources/gnome-menus/3.32/gnome-menus-3.32.0.changes  
(2.26K)

Download

https://download.gnome.org/sources/gnome-menus/3.32/gnome-menus-3.32.0.tar.xz 
(488K)
  sha256sum: c850c64b2074265fe59e099a340b8689cf3dd4658dc9feddd2ab5e95f1a74b74

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.32.0

2019-03-10 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


- Translation updates



Download

https://download.gnome.org/sources/gedit/3.32/gedit-3.32.0.tar.xz (14.1M)
  sha256sum: c9e2e2a865c962ef172892a5d3459dc834871761ae6456b68436b3b577f22ad3

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


mousetweaks 3.32.0

2019-03-10 Thread Jeremy Bicha
About mousetweaks
=

Mousetweaks provides mouse accessibility enhancements for the GNOME
desktop. These enhancements are:

- It offers a way to perform the various clicks without using any
physical mouse buttons. (Hover Click)

- It allows users to perform a secondary click by keeping the primary
mouse button pressed for a predetermined amount of time. (Simulated
Secondary Click)

The features can be activated and configured through the Universal
Access panel of the GNOME Control Center.

News


- New stable release


ChangeLog
=
https://download.gnome.org/sources/mousetweaks/3.32/mousetweaks-3.32.0.changes  
(372)

Download

https://download.gnome.org/sources/mousetweaks/3.32/mousetweaks-3.32.0.tar.xz 
(363K)
  sha256sum: 0ebd5cdef01547787cbc3697ae758c57db1eec10eab613704d4a17b27685ae00

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 3.32.0

2019-03-10 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


- Updated translations



Download

https://download.gnome.org/sources/gedit-plugins/3.32/gedit-plugins-3.32.0.tar.xz
 (1.41M)
  sha256sum: 7d43786f89f185600bb960a5cb8dda799a5ba97cc3df405c15251eb24430940b

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-mahjongg 3.32.0

2019-03-10 Thread Jeremy Bicha
About gnome-mahjongg


Disassemble a pile of tiles by removing matching pairs

News


* Translation updates



Download

https://download.gnome.org/sources/gnome-mahjongg/3.32/gnome-mahjongg-3.32.0.tar.xz
 (2.93M)
  sha256sum: 52843745a17ef1e9e80820432b3317aa885ec7417ac1e9239946c0d56daf6a8a

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


tali 3.32.0

2019-03-10 Thread Jeremy Bicha
About tali
==

Beat the odds in a poker-style dice game

News


* Translation updates



Download

https://download.gnome.org/sources/tali/3.32/tali-3.32.0.tar.xz (1.75M)
  sha256sum: 7bf42923968e9a7992ded7efb737ba811ff3aa6f3d7478774549540ceca4ac68

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.32.0

2019-03-10 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Stable release.

Translations:
 Jordi Mas [ca], Alan Mortensen [da], Tim Sabsch [de],
 Asier Sarasua Garmendia [eu], Charles Monzat [fr], Sveinn í Felli [is],
 Gianvito Cavasoli [it], Seong-ho Cho [ko], Baurzhan Muftakhidinov [kz],
 Aurimas Černius [lt], Rūdolfs Mazurs [lv], Nathan Follens [nl],
 Piotr Drąg [pl], Rafael Fontenelle [pt_BR], Stas Solovey [ru],
 Марко Костић [sr], Yi-Jyun Pan [zh_TW],



Download

https://download.gnome.org/sources/gnome-tweaks/3.32/gnome-tweaks-3.32.0.tar.xz 
(236K)
  sha256sum: a54061b2c9150567ff22874c0c3a9e36c04ab6b0093b738c662e92c15919f90c

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

quadrapassel 3.32.0

2019-03-10 Thread Jeremy Bicha
About quadrapassel
==

Fit falling blocks together

News


* Translation updates



Download

https://download.gnome.org/sources/quadrapassel/3.32/quadrapassel-3.32.0.tar.xz 
(467K)
  sha256sum: fe6ee9f45f262317606b1ea40259d363e45a126cc2e686526de9db794a0a11fe

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tetravex 3.32.0

2019-03-10 Thread Jeremy Bicha
About gnome-tetravex


Complete the puzzle by matching numbered tiles

News


* Translation updates


Download

https://download.gnome.org/sources/gnome-tetravex/3.32/gnome-tetravex-3.32.0.tar.xz
 (892K)
  sha256sum: 544e702558d9d2a17e4f34b0db40ee728c1d83ad4761433bf7560a39c8edb9a1

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-mahjongg 3.31.92

2019-03-06 Thread Jeremy Bicha
About gnome-mahjongg


Disassemble a pile of tiles by removing matching pairs

News


* Development release
* Localize date column of score list (Paul)
* Translation updates

Contributors:
 Paul Hebble



Download

https://download.gnome.org/sources/gnome-mahjongg/3.31/gnome-mahjongg-3.31.92.tar.xz
 (2.97M)
  sha256sum: 68ea71676af40bb99b7161d82e6030c04db80077457bb1780115ead4be7fc78b

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-menus 3.31.92

2019-03-04 Thread Jeremy Bicha
About Menu Library
==

GNOME Menuss contains the libgnome-menu library, the layout
configuration files for the GNOME menu, as well as a simple menu
editor. The libgnome-menu library implements the "Desktop Menu
Specification" from freedesktop.org.

News


* Stop using gnome-common (Javier)
* Add nm-connection-editor to the Utilities category (Kalev)
* Restore minimal Sundry app folder for upgrades. Users can remove it
  by running gsettings reset-recursively org.gnome.desktop.app-folders
  and logging out and logging back in. (Jeremy)
* Translation updates

Contributors:
 Jeremy Bicha, Javier Jardón, Kalev Lember


ChangeLog
=
https://download.gnome.org/sources/gnome-menus/3.31/gnome-menus-3.31.92.changes 
 (4.22K)

Download

https://download.gnome.org/sources/gnome-menus/3.31/gnome-menus-3.31.92.tar.xz 
(488K)
  sha256sum: fef8b8bf0a4ba75899baab84bfcfed0fb6da27839c6b3f81b94c4d0d81884fc4

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

mousetweaks 3.31.92

2019-03-03 Thread Jeremy Bicha
About mousetweaks
=

Mousetweaks provides mouse accessibility enhancements for the GNOME
desktop. These enhancements are:

- It offers a way to perform the various clicks without using any
physical mouse buttons. (Hover Click)

- It allows users to perform a secondary click by keeping the primary
mouse button pressed for a predetermined amount of time. (Simulated
Secondary Click)

The features can be activated and configured through the Universal
Access panel of the GNOME Control Center.

News


- Stop using gnome-common
- Translation updates



Download

https://download.gnome.org/sources/mousetweaks/3.31/mousetweaks-3.31.92.tar.xz 
(363K)
  sha256sum: 1cc033d51aefd30edbc452a3b2d8ecee5f4261d30cea7d0f87749a9f0dd31993

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tetravex 3.31.91

2019-02-17 Thread Jeremy Bicha
About gnome-tetravex


Complete the puzzle by matching numbered tiles

News


* Development release
* Explicitly link with -lm (Kalev)
* Translation updates

Contributors:
 Kalev Lember



Download

https://download.gnome.org/sources/gnome-tetravex/3.31/gnome-tetravex-3.31.91.tar.xz
 (899K)
  sha256sum: 9d2131ec59b256e81038dafd9c682074169149f591fc7387a23c09c20003db9f

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.31.90

2019-02-06 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* App icon refresh (Jakub)
* Enable F10 hotkey for app menu (Jeremy)
* Fix crash when changing any option in Additional Layout Options
  after closing the dialog at least once (Carlos)

Contributors:
Jeremy Bicha, Carlos Soriano, Jakub Steiner

Translations:
 Pieter Schalk Schoeman [af], Marek Cernocky [cs], Efstathios Iosifidis [el]
 Daniel Mustieles [es], Jiri Grönroos [fi], Charles Monzat [fr],
 Fabio Tomat [fur], Fran Dieguez [gl], Kukuh Syafaat [id],
 Balázs Úr [hu], Ryuta Fujii [ja], Daniel Șerbănescu [ro]
 Anders Jonsson [sv], Sabri Ünal [tr]



Download

https://download.gnome.org/sources/gnome-tweaks/3.31/gnome-tweaks-3.31.90.tar.xz
 (234K)
  sha256sum: 06d1c2b4be523e45eefa8b5ece71ef79aa4db783198afd05f3f9896364c52596

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tetravex 3.31.90

2019-02-03 Thread Jeremy Bicha
About gnome-tetravex


Complete the puzzle by matching numbered tiles

News


* Development release
* Add tests to validate AppStream metadata and .desktop file (Bilal)
* Consistently use org.gnome.Tetravex app id.
  Note that this renames the icons, .desktop, and
  AppStream metadata (Bilal)
* Miscellaneous cleanup (Andre, Bilal, & Jeremy)

Contributors:
 Jeremy Bicha, Bilal Elmoussaoui, Andre Klapper



Download

https://download.gnome.org/sources/gnome-tetravex/3.31/gnome-tetravex-3.31.90.tar.xz
 (899K)
  sha256sum: 629809f6676b169e2c5e17b0d93c5016c75aa07fade80ecadda793500b50e8a9

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


tali 3.31.90

2019-02-03 Thread Jeremy Bicha
About tali
==

Beat the odds in a poker-style dice game

News


* Development release
* Add tests to validate AppStream metadata and .desktop file (Bilal)
* Consistently use org.gnome.Tali app id.
  Note that this renames the icons, .desktop, and
  AppStream metadata (Bilal)
* Miscellaneous cleanup (Bilal & Jeremy)

Contributors:
 Jeremy Bicha, Bilal Elmoussaoui



Download

https://download.gnome.org/sources/tali/3.31/tali-3.31.90.tar.xz (1.95M)
  sha256sum: edd28ccf21a06584787392261c3db7833018fa8d9561c4e1555a1d68f7f73937

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


quadrapassel 3.31.90

2019-02-03 Thread Jeremy Bicha
About quadrapassel
==

Fit falling blocks together

News


* Use --no-net for the AppStream validation test (Bilal)
* Miscellaneous cleanup (Jeremy & Bilal)
* Translation updates

Contributors:
 Jeremy Bicha, Bilal Elmoussaoui



Download

https://download.gnome.org/sources/quadrapassel/3.31/quadrapassel-3.31.90.tar.xz
 (508K)
  sha256sum: 9c56692e7a69c339992c44c8d1f20803073c60fcc283e42ef1856d9253b91e1e

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-mahjongg 3.31.90

2019-02-03 Thread Jeremy Bicha
About gnome-mahjongg


Disassemble a pile of tiles by removing matching pairs

News


* Development release
* Validate the AppStream metadata and .desktop file as build tests (Bilal)
* Miscellaneous cleanup (Bilal & Jeremy)

Contributors:
 Jeremy Bicha, Bilal Elmoussaoui



Download

https://download.gnome.org/sources/gnome-mahjongg/3.31/gnome-mahjongg-3.31.90.tar.xz
 (3.00M)
  sha256sum: ad31bdbc0a421541ae7aeed61ed8198cda608181b3d6fd9be3a74b2d5a6d8c73

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 3.31.90

2019-02-03 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


Development release
- Fix GtkSourceView 4 Python imports (Martin)
- Update translations

Contributors:
 Martin Blanchard



Download

https://download.gnome.org/sources/gedit-plugins/3.31/gedit-plugins-3.31.90.tar.xz
 (1.40M)
  sha256sum: 54403c7688dbc3935333771c95e24e4d6651116a04e2481829c1d70f70290298

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.31.90

2019-02-03 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


Development release

- Switch to meson (Martin)
- Drop autotools support (Jeremy)
- Add tests to validate AppStream metadata and .desktop (Bilal)
- Flatpak and Snap versions now bundle gedit-plugins (Martin & Jeremy)
- Fix some issues resulting from the GNOME 3.32 menu changes (Jeffery)
- Drop gconf conversion file (Jeremy)
- Miscellaneous fixes (Andre, Jeremy)

Contributors:
 Jeremy Bicha, Martin Blanchard, Bilal Elmoussaoui
 Andre Klapper, Jeffery To



Download

https://download.gnome.org/sources/gedit/3.31/gedit-3.31.90.tar.xz (14.1M)
  sha256sum: 92d540f5c59106eca3ec9648a6bb2aa2ac72247ef4e50fd43a037abba5494f78

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


mousetweaks 3.31.90

2019-02-03 Thread Jeremy Bicha
About mousetweaks
=

Mousetweaks provides mouse accessibility enhancements for the GNOME
desktop. These enhancements are:

- It offers a way to perform the various clicks without using any
physical mouse buttons. (Hover Click)

- It allows users to perform a secondary click by keeping the primary
mouse button pressed for a predetermined amount of time. (Simulated
Secondary Click)

The features can be activated and configured through the Universal
Access panel of the GNOME Control Center.

News


- Stop using intltool
- Translation updates


ChangeLog
=
https://download.gnome.org/sources/mousetweaks/3.31/mousetweaks-3.31.90.changes 
 (15.7K)

Download

https://download.gnome.org/sources/mousetweaks/3.31/mousetweaks-3.31.90.tar.xz 
(365K)
  sha256sum: 2592a584e2c19712fbc66ce92985392d15349a37313ab31f0a904759bd35d186

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-menus 3.31.4

2019-01-21 Thread Jeremy Bicha
About Menu Library
==

GNOME Menuss contains the libgnome-menu library, the layout
configuration files for the GNOME menu, as well as a simple menu
editor. The libgnome-menu library implements the "Desktop Menu
Specification" from freedesktop.org.

News


* Remove the Sundry category (Jeremy)
* Switch to modern realpath (Pino)
* Stop using intltool (Alberts)
* Translation updates

Contributors:
 Jeremy Bicha, Alberts Muktupāvels, Pino Toscano


ChangeLog
=
https://download.gnome.org/sources/gnome-menus/3.31/gnome-menus-3.31.4.changes  
(6.38K)

Download

https://download.gnome.org/sources/gnome-menus/3.31/gnome-menus-3.31.4.tar.xz 
(487K)
  sha256sum: 2737a49d0a28c988253eaf935e5b0e166680d9ef2ce8c17597423cb922eb30c6

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit-plugins 3.31.4

2019-01-09 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


Development release

- Switch from GTKSourceView 3 to GTKSourceView 4 (Christian)
- Stop using intltool (Jeremy)
- Miscellaneous improvements (Andre, Jeremy, Piotr)
- Updated translations

Contributors:
 Jeremy Bicha, Piotr Drąg, Christian Hergert, Andre Klapper



Download

https://download.gnome.org/sources/gedit-plugins/3.31/gedit-plugins-3.31.4.tar.xz
 (1.42M)
  sha256sum: 84645f2628742794d6d204521c14e21865d3dc750468b6f6758e0cc23d37aa8f

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-settings-daemon 3.30.2

2019-01-09 Thread Jeremy Bicha
About gnome-settings-daemon
===

GNOME Settings Daemon

News


- Translation updates
- Fixes for build tests

Media-keys:
- Default to interactive shutdown action for power button if
  the action is not supported.
- Increase GSD_REENABLE_POWER_BUTTON_DELAY to 3 seconds
- Add mapping for Ctrl + media-key for some media-keys

Rfkill:
- Fix GIOChannel encoding

Color:
- Correct temperature interpolation corner cases



Download

https://download.gnome.org/sources/gnome-settings-daemon/3.30/gnome-settings-daemon-3.30.2.tar.xz
 (1.31M)
  sha256sum: 22fca10847d071f69de4f21fd9a6d58544ab94a1d47550b9c9dabea1341bc630

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


quadrapassel 3.31.4

2019-01-08 Thread Jeremy Bicha
About quadrapassel
==

Fit falling blocks together

News


* Fix and restore preview in difficult mode. Note that the
  preview lies to you in this mode. (Lubomir)
* Fix apparent freeze in difficult mode (Lubomir)
* Convert from autotools to meson (Bilal)
* Consistently use org.gnome.Quadrapassel app id.
  Note that this renames the icons, .desktop, and
  AppStream metadata (Bilal)
* Miscellaneous fixes (Andre, Jeremy)
* Translation updates

Contributors:
 Jeremy Bicha, Bilal Elmoussaoui, Andre Klapper
 Lubomir Rintel



Download

https://download.gnome.org/sources/quadrapassel/3.31/quadrapassel-3.31.4.tar.xz 
(510K)
  sha256sum: 64d4e042ef27e8dd0a787d2685e2ceb13ae679cbda437156bc32f352cb54237e

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-mahjongg 3.31.4

2019-01-08 Thread Jeremy Bicha
About gnome-mahjongg


Disassemble a pile of tiles by removing matching pairs

News


* Development release
* Consistently use org.gnome.Mahjongg as app ID
  Note that this renames the icons, .desktop, and
  AppStream metadata (Bilal)
* Fix pause button when clicking on game to unpause (Elnee)
* Miscellaneous improvements (Andre, Jeremy)
* Translation updates

Contributors:
 Jeremy Bicha, Bilal ELmoussaoui, Andre Klapper, Elnee



Download

https://download.gnome.org/sources/gnome-mahjongg/3.31/gnome-mahjongg-3.31.4.tar.xz
 (3.00M)
  sha256sum: 807cff90d59b63bd03d43d389d1a8ed4c9a3d52b16e1a1df4c86786dd9e510f4

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


tali 3.31.3

2018-12-10 Thread Jeremy Bicha
About tali
==

Beat the odds in a poker-style dice game

News


* Development release
* Switch from autotools to meson (Jeremy)
* Stop using intltool (Jeremy)
* Follow GNOME 3.32 app menu recommendations (Jeremy)
* Update default AI names (Josh)
* Add Keyboard Shortcuts overlay (Jeremy)

Contributors:
 Jeremy Bicha, Josh Triplett



Download

https://download.gnome.org/sources/tali/3.31/tali-3.31.3.tar.xz (1.94M)
  sha256sum: e4a59443b7e8faa33c80d40425157dd2b41f963fde47699c6335723efd70cc5e

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-menus 3.31.3

2018-12-10 Thread Jeremy Bicha
About Menu Library
==

Library for the Desktop Menu fd.o specification

News


* desktop-entries: support multiple desktops in XDG_CURRENT_DESKTOP (Alberts)
* libmenu: Remove support for legacy-dirs (Florian)
* layout: Update .desktop filenames (Jeremy)
* layout: Drop obsolete Fedora special case .desktop filenames (Jeremy)
* miscellaneous fixes (Andre, Josselin)

Contributors:
 Jeremy Bicha, Andre Klapper, Josselin Mouette, Alberts Muktupāvels
 Florian Müllner


ChangeLog
=
https://download.gnome.org/sources/gnome-menus/3.31/gnome-menus-3.31.3.changes  
(179)

Download

https://download.gnome.org/sources/gnome-menus/3.31/gnome-menus-3.31.3.tar.xz 
(428K)
  sha256sum: fce1525ad98cc4f91bc0d14c3eccb21665922d298a76921a9ac1af1238a82586

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit 3.31.3

2018-12-10 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


Development release

- Update README and rename to README.md (Alexandre)
- Update new app icon (Jakub)
- Fix searching with upper case characters in recent files popup (Sébastien)
- Fix symbolic icons in file browser with dark themes (Sébastien)
- Use a color for search matching in recent files popup that works better
  with dark themes (Sébastien)
- Clean up deprecations and more (Sébastien)

Contributors:
 Alexandre Franke, Sébastien Lafargue, Jakub Steiner



Download

https://download.gnome.org/sources/gedit/3.31/gedit-3.31.3.tar.xz (3.71M)
  sha256sum: 905f530efd337af8dde8201069cc0346568ca79c359eb8e17f9d9cdda0c0c4b9

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweaks 3.31.3

2018-12-09 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Fix running Tweaks outside of GNOME Shell (Alberts)
* Update menus for GNOME 3.32 recommendations (Bilal)
* Adjust Application ID to match the .desktop (Bilal)

Contributors:
 Bilal Elmoussaoui, Alberts Muktupāvels

Translations:
 Carmen Bianca BAKKER [eo], Anish Sheela [ml], Kjartan Maraas [nb],
 Matej Urbančič [sl], Cheng-Chia Tseng [zh_TW]



Download

https://download.gnome.org/sources/gnome-tweaks/3.31/gnome-tweaks-3.31.3.tar.xz 
(235K)
  sha256sum: 5a1a80b69c1db266d7a3f8523ba129041818a29d2ffa146f1ae2d7c84f80fdc6

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tetravex 3.31.3

2018-12-09 Thread Jeremy Bicha
About gnome-tetravex


Complete the puzzle by matching numbered tiles

News


* Development release
* Switch from autotools to meson (Jeremy)
* Stop using intltool (Jeremy)
* Follow GNOME 3.32 app menu recommendations (Jeremy)
* Add Keyboard Shortcuts overlay (Jeremy)
* Hide Keyboard Shortcuts section in app help (Jeremy)
* Update AppStream metadata (nick)

Contributors:
 Jeremy Bicha, nick richards



Download

https://download.gnome.org/sources/gnome-tetravex/3.31/gnome-tetravex-3.31.3.tar.xz
 (899K)
  sha256sum: 007f6cf29891b41e83c86f6361d274c0eb08291a28e224e858d7d07af0cd1fda

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-mahjongg 3.31.3

2018-12-09 Thread Jeremy Bicha
About gnome-mahjongg


Disassemble a pile of tiles by removing matching pairs

News


* Development release
* Switch from autotools to meson (Robert A.)
* Follow GNOME 3.32 app menu recommendations (Robert A.)
* Add Keyboard Shortcuts overlay (Jeremy)
* Hide Keyboard Shortcuts section in app help (Jeremy)
* Add Flatpak manifest (Jiri)
* Stop using intltool (Robert R.)
* Miscellaneous improvements (Anders, Andre, Carlos, Piotr)

Contributors:
 Robert Ancell, Jeremy Bicha, Piotr Drąg, Jiri Eischmann,
 Anders Jonsson, Andre Klapper, Robert Roth, Carlos Soriano



Download

https://download.gnome.org/sources/gnome-mahjongg/3.31/gnome-mahjongg-3.31.3.tar.xz
 (3.00M)
  sha256sum: 61b72f7c82977021c16513b971ce59f642e0249b23bfa286cb870217000b263c

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

quadrapassel 3.31.3

2018-12-06 Thread Jeremy Bicha
About quadrapassel
==

Fit falling blocks together

News


* Add game controller support using libmanette (Adrien)
* Update menus for GNOME 3.32 recommendations (Jeremy)
* Pressing Pause will start a new game if no game has started yet (Chris)
* Stop using intltool (Robert)
* Miscellaneous fixes (Anders, Andre, Piotr, Tomi)

Contributors:
 Jeremy Bicha
 Piotr Drąg
 Anders Jonsson
 Andre Klapper
 Chris Lamb
 Tomi Leppänen
 Adrien Plazas
 Robert Roth



Download

https://download.gnome.org/sources/quadrapassel/3.31/quadrapassel-3.31.3.tar.xz 
(728K)
  sha256sum: 686df4755037a22081ac1b01466090607175f4ea9de5fc7f17a02cf7b40d2022

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit 3.31.2

2018-11-12 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


Development release

- Follow GNOME 3.32 menu guidelines (Corey)
- Allow closing tabs with middle-click (Corey)

Contributors: Corey Daley



Download

https://download.gnome.org/sources/gedit/3.31/gedit-3.31.2.tar.xz (3.71M)
  sha256sum: d09b8ac0b5580429009ca1e55db0b417a241dc9a220902ca74c4ef470091b7fe

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.31.1

2018-10-09 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


Development release

- Fix tarball and version number from previous release

=
gedit 3.31.0


Download

https://download.gnome.org/sources/gedit/3.31/gedit-3.31.1.tar.xz (3.70M)
  sha256sum: c7876da07f941bc617c8d8548ef7350cc4e65286be6982a47b87539c4e19c2ea

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-characters 3.30.0

2018-10-09 Thread Jeremy Bicha
About gnome-characters
==

Characters is a simple utility application to find and insert unusual
characters.

News


- Re-enable GNOME Shell search provider by default



Download

https://download.gnome.org/sources/gnome-characters/3.30/gnome-characters-3.30.0.tar.xz
 (951K)
  sha256sum: b78d9e52c43c1f8ec06deaf8e8de749c055897db6841ccc5f25e3f1ed3f89c21

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.31.1

2018-10-07 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Redesign the app icon (Sam)
* Mention in README that sound-theme-freedesktop is required (Jeremy)
* Code cleanup for pycodestyle compliance (Danish)

Contributors:
 Jeremy Bicha, Sam Hewitt, Danish Prakash

Translations:
 Marionauta [es], Марко Костић [sr]



Download

https://download.gnome.org/sources/gnome-tweaks/3.31/gnome-tweaks-3.31.1.tar.xz 
(233K)
  sha256sum: f1762a1c9896d3d13597efcfb9d87cdf00e81f71ca4c5af2b4b0fa54d4755854

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit 3.31.0

2018-10-07 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


gedit 3.31.1
=
Development release

- Redesign the app icon (Jakub)
- Migrate to gettext and stop using intltool (Martin)
- Switch from gtksourceview3 to gtksourceview4 (Christian)
- Fix file chooser not opening in correct location after first time
  (Sebastien)
- Miscellaneous build and translation fixes (Jeremy, Mathieu, Piotr)
- Translation updates

Contributors:
 Jeremy Bicha, Martin Blanchard, Mathieu Bridon, Piotr Drąg, Christian Hergert,
 Sebastien Lafargue, Jakub Steiner



Download

https://download.gnome.org/sources/gedit/3.31/gedit-3.31.0.tar.xz (3.70M)
  sha256sum: ec7bc054a7a78171af69ff3da78b08622a80d37f5479a286896cabc0b2a09a3d

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweaks 3.30.1

2018-09-27 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Stable release.

* Fix visual glitch by making rows non-activatable by default (Carlos)
* Use dim-label for Shell extension descriptions instead of hardcoded color
  (Jeremy)

Contributors:
 Jeremy Bicha, Carlos Soriano

Translations:
 Khaled Hosny [ar], Tom Tryfonidis [el], Daniel Mustieles [es],
 Gianvito Cavasoli [it], Stas Solovey [ru], Matej Urbančič [sl],
 Sebastian Rasmussen [sv]



Download

https://download.gnome.org/sources/gnome-tweaks/3.30/gnome-tweaks-3.30.1.tar.xz 
(273K)
  sha256sum: ea3efbaf094025336e2f4979b5389674376c8a69cd10b32c15c937030298465e

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit-plugins 3.30.1

2018-09-24 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


- Terminal: fix change directory with vte >= 0.52
- Updated translations



Download

https://download.gnome.org/sources/gedit-plugins/3.30/gedit-plugins-3.30.1.tar.xz
 (1.29M)
  sha256sum: a3c0f823276a2826f9c56df0dc61daac046ea7cba3aa8760a0be84b2fe645471

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 3.30.0

2018-09-02 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


- Updated translations



Download

https://download.gnome.org/sources/gedit-plugins/3.30/gedit-plugins-3.30.0.tar.xz
 (1.29M)
  sha256sum: 1d85b1f19c39a11c5af2cdeb7ad2b0e65aa744fb07c82fa32b388eee90628a8a

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.30.0

2018-09-02 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


- Translation updates



Download

https://download.gnome.org/sources/gedit/3.30/gedit-3.30.0.tar.xz (3.01M)
  sha256sum: bd5c26499f988a1d608591beadb4eb408697dc8c2a61cde9909aeec71e2aef79

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.30.0

2018-09-02 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Stable release.

* Show Over-Amplification in the Pop session (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Alan Mortensen [da], Fran Dieguez [gl], gogo [hr],
 Balázs Meskó [hu], Rūdolfs Mazurs [lv],



Download

https://download.gnome.org/sources/gnome-tweaks/3.30/gnome-tweaks-3.30.0.tar.xz 
(273K)
  sha256sum: 2477572fad6527d23daa07609b305cac3e885900c5ad3bbad2573a96132fc6cc

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweaks 3.29.92

2018-08-26 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Fix too small window when unmaxizing (Bharat)
* Move General panel to the top of the sidebar (Danish)
* Minor adjustments to order in top bar panel (Jeremy)
* Don't show Over-Amplification when running the Ubuntu or Pop sessions
  (Jeremy)

Contributors:
 Jeremy Bicha, Bharat kalluri, Danish Prakash

Translations:
 Yuras Shumovich [be], Marek Cernocky [cs], Efstathios Iosifidis [el],
 Bruce Cowan [en_GB], Jiri Grönroos [fi], Claude Paroz [fr],
 Hannie Dumoleyn [nl], Kukuh Syafaat [id], Seong-ho Cho [ko],
 Rafael Fontenelle [pt_BR], Daniel Șerbănescu [ro], Cheng-Chia Tseng [zh_TW]



Download

https://download.gnome.org/sources/gnome-tweaks/3.29/gnome-tweaks-3.29.92.tar.xz
 (272K)
  sha256sum: da8e5d3690c08886a0246d8f566d1705aed3d5a0940e4265d582e8b8aac746f6

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweaks 3.29.91.1

2018-08-12 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Trivial URL updates (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Mario Blättermann [de], Fabio Tomat [fur], Baurzhan Muftakhidinov [kk],
 Piotr Drąg [pl], Aurimas Černius [lt], Emin Tufan Çetin [tr],
 Yi-Jyun Pan [zh_TW]



Download

https://download.gnome.org/sources/gnome-tweaks/3.29/gnome-tweaks-3.29.91.1.tar.xz
 (270K)
  sha256sum: 568962ef49ee3bae8e6fe3d8103838c9e454866b876ebb9399d70f8745922d88

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit 3.29.90

2018-08-08 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


Development release

- Port GeditFileChooserDialogGtk to GtkFileChooserNative
  so that it can use the file chooser portal for better confinement
  when run as a Flatpak or Snap (James)
- Add a style class to the main window for theming (abakkk)
- Move nightly Flatpak manifest here (Jordan)
- Misc bugfixes (Jeremy, Mathieu, Andre, nick, Ken)
- Translation updates

Contributors:
 abakkk, Jeremy Bicha, Mathieu Bridon, James Henstridge, Andre Klapper,
 Jordan Petridis, nick richards, Ken VanDine



Download

https://download.gnome.org/sources/gedit/3.29/gedit-3.29.90.tar.xz (3.01M)
  sha256sum: 70ef83cfac3f13eb78679ce1a00b1ec2cec9cb9cd41e4927d4b2783ee45cde8e

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.29.90.1

2018-08-01 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Add Weekday on/off switch for the clock in the top bar
  NOTE: This feature requires gnome-desktop >= 3.29.90.1 to work correctly.

Contributors:
 Jeremy Bicha



Download

https://download.gnome.org/sources/gnome-tweaks/3.29/gnome-tweaks-3.29.90.1.tar.xz
 (268K)
  sha256sum: ea4f3215e32e3c39ea61b61e99bc13f15f08d198dce0856d334d2eb4c4cb2ec2

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.29.90

2018-08-01 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Move Animations, Power, and Sound to new General panel (Jeremy, Emmanuele)
* Add Sound theme chooser to Appearance panel (Lukáš)
* Extend font labels for clarify ("Interface text" instead of "Interface",
  etc.) (Jeremy)
* Rename "Sloppy" window focus to "Focus on Hover" (Jeremy)
* Drop custom handler and use new glib per-session overrides (Florian)
  NOTE: This feature requires glib >= 2.57.2 to work correctly.

Contributors:
 Emmanuele Bassi, Jeremy Bicha, Florian Müllner, Lukáš Tyrychtr

 Yuras Shumovich [be], Marek Černocký [cs], Daniel Mustieles [es],
 Fabio Tomat [fur], Fran Dieguez [gl], Rafael Fontenelle [pt_BR],
 Matej Urbančič [sl]

Translations:
 Daniel Mustieles [es], Fabio Tomat [fur], Kukuh Syafaat [id],
 Daniel Șerbănescu [ro], Mingcong Bai [zh_CN], Yi-Jyun Pan [zh_TW],



Download

https://download.gnome.org/sources/gnome-tweaks/3.29/gnome-tweaks-3.29.90.tar.xz
 (268K)
  sha256sum: f0c8ac07cb3e413965f3a65cf4cbcac65d39fe9e5273053c1b53ad3d63dbc921

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweaks 3.29.2

2018-05-21 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Add Center New Windows and Edge Tiling tweaks
* Split Window Titlebars section to separate panel
* font: Rename Window Title to Legacy Window Title
  since it doesn't affect client-side decorations

Contributors:
 Jeremy Bicha

Translations:
 Yuras Shumovich [be], Marek Černocký [cs], Daniel Mustieles [es],
 Fabio Tomat [fur], Fran Dieguez [gl], Rafael Fontenelle [pt_BR],
 Matej Urbančič [sl]



Download

https://download.gnome.org/sources/gnome-tweaks/3.29/gnome-tweaks-3.29.2.tar.xz 
(267K)
  sha256sum: ce9e5eb987bed49acc8dc70a01218900f8ef1ceda75509d63636b44ab2dd59b0

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

zenity 3.28.1

2018-04-09 Thread Jeremy Bicha
News


- Translation updates



Download

https://download.gnome.org/sources/zenity/3.28/zenity-3.28.1.tar.xz (4.25M)
  sha256sum: db179354721fb4e2d5c418e0dc41f09c831a6b2dd440e33f7743dfc266de8a6b

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 3.28.1

2018-04-08 Thread Jeremy Bicha
News


- Updated translations



Download

https://download.gnome.org/sources/gedit-plugins/3.28/gedit-plugins-3.28.1.tar.xz
 (1.29M)
  sha256sum: 222dfd7065d399f7eda48dce011b42cc7185cd058f523be1bbd7143980e01468

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.28.1

2018-04-08 Thread Jeremy Bicha
News


- Translation updates



Download

https://download.gnome.org/sources/gedit/3.28/gedit-3.28.1.tar.xz (3.00M)
  sha256sum: f174be0958ce63771fef9a81d06da6769358dab8705364a6abb5c7d10ec8211d

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.28.1

2018-04-08 Thread Jeremy Bicha
News


Stable release.

* Show Activites Overview Hot Corner switch if the gnome-shell
  gsettings schema is installed (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Pieter Schalk Schoeman [af], Khaled Hosny [ar], Jordi Mas [ca]
 Stas Solovey [ru], Dušan Kazik [sk], Matej Urbančič [sl],
 Boyuan Yang [zh_CN]



Download

https://download.gnome.org/sources/gnome-tweaks/3.28/gnome-tweaks-3.28.1.tar.xz 
(262K)
  sha256sum: d719af9376db6109b6d5d3d1ba7fbbb18668945d7b3703131ae42b0872f3bddc

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit-plugins 3.28.0

2018-03-12 Thread Jeremy Bicha
News


- More fixes for the Translate plugin
- Updated translations



Download

https://download.gnome.org/sources/gedit-plugins/3.28/gedit-plugins-3.28.0.tar.xz
 (1.28M)
  sha256sum: cc1d3562b1876679b74382e2a92a3a2cb87e8ed6f6a1272de2fc7991c558d1ee

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.28.0

2018-03-12 Thread Jeremy Bicha
News


- Translation updates



Download

https://download.gnome.org/sources/gedit/3.28/gedit-3.28.0.tar.xz (3.07M)
  sha256sum: 9bf90a2d4fd7be802ad98d226d254ad42057b7c5cc03d1cd39b813123fa8ca5f

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.28.0

2018-03-12 Thread Jeremy Bicha
News


Stable release.

Translations:
 Rūdolfs Mazurs [lv],  Anders Jonsson [sv]



Download

https://download.gnome.org/sources/gnome-tweaks/3.28/gnome-tweaks-3.28.0.tar.xz 
(260K)
  sha256sum: 2944532de25cd41631afe1b0d154a6b2377551c1c67fffa5a1c4928c94eb1f35

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

zenity 3.28.0

2018-03-12 Thread Jeremy Bicha
News


- Translation updates


ChangeLog
=
https://download.gnome.org/sources/zenity/3.28/zenity-3.28.0.changes  (3.58K)

Download

https://download.gnome.org/sources/zenity/3.28/zenity-3.28.0.tar.xz (4.24M)
  sha256sum: 5e588f12b987db30139b0283d39d19b0fd47cab87840cc112dfe61e592826df8

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit-plugins 3.27.92

2018-03-07 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


- Fix the new Translate plugin
- Updated translations



Download

https://download.gnome.org/sources/gedit-plugins/3.27/gedit-plugins-3.27.92.tar.xz
 (1.30M)
  sha256sum: ad961391afed0946cd34ce17294966d934e9048f4323d4e7ada08b1cde1e6548

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.27.92

2018-03-07 Thread Jeremy Bicha
News


Release candidate.

* Install the Desktop panel again (Simon)
* Only show the Desktop panel if Nautilus < 3.27 is installed (Simon)
* Fix a crash when schemas are missing (like the Nautilus schemas) (Simon)
* Add provides tag for old AppStream ID (Jeremy)

Contributors:
 Jeremy Bicha, Simon McVittie

Translations:
 Marek Černocký [cs], Alan Mortensen [da], Mario Blättermann [de],
 Efstathios Iosifidis [el], Guillaume Bernard [fr], Fran Diéguez [gl],
 Goran Vidović [hr], Gianvito Cavasoli [it], Baurzhan Muftakhidinov [kk]
 Seong-ho Cho [ko], Aurimas Černius's [lt], Nathan Follens & 
 Justin van Steijn [nl],  Cédric Valmary [oc], Stas Solovey [ru],
 Милош Поповић [sr], Милош Поповић [sr@latin], Emin Tufan Çetin [tr],
 Cheng-Chia Tseng [zh_TW]



Download

https://download.gnome.org/sources/gnome-tweaks/3.27/gnome-tweaks-3.27.92.tar.xz
 (259K)
  sha256sum: c94e3d40bed902076781b6e36fb4f636b11d385f1682e92f584774780f02646a

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit-plugins 3.27.1

2018-03-04 Thread Jeremy Bicha
About gedit-plugins
===

Collection of plugins for the gedit Text Editor

News


- Development release
- Introduce new Translate plugin. Thanks Jordi Mas!
- Several translation fixes


ChangeLog
=
https://download.gnome.org/sources/gedit-plugins/3.27/gedit-plugins-3.27.1.changes
  (260K)

Download

https://download.gnome.org/sources/gedit-plugins/3.27/gedit-plugins-3.27.1.tar.xz
 (1.29M)
  sha256sum: 5ba5b0ed4136120de2bdaf3d8f98db18ef1f45fc1b50c0c17d7e91577ad211a4

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gedit 3.27.92

2018-03-04 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


- Translation updates



Download

https://download.gnome.org/sources/gedit/3.27/gedit-3.27.92.tar.xz (3.07M)
  sha256sum: 456ce1a0a6eaa926d0395492554cdcdcfc7b7dac60edc82e78638cffe48fae0e

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-settings-daemon 3.27.91

2018-02-19 Thread Jeremy Bicha
News


Build:
- Fix error when doing non-debug builds
- Fix runtime linkage to libgsd and libcommon
- Apply a workaround for D-Bus code generation



Download

https://download.gnome.org/sources/gnome-settings-daemon/3.27/gnome-settings-daemon-3.27.91.tar.xz
 (1.30M)
  sha256sum: 04a3f406dd5c584b549201b0499c248763c4548d113612690c62a0ee2136caf0

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweaks 3.27.90.2

2018-02-07 Thread Jeremy Bicha
News


Development release.

* Install new sound panel. Note that the sound panel will only show
  if you have gsettings-desktop-schemas >= 3.27.90 installed. (Didier)
* Rename a few more things to GNOME Tweaks (Jeremy)

Contributors:
 Jeremy Bicha, Didier Roche

Translations:
 Daniel Mustieles García [es], Fabio Tomat [fur]



Download

https://download.gnome.org/sources/gnome-tweaks/3.27/gnome-tweaks-3.27.90.2.tar.xz
 (257K)
  sha256sum: d20d50827d21060aa1b209572c1aad9b92a4d2ae180b3bcaeab4b97b743dd417

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweaks 3.27.90

2018-02-05 Thread Jeremy Bicha
News


Development release.

* Redesign 'Mouse Click Emulation' section. Note that GNOME 3.28 switches
  the default to 'Fingers'. Previously, it was 'Area' for most laptops.
  (Jeremy)
* Move Background & Lock Screen tweaks from Desktop to Appearance. (Jeremy)
* Don't install the Desktop panel. Distros that are keeping Nautilus 3.26
  should uncomment the line in gtweak/meson.build to revert this change
  for their distro. (Jeremy)

Contributors:
 Jeremy Bicha, Piotr Drąg

Translations:
 Gil Forcada [ca], Jiri Grönroos [fi], Balázs Meskó [hu]
 Kukuh Syafaat [id], Piotr Drąg [pl], Rafael Fontenelle [pt_BR]



Download

https://download.gnome.org/sources/gnome-tweaks/3.27/gnome-tweaks-3.27.90.tar.xz
 (256K)
  sha256sum: d90f5dbf3b511a117f06eab17dadb1d33ae0eb36387747b24a78150a7fee2f98

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gedit 3.27.90

2018-02-05 Thread Jeremy Bicha
About gedit
===

gedit is the official text editor of the GNOME desktop environment.

While aiming at simplicity and ease of use, gedit is a powerful
general purpose text editor which features full support for UTF-8,
configurable highlighting for various languages and many other
features making it a great editor for advanced tasks.

News


- Misc bugfixes
- Translation updates



Download

https://download.gnome.org/sources/gedit/3.27/gedit-3.27.90.tar.xz (3.07M)
  sha256sum: a68f45999edcead0f8339c7b3bdbac72e00834373392322ee37b67aef6e35d16

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


zenity 3.27.90

2018-02-03 Thread Jeremy Bicha
About zenity


Display dialog boxes from the command line and shell scripts

News


- Several fixes for proper translations (Piotr Drąg)
- Translation updates


ChangeLog
=
https://download.gnome.org/sources/zenity/3.27/zenity-3.27.90.changes  (9.59K)

Download

https://download.gnome.org/sources/zenity/3.27/zenity-3.27.90.tar.xz (4.24M)
  sha256sum: 4ed9b45551d7858ed00d6abf5a2dd869034ccc04998690d329c240109e1abf70

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweaks 3.27.4

2018-01-26 Thread Jeremy Bicha
News


Development release.

* This release renames the source tarball, binary, icons,
  .desktop and AppStream metadata to GNOME Tweaks. The
  user visible name was already changed for 3.26. (Jeremy)
* The development repository and bug tracker have moved to
  https://gitlab.gnome.org/GNOME/gnome-tweaks (Carlos)
* Don't show duplicate cursor theme names (Jan)
* Add Sound panel with Over-Amplification tweak. This
  tweak (and panel) will only appear if run with
  gsettings-desktop-schemas 3.27.2+. (Didier)
* Add logo.png and update README.md for GitLab (Jeremy)
* Support XDG_DATA_DIRS for themes and icons (Jascha)
* Support XDG_DATA_DIRS for gsettings schemas (Luca)

Contributors:
 Jeremy Bicha, Luca Bruno, Jascha Geerds, Didier Roche,
 Carlos Soriano,Jan Tojnar

Translations:
 Tim Sabsch [de], Daniel Mustieles [es], Jiri Grönroos [fi],
 Fabio Tomat [fur], Balázs Meskó [hu], Stas Solovey [ru],
 Matej Urbančič [sl], Anders Jonsson [sv], Cheng-Chia Tseng [zh_TW]

3.27.3
==
Development release.

* Translation updates

Translations:
 Kukuh Syafaat [id], Kjartan Maraas [nb],
 Muhammet Kara & Nurperi Utlu [tr]

3.27.2
==
* Remove Global Dark Theme tweak. The option will be turned off when
  the Applications theme is changed. (Jeremy)
* Stop requiring a GTK2 theme for Applications theme switcher. (Jeremy)
* Offer HighContrastInverse theme. (Jeremy)
* Don't show duplicate theme names. (Jeremy)
* Use string.format() instead of printf formatting (Khaled)
* Update copyright headers for REUSE Initiative Best Practices. (Jeremy)
* Update AppStream metadata. (Jeremy)
* Rename README to README.md. (Jeremy)

Contributors:
 Jeremy Bicha, Khaled Hosny

Translations:
 Khaled Hosney [ar], Marek Cernocky [cs], Tim Sabsch [de],
 Fabio Tomat [fur], gogo [hr], Борисав Живановић [sr]

3.26.4
==
New bugfix release.

* Stop requiring a GTK2 theme for Applications theme switcher. (Jeremy)
* Offer HighContrastInverse theme. (Jeremy)
* Don't show duplicate theme names. (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Khaled Hosney [ar], gogo [hr], Hannie Dumoleyn [nl],
 Борисав Живановић [sr], Kjartan Maraas [nb], Muhammet Kara [tr]

3.26.3
==
New bugfix release.

* README: Mention that nautilus gsettings schemas are required (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Xavi Ivars [ca@valencia], Marek Cernocky [cs], Christian Kirbach [de],
 Tom Tryfonidis [el], Matej Urbančič [sl], Aron Xu [zh_CN]

3.26.2.1

Release with correct source.

3.26.2
==
New bugfix release.

* Don't offer emoji support in search boxes (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Efstathios Iosifidis [el], Arash Mousavi [fa], Fran Dieguez [gl]

3.26.1
==
New bugfix release.

* Fix enabling and disabling GNOME Shell extensions (Jeremy Soller)
* Fix Workspace tweaks in GNOME Shell and "modes" (Jeremy Bicha)
* Hide Workspaces panel if GNOME Shell isn't running (Jeremy Bicha)
* Add "Activities Overview Hot Corner" tweak. This is disabled by default
  because it requires a patch from #688320 that hasn't been committed yet.
  (Jeremy Bicha)

Contributors:
 Jeremy Bicha, Jeremy Soller

Translations:
 Marek Cernocky [cs], Jiri Grönroos [fi], Fabio Tomat [fur],
 Kukuh Syafaat [id], Aurimas Černius [lt], Piotr Drąg [pl],
 Rafael Fontenelle [pt_BR],  Dušan Kazik [sk], Matej Urbančič [sl],
 Anders Jonsson [sv], Cheng-Chia Tseng [zh_TW],

3.26.0
==
New major stable release.

Translations:
 Alexander Shopov [bg], Alan Mortensen [da], Bruce Cowan [en_GB],
 Alexandre Franke [fr], Balázs Úr [hu], Gianvito Cavasoli [it],
 Jiro Matsuzawa [ja], hanniedu [nl], Anders Jonsson [sv],
 Trần Ngọc Quân [vi]

3.25.92
===
* Fix linking to GNOME Software from Extensions page (Jeremy)
* Note that gnome-shell schemas >= 3.24 are required (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Alexander Shopov [bg], Hjorth Larsen [da], Wolfgang Stöggl [de]
 Jiri Grönroos [fi], gogo [hr], Seong-ho Cho [ko], Rūdolfs Mazurs [lv]
 Piotr Drąg [ne], Rafael Fontenelle [pt_BR], Dušan Kazik [sk],
 Cheng-Chia Tseng [zh_TW]

3.25.91
===
* Don't add appmenu to windows buttons if it's already there (Jeremy)
* Prompt to log out when changing Application Menu setting (Jeremy)

Translations:
 Fran Dieguez [gl], gogo [hr], Gábor Kelemen [hu], Aurimas Černius [lt],
 Athul R T [ml], Pawan Chitrakar [ne], Piotr Drąg [pl],
 Милош Поповић [sr] [sr@latin], Милош Поповић [sr@latin],
 Furkan Tokaç [tr]

3.25.90.1
=
* Fix vertical scrollbar placement (António)
* Restore redesigned Window Focus Mode listbox (Jeremy)

Contributors:
 Jeremy Bicha, António Fernandes

3.25.90
===
* Remove Power Button setting; this feature is now in gnome-control-center
  3.25.90+ (Jeremy)
* Don't show HiDPI setting; use gnome-control-center 3.25.90+ instead (Jeremy)
* Revert Focus Mode listbox to 3.24 combobox to eliminate vertical scrolling
  (Jeremy)
* Rename /usr/bin/gnome-tweaks back to /usr/bin/gnome-tweak-tool (Jeremy)
* Add

gnome-tweak-tool 3.27.3

2017-12-11 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Development release.

* Translation updates

Translations:
 Kukuh Syafaat [id], Kjartan Maraas [nb],
 Muhammet Kara & Nurperi Utlu [tr]



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.27/gnome-tweak-tool-3.27.3.tar.xz
 (251K)
  sha256sum: 43b77c256bf97e20d2c1c813736a2d9bc684d2c60c126f758e18566caa0f14fd

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweak-tool 3.26.4

2017-12-11 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


New bugfix release.

* Stop requiring a GTK2 theme for Applications theme switcher. (Jeremy)
* Offer HighContrastInverse theme. (Jeremy)
* Don't show duplicate theme names. (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Khaled Hosney [ar], gogo [hr], Hannie Dumoleyn [nl],
 Борисав Живановић [sr], Kjartan Maraas [nb], Muhammet Kara [tr]



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.26/gnome-tweak-tool-3.26.4.tar.xz
 (247K)
  sha256sum: fda08044d22c258bbd93dbad326d282d4d1184b98795ae8e3e5f07f8275005df

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweak-tool 3.27.2

2017-11-13 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


* Remove Global Dark Theme tweak. The option will be turned off when
  the Applications theme is changed. (Jeremy)
* Stop requiring a GTK2 theme for Applications theme switcher. (Jeremy)
* Offer HighContrastInverse theme. (Jeremy)
* Don't show duplicate theme names. (Jeremy)
* Use string.format() instead of printf formatting (Khaled)
* Update copyright headers for REUSE Initiative Best Practices. (Jeremy)
* Update AppStream metadata. (Jeremy)
* Rename README to README.md. (Jeremy)

Contributors:
 Jeremy Bicha, Khaled Hosny

Translations:
 Khaled Hosney [ar], Marek Cernocky [cs], Tim Sabsch [de],
 Fabio Tomat [fur], gogo [hr], Борисав Живановић [sr]



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.27/gnome-tweak-tool-3.27.2.tar.xz
 (250K)
  sha256sum: a7a49247ab97ca9df643c08f1b1a87286e0bbce7cd4a680cfd3939c826b099c5

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweak-tool 3.26.3

2017-10-30 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


New bugfix release.

* REAMDE: Mention that nautilus gsettings schemas are required (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Xavi Ivars [ca@valencia], Marek Cernocky [cs], Christian Kirbach [de],
 Tom Tryfonidis [el], Matej Urbančič [sl], Aron Xu [zh_CN]



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.26/gnome-tweak-tool-3.26.3.tar.xz
 (247K)
  sha256sum: 9406447850b14de204f9c5a6eaa6b63ba805ddb1a10fd863239841090af76430

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweak-tool 3.26.2.1

2017-10-02 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


Release with correct source.



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.26/gnome-tweak-tool-3.26.2.1.tar.xz
 (246K)
  sha256sum: 21bc055fbae554b2a79591d5a901a31f7515cae49fb6b99cddc041eb83a38a26

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweak-tool 3.26.2

2017-10-02 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


New bugfix release.

* Don't offer emoji support in search boxes (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Efstathios Iosifidis [el], Arash Mousavi [fa], Fran Dieguez [gl]



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.26/gnome-tweak-tool-3.26.2.tar.xz
 (247K)
  sha256sum: 5ee2123bf7029adfe97bdf3bc11039e035b92e65acf6664655d2ddd80c1f8f9f

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list


gnome-tweak-tool 3.26.1

2017-09-20 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


New bugfix release.

* Fix enabling and disabling GNOME Shell extensions (Jeremy Soller)
* Fix Workspace tweaks in GNOME Shell and "modes" (Jeremy Bicha)
* Hide Workspaces panel if GNOME Shell isn't running (Jeremy Bicha)
* Add "Activities Overview Hot Corner" tweak. This is disabled by default
  because it requires a patch from #688320 that hasn't been committed yet.
  (Jeremy Bicha)

Contributors:
 Jeremy Bicha, Jeremy Soller

Translations:
 Marek Cernocky [cs], Jiri Grönroos [fi], Fabio Tomat [fur],
 Kukuh Syafaat [id], Aurimas Černius [lt], Piotr Drąg [pl],
 Rafael Fontenelle [pt_BR],  Dušan Kazik [sk], Matej Urbančič [sl],
 Anders Jonsson [sv], Cheng-Chia Tseng [zh_TW],



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.26/gnome-tweak-tool-3.26.1.tar.xz
 (244K)
  sha256sum: b7ca12b962a52190329b2bc755e43756354338de5a4dcd7a8f847024e88c613a

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweak-tool 3.26.0

2017-09-11 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


New major stable release.

Translations:
 Alexander Shopov [bg], Alan Mortensen [da], Bruce Cowan [en_GB],
 Alexandre Franke [fr], Balázs Úr [hu], Gianvito Cavasoli [it],
 Jiro Matsuzawa [ja], hanniedu [nl],Anders Jonsson [sv],
 Trần Ngọc Quân [vi]



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.26/gnome-tweak-tool-3.26.0.tar.xz
 (244K)
  sha256sum: afb181d1d621e469a132af51a8112191787f31cb8350a675b349db493743a122

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweak-tool 3.25.92

2017-09-05 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


* Fix linking to GNOME Software from Extensions page (Jeremy)
* Note that gnome-shell schemas >= 3.24 are required (Jeremy)

Contributors:
 Jeremy Bicha

Translations:
 Alexander Shopov [bg], Hjorth Larsen [da], Wolfgang Stöggl [de]
 Jiri Grönroos [fi], gogo [hr], Seong-ho Cho [ko], Rūdolfs Mazurs [lv]
 Piotr Drąg [ne], Rafael Fontenelle [pt_BR], Dušan Kazik [sk],
 Cheng-Chia Tseng [zh_TW]



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.25/gnome-tweak-tool-3.25.92.tar.xz
 (239K)
  sha256sum: c5288aa3e5294b3640f5387e85c596e6b28e598292be1aac40080cba5c625b00

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

gnome-tweak-tool 3.25.91

2017-08-21 Thread Jeremy Bicha
About GNOME Tweaks
==

GNOME Tweaks allows adjusting advanced configuration settings in GNOME
3. This includes things like the fonts used in user interface
elements, alternative user interface themes, changes in window
management behavior, GNOME Shell appearance and extension, etc.

News


* Don't add appmenu to windows buttons if it's already there (Jeremy)
* Prompt to log out when changing Application Menu setting (Jeremy)

Translations:
 Fran Dieguez [gl], gogo [hr], Gábor Kelemen [hu], Aurimas Černius [lt],
 Athul R T [ml], Pawan Chitrakar [ne], Piotr Drąg [pl],
 Милош Поповић [sr] [sr@latin], Милош Поповић [sr@latin],
 Furkan Tokaç [tr]



Download

https://download.gnome.org/sources/gnome-tweak-tool/3.25/gnome-tweak-tool-3.25.91.tar.xz
 (231K)
  sha256sum: 9db9fe891a451af9b864c8cc0e927325b5c01434e38a6c31a467553a1d4188f6

___
ftp-release-list mailing list
ftp-release-list@gnome.org
https://mail.gnome.org/mailman/listinfo/ftp-release-list

  1   2   >