-
- 1710062 Proton: Customize toolbar - light theme circle image is barely visible in ubuntu.
-
- 1712957 Proton : Mac 10.14 - panels should have the correct border colour
-
- 1714402 [meta] ui.prefersReducedMotion is ignored in some areas
-
- 1721292 Menubar text always black, doesn't follow theme
-
- 1724561 Places drop indicator's vertical positioning is inconsistent when dragging immediately before/after a separator
-
- 1730371 Using the system theme and a high contrast theme on the OS gives unexpected results
-
- 1733748 Urlbar border is misaligned with fractional gnome text scaling
-
- [ ]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Based on mozlz4a.py, by Tilman Blumenbach, via https://gist.github.com/kaefer3000/73febe1eec898cd50ce4de1af79a332a | |
# Modified by Sam Foster to parse the decompressed input as JSON and output a pretty-printed JSON document | |
# | |
# Decompressor/compressor for files in Mozilla's "mozLz4" format. Firefox uses this file format to | |
# compress e. g. bookmark backups (*.jsonlz4). | |
# | |
# This file format is in fact just plain LZ4 data with a custom header (magic number [8 bytes] and | |
# uncompressed file size [4 bytes, little endian]). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include <../threads.scad>; | |
// threads library from: https://dkprojects.net/openscad-threads/ | |
// probably updated since, as I downloaded this a while back | |
od = 30; | |
id = od - 1; | |
wall = 4; | |
$fn=64; | |
fillet=2; | |
lid_th=1; |
OlderNewer