Samuel Bowman
7a8953a833
PartitionEditor: Add the beginnings of a partition editor :^)
...
This adds a new application PartitionEditor which will eventually be
used to create and edit partition tables. Since LibPartition does not
know how to write partition tables yet, it is currently read-only.
Devices are discovered by scanning /dev for block device files.
Since block devices are chmod 600, PartitionEditor be must run as root.
By default Serenity uses the entire disk for the ext2 filesystem
without a partition table. This isn't useful for testing as the
partition list for the default disk will be empty. To test properly,
I created a few disk images using various partitioning schemes
(MBR, EBR, and GPT) and attached them using the following command:
export SERENITY_EXTRA_QEMU_ARGS="
-drive file=/path/to/mbr.img,format=raw,index=1,media=disk
-drive file=/path/to/ebr.img,format=raw,index=2,media=disk
-drive file=/path/to/gpt.img,format=raw,index=3,media=disk"
2022-07-21 20:13:44 +01:00
MacDue
c12c9eed38
Base: Add some more border-radius test cases
...
This adds a test for overflow: hidden + border-radius clipping
child positioned elements, and child backgrounds.
2022-07-19 15:00:59 +02:00
Lucas CHOLLET
70846d701c
LaunchServer+SystemServer: Move the portal to a user-specific directory
...
Various changes are needed to support this:
- The directory is created by Core::Account on login (and located in
/tmp).
- Service's sockets are now deleted on exit (to allow re-creation)
- SystemServer needs to handle SIGTERM to correctly destroy services.
2022-07-19 11:15:14 +01:00
Liav A
cb900006b9
Utilities/lspci: Don't unveil /res/pci.ids if not asked to resolve IDs
...
I tested the grub image under VirtualBox and it appeared that the image
didn't have pci.ids file included in the /res directory. In that case it
would be expected that lspci can still function correctly if the -n
parameter is passed, but then the unveil syscall failed because the file
didn't exist.
To cope with this, we should allow lspci to work without the pci.ids
file being present at the filesystem, so let's not unveil this file if
the -n parameter is passed.
2022-07-19 11:02:25 +01:00
MacDue
4978f388c2
Base: Add some more fun gradient demos
...
Adds tests for:
- Multi-stop gradient at arbitrary angles (CPU brr)
- Default/calculated color stops
- to <corner>
- Pre-multiplied alpha mixing
2022-07-18 10:10:22 +01:00
MacDue
452dc544bc
Base: Add simple gradients test page
2022-07-17 20:11:38 +01:00
Liav A
a660040806
Userland: Introduce the lsblk utility to show list of storage devices
2022-07-15 12:29:23 +02:00
Filiph Sandström
004bb59be5
Base: Remove accidental duplicate file
...
Looks like `NetworkSettings.gml` accidentally got placed
inside of `/Base/home/anon`.
2022-07-14 13:12:15 +02:00
Karol Kosek
0bba2a4415
Base: Improve visibility of PlaceholderText in themes
2022-07-11 18:11:11 +02:00
kleines Filmröllchen
7b89c4e412
Base: Improve clipboard manpage style
2022-07-11 11:35:56 +02:00
kleines Filmröllchen
fb7cd7b340
Documentation: Merge UsingFontEditor into existing FontEditor manpage
...
The generate-manpages script needs to be updated again to handle the new
PNGs in section 1. (I'm intentionally not making this a multi-directory
glob.)
2022-07-11 11:35:56 +02:00
kleines Filmröllchen
1419732a73
Documentation: Move IPC endpoint documentation to manpage section 4
2022-07-11 11:35:56 +02:00
kleines Filmröllchen
9660f5d0e6
Documentation: Move all file format documentation into its own manpage
...
The documentation is largely unchanged except for adoption into the
standard manpage format.
2022-07-11 11:35:56 +02:00
Xexxa
b1ed151c9c
Browser: Add Brave and Mojeek to search engines
2022-07-10 14:30:51 +02:00
Russell
cfea934cc8
Base: Add uptime(1) manpage
2022-07-10 11:41:45 +01:00
Maciej
7dd3c5c981
Applications: Add a new NetworkSettings application
2022-07-09 09:22:25 +01:00
Brian Gianforcaro
b7c50f7094
Base: Add -ftrivial-auto-var-init to man7/Mitigations.md
2022-07-09 00:53:45 +00:00
Tim Schumacher
5efa8e507b
Kernel: Implement an axallowed
mount option
...
Similar to `W^X` and `wxallowed`, this allows for anonymous executable
mappings.
2022-07-08 22:27:38 +00:00
Tim Schumacher
80705a72bd
mount: Allow extending fstab
via drop-in files in fstab.d
2022-07-08 12:42:23 +02:00
MacDue
b6f2ba6917
Base: Example of border-radius on iframe and canvas elements
2022-07-04 23:09:06 +02:00
MacDue
304e0966aa
Base: Add some border-radius + overflow: hidden HTML examples
2022-07-04 23:09:06 +02:00
MacDue
b21d95bbe3
Base: Move fun canvas demo JavaScript to seperate file
...
This will allow this demo to be reused for other tests.
2022-07-04 23:09:06 +02:00
Maciej
f94c7fc880
Base: Update Network manpage to the new NetworkServer behavior
2022-07-04 13:20:24 +03:00
Maciej
65307cf5cc
NetworkServer: Enable DHCP on interfaces that are not listed in config
2022-07-04 13:20:24 +03:00
MacDue
2ee7c44036
Base: Add some background-clip + border-radius HTML examples
2022-07-04 11:12:44 +02:00
Thitat Auareesuksakul
2586d767d0
Base: Add U+0E4E, U+0E5B glyphs to KaticaRegular10 font
...
This completes the entire Thai unicode range for KaticaRegular10 :^)
2022-07-02 00:55:03 +01:00
Thitat Auareesuksakul
c7b6114175
Base: Add U+0E4E, U+0E4F, U+0E5B glyphs to KaticaBold10 font
...
This completes the entire Thai unicode range for KaticaBold10 :^)
2022-07-02 00:54:49 +01:00
Linus Groh
3c9bf1e161
Base: Add example for calc(<percentage> - <length>)
to calc.html
...
`calc(<percentage> + -<length>)` did work before, but a direct
`calc(<percentage> - <length>)` was broken. Let's have a test for both.
2022-06-30 12:11:57 +01:00
Linus Groh
b3a22c97cd
Base: Fix label/actual style mismatches in calc.html
2022-06-30 12:11:57 +01:00
jmdeejay
c1acb587d7
Base: Add new Canadian keyboard mappings
2022-06-30 12:00:10 +01:00
Luke Wilde
dc805e6c81
Base: Sort the default content list in ascending order
2022-06-30 11:55:25 +02:00
Luke Wilde
b23819fb19
Base: Add 300+ ads and trackers to the default content filter list
...
This also starts making use of the fact we match on any part of the URL
to block on-site trackers such as the ones provided by Ezoic:
```
/greenoaks.gif?
/imp.gif?
/cmbdv2.js
/ezcl.webp?
```
This also promotes some subdomains to the eTLD+1 as I saw other
subdomains being used for these.
2022-06-30 11:55:25 +02:00
Luke Wilde
62491cda0b
LibWeb: Use CSO if running script is null in HostPromiseRejectionTracker
2022-06-29 21:21:50 +01:00
Linus Groh
cc4bb59a7e
Playground: Rename the application to GMLPlayground
...
Just "Playground" is too generic and doesn't match the general rule of
"application name equals display name minus spaces".
2022-06-28 21:10:10 +01:00
FrHun
a78f84645c
Base: Add manpages for new layout system
...
This is far from explaining all implications of the new layout system,
but it covers the basics.
2022-06-28 17:52:42 +01:00
Ali Mohammad Pur
135683795b
Spreadsheet: Throw if lookup value doesn't exist and no default is given
...
And explicitly state which value wasn't found and where in the error.
2022-06-26 22:21:17 +01:00
Ali Mohammad Pur
746b8ec8de
Spreadsheet: Make it possible to refer to ranges in other sheets
...
Now the range A0:C4 in a sheet named "foo" can be represented as:
R`sheet("foo"):A0:C4`
This makes it possible to do cross-sheet lookups and more.
2022-06-26 22:21:17 +01:00
Xexxa
b691269912
Base+Browser+BrowserSettings: Add default page for new tab
2022-06-26 22:18:30 +01:00
Xexxa
eb4ea45822
Base: Add Counting Rod Numerals to font Katica Regular 10
...
1D360–1D378 https://www.unicode.org/charts/PDF/U1D360.pdf
Co-authored-by: python-69 <102885151+python-69@users.noreply.github.com>
2022-06-24 22:50:13 +01:00
Xexxa
6cda017477
Base: Add Block Elements to font Katica Regular 10
...
2580–259F https://www.unicode.org/charts/PDF/U2580.pdf
Co-authored-by: python-69 <102885151+python-69@users.noreply.github.com>
2022-06-24 22:50:13 +01:00
Xexxa
f4c8c93119
Base: Add Buginese to font Katica Regular 10
...
1A00-1A1F https://www.unicode.org/charts/PDF/U1A00.pdf
Co-authored-by: python-69 <102885151+python-69@users.noreply.github.com>
2022-06-24 22:50:13 +01:00
MacDue
f807fe6f6c
Base: Add box-shadow + border-radius HTML examples
...
This now also shows the same box-shadows on the right on top of a
background to test the clipping underneath the content.
2022-06-23 19:13:24 +01:00
Ali Mohammad Pur
8e26edc8de
Base: Add a quote to the fortunes database
2022-06-22 20:58:14 +01:00
MacDue
92a1e9607d
Base: Document /proc/{pid}/children in proc(7) manpage
2022-06-22 13:29:17 +01:00
Michał Lach
e9dae38f38
Terminal+TerminalSettings: Add caret customization
2022-06-22 12:12:00 +01:00
Torstennator
5aeb6552f0
PixelPaint: Add level sliders for brightness, contrast and gamma
...
This patch adds a basic dialog to change brightness, contrast and gamma
correction for the selected layer.
2022-06-21 18:23:01 +01:00
kleines Filmröllchen
bca0e31cba
Base: Optimize a bunch of PNGs
...
These all save at least a couple of kilobytes.
2022-06-18 21:58:43 +04:30
MacDue
68bc742d9e
Base: Add <img> tag + border-radius HTML example
2022-06-16 10:28:07 +01:00
MacDue
51899751d7
Base: Add background-image + border-radius HTML examples
2022-06-16 10:28:07 +01:00
Xexxa
4f311d1660
Base: Add new font Katica Bold Oblique 10
...
0020-007E https://www.unicode.org/charts/PDF/U0000.pdf
2022-06-16 08:52:10 +01:00