~vcs-imports/gnome-control-center/+git/gnome-control-center:wip/jamie/accent-colours

Last commit made on 2023-03-27
Get this branch:
git clone -b wip/jamie/accent-colours https://git.launchpad.net/~vcs-imports/gnome-control-center/+git/gnome-control-center

Branch merges

Branch information

Name:
wip/jamie/accent-colours
Repository:
lp:~vcs-imports/gnome-control-center/+git/gnome-control-center

Recent commits

6722789... by Jamie Murphy <email address hidden>

background: Implement accent colours

Adds a row to toggle the system accent colour

a5747de... by Nathan Follens <email address hidden>

Update Dutch translation

(cherry picked from commit 5242d3ff69d05b0e48f921fac247a350e1b9b6e7)

4f02f46... by Kukuh Syafaat

Update Indonesian translation

085301b... by Piotr Drąg

Update POTFILES.in

524ffef... by Cyber Phantom <email address hidden>

cc-wifi-connection-list: Fix incorrect styling

There should be a space before opening parenthesis.

a14a451... by Gotam Gorabh <email address hidden>

removed dead variable

19d611a... by Gotam Gorabh <email address hidden>

user-accounts: Removed account activity window

This changes remove the account activity window or
login history as it is less used or no use.

Fixes: https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/2096

019cbc6... by Simon Arlott <sa.me.uk>

network: Increase maximum MTU value from 10000 to 65536

The maximum MTU value of 10000 is too low for USB Ethernet, which has a
maximum (for Linux USB gadgets) of 15412 bytes (although the upper limit
is the USB wMaxPacketSize which goes up to 4294967295 bytes):
  linux/drivers/usb/gadget/function/u_ether.c:#define GETHER_MAX_MTU_SIZE 15412

Multiple Intel NICs can use an MTU of 16110 bytes:
  linux/drivers/net/ethernet/intel/e1000/e1000_hw.h:#define MAX_JUMBO_FRAME_SIZE 0x3F00
  linux/drivers/net/ethernet/intel/e1000e/defines.h:#define MAX_JUMBO_FRAME_SIZE 0x3F00
  linux/drivers/net/ethernet/intel/igbvf/defines.h:#define MAX_JUMBO_FRAME_SIZE 0x3F00

The NetworkManager limit is 4294967295 bytes but this is unreasonable
in a typical enivornment because of the memory required for packets of
that size.

The maximum IPv4 and IPv6 (without using Jumbograms) packet size is 65535
bytes so increase the maximum MTU value to 65536 allow full size IP
packets to be used.

There is a corresponding change in network-manager-applet.

d766a0c... by velsinki <email address hidden>

sharing: Disable AdwActionRow markup for networks

Network names have many allowed characters, among which `&`, `<`, and
`>`. These are problematic for Pango markup. By default, AdwActionRow
has markup enabled for its title. We could escape strings at every
`adw_preferences_row_set_title` call, but this might be easy to forget
in the future. Instead, let's disable markup altogether for these rows.

c2e3de4... by Mohammed Sadiq <email address hidden>

network: proxy: Keep current mode when enabling proxy

Don't force 'automatic' proxy mode when the user enables proxy.

Closes #2401