Andrew Kaster
af9be6e093
LibTTF/LibGfx: Remove circular dependency by merging LibTTF into LibGfx
...
LibTTF has a concrete dependency on LibGfx for things like Gfx::Bitmap,
and LibGfx has a concrete dependency in the TTF::Font class in
Gfx::FontDatabase. This circular dependency works fine for Serenity and
Lagom Linux builds of the two libraries. It also works fine for static
library builds on Lagom macOS builds.
However, future changes will make Lagom use shared libraries, and
circular library dependencies are not tolerated in macOS.
2021-07-29 21:46:25 +01:00
Faeliore
08ddfb30d7
Base: Remove coffee theme height and width metrics
2021-07-29 21:27:24 +01:00
Faeliore
9fff0c77dc
Base: Make coffee theme icons smaller so they fit in the title bar
...
Fixes #4713
2021-07-29 21:27:24 +01:00
Luke
999448066f
Ports: Update bash to 5.1.8
...
Also switches to using a sha256 signature check.
2021-07-29 19:35:03 +01:00
Luke
e3b588a43d
Kernel+LibC: Add linger to sys/sockets.h
...
Also adds SO_BROADCAST in UnixTypes.h to match sys/sockets.h.
Required by bash 5.1.8.
2021-07-29 19:35:03 +01:00
Jelle Raaijmakers
6eb3bfb171
Ports: Update PHP to version 8.0.8
2021-07-29 15:58:38 +02:00
Jelle Raaijmakers
0d75637ffa
Ports: Add readline support to PHP
2021-07-29 15:58:38 +02:00
Jelle Raaijmakers
16dbba3b8f
Ports: Force cross compiling for zlib
...
By setting `--uname=Linux`, we tell `configure` to use the right tools
for cross compilation. Without this on e.g. macOS it would try to use
XCode's `libtool` which would then fail.
2021-07-29 15:58:38 +02:00
Jelle Raaijmakers
5bb64c57f9
Ports: Use sha256 sig check for zlib
2021-07-29 15:58:38 +02:00
Jelle Raaijmakers
79066e4b03
Ports: Remove outdated patch for OpenSSL
...
Additionally, this patch failed to apply on some versions of `patch`
since it was a git diff instead of a `diff -u` patch.
2021-07-29 15:58:38 +02:00
Jelle Raaijmakers
c9c3f6c20f
Ports: Use sha256 sig check for readline
2021-07-29 15:58:38 +02:00
Jelle Raaijmakers
8ab0518712
Ports: Use sha256 sig check for libiconv
2021-07-29 15:58:38 +02:00
Andreas Kling
58b5a8f3c0
AK: Update mmap name for MappedFiles on SerenityOS
...
Looking at process memory maps is a lot nicer when you can see the paths
of MappedFile mappings.
2021-07-29 15:01:47 +02:00
Andreas Kling
efa9627fc4
LibWeb: Remove unused enum value CSS::StyleValue::Position
...
CSS position values are just basic identifiers, they don't require
a custom StyleValue type.
2021-07-29 15:01:47 +02:00
Jelle Raaijmakers
d0be370568
Documentation: Always install e2fsprogs on MacOS
...
The `Meta/build-image-qemu.sh` script runs mke2fs in both the FUSE and
genext2fs options, so always install e2fsprogs.
2021-07-29 14:44:18 +02:00
Andreas Kling
f6ccff944a
Profiler: Don't perform disassembly when disassembly view is hidden
2021-07-29 11:44:39 +02:00
Marcus Nilsson
ebb96b7fea
SystemMonitor: Only update kill actions when pid changes
...
Return early from on_selection_change if the pid hasn't changed or we
get an invalid result from selected_id().
2021-07-29 11:44:26 +02:00
Marcus Nilsson
5fbb476856
SystemMonitor: Use kill(pid,0) when checking for kill permission
...
We can use kill(pid,0) to check for kill permissions instead of relying
on file path access. Using 0 as signal does error checking but does not
send a signal.
2021-07-29 11:44:26 +02:00
Conor Byrne
6aa2b7d4cc
HackStudio: Add GML Preview action tab
...
This allows us to show a GML Preview in realtime via
HackStudio::GMLPreviewWidget! :^)
2021-07-29 11:33:16 +02:00
Conor Byrne
0295cf96a8
HackStudio: Add autocompletion for GML files
2021-07-29 11:33:16 +02:00
Conor Byrne
2b5566d7cc
LibGUI+Playground: Move GMLAutocompleteProvider to LibGUI
2021-07-29 11:33:16 +02:00
Tobias Christiansen
4c17f389db
LibWeb: Add proper support for text-decoration-line property values
...
The code handling the rendering of the text-decoration-line got moved
into its own function to reduce clutter.
The CSS property text-decoration-line now supports underline, overline
and line-through.
2021-07-29 11:07:56 +02:00
Gunnar Beutner
b7ca269b4d
Kernel: Use our toolchain's c++filt tool for the kernel map
...
The host's version of c++filt might not work on some operating systems,
e.g. macOS.
2021-07-29 10:38:31 +02:00
Gunnar Beutner
a68d912dc0
Kernel: Embed the right symbol count into the kernel.map file on macOS
...
On macOS the wc tool prefixes its output with a bunch of spaces which
resulted in us incorrectly using "00000000" as the symbol count.
Fixes #9080 .
2021-07-29 10:38:31 +02:00
LuK1337
16006e2d8e
RunWindow: Center FilePicker window within the entire screen
...
It doesn't make much sense since to center run window within the parent
window since it's created in the bottom left corner of the screen.
2021-07-29 09:24:08 +02:00
LuK1337
ba119029dd
LibGUI: Allow to specify FilePicker window position
2021-07-29 09:24:08 +02:00
LuK1337
84ee95c346
LibGUI: Allow to specify position on screen for Dialog window
...
This change allows us to specify where on screen we'd like the Dialog
window to be drawn. By default it's set to CenterWithinParent which
may fall back to Center if parent window is unset or not visible on
screen.
2021-07-29 09:24:08 +02:00
Peter Elliott
5d6bf83374
LibCore: Prevent LockFile fd from leaking into child process
...
Fixes #9059
2021-07-29 07:58:17 +02:00
K-Adam
15cdb702c2
LibWeb: Handle comment blocks when skipping unknown @-rules
...
This css definition was parsed incorrectly before:
```css
@media screen {
/* Unclosed bracket in comment { */
body {
background: red;
}
}
```
2021-07-29 01:24:03 +02:00
Lennon Donaghy
e426e15101
Utilities: Make 'less' act more like 'more' when emulating 'more' :^)
2021-07-29 01:23:07 +02:00
Lennon Donaghy
e9bd81a6a0
Utilities: Add half-page scrolling + number modifiers to 'less'
...
- 'u' and 'd' now scroll up and down half a page
- Typing a number followed by 'j', 'k', 'return', 'up' or 'down' will
scroll that many lines in the appropriate direction
- Typing a number followed by 'g' or 'G' will scroll directly to the
line corresponding to that number
2021-07-29 01:23:07 +02:00
Lennon Donaghy
a071dba1ef
Utilities: Add fix for 'less' not buffering the correct number of lines
...
'down_n()' now correctly buffers the needed number of lines, previously
there were issues with using it to scroll much more than the existing
buffer.
2021-07-29 01:23:07 +02:00
Linus Groh
4e4d8d6905
LibJS: Reflect infallibility editorial changes in the Temporal spec
...
See:
- 3c0671f
- fe28b86
2021-07-28 23:48:56 +01:00
BuggieBot
6340aa11ce
Base: Add a quote to the fortunes database
...
[skip ci]
2021-07-28 23:33:57 +01:00
SeekingBlues
a13a5315a5
LibWeb: Fix incompatibility of attribute "contenteditable"
...
The previous behavior of mapping a missing value to the "inherit"
state is incompatible. Now, a missing value maps to the "true" state,
which is the expected behavior.
2021-07-28 23:47:58 +02:00
Gunnar Beutner
3cfb1787b8
Kernel: Print relative symbol addresses in dump_backtrace_impl
...
By subtracting the load base we get addresses which the user can paste
into addr2line.
2021-07-28 23:43:58 +02:00
Timothy Flynn
c4bfda7f7f
LibUnicode: Handle code points that are both cased and case-ignorable
...
Apparently, some code points fit both categories, for example U+0345
(COMBINING GREEK YPOGEGRAMMENI). Handle this fact when determining if
a code point is a final code point in a string.
2021-07-28 23:42:29 +02:00
Timothy Flynn
dff156b7c6
LibUnicode: Reduce Unicode data generator boilerplate
...
There's a fair amount of boilerplate when e.g. adding a new UCD file to
parse or a new enumeration to generate. Reduce the overhead by adding
helper lambdas. Also adds a couple missing spec links with UCD field
information.
2021-07-28 23:42:29 +02:00
Timothy Flynn
7827aede6f
LibUnicode: Check word break when deciding on case-ignorable code points
2021-07-28 23:42:29 +02:00
Timothy Flynn
12fb3ae033
LibUnicode: Download and parse the word break property list UCD file
...
Note that unlike the main property list, each code point has only one
word break property. Code points that do not have a word break property
are to be assigned the property "Other".
2021-07-28 23:42:29 +02:00
Timothy Flynn
c45a014645
LibUnicode: Check property list when deciding if a code point is cased
2021-07-28 23:42:29 +02:00
Timothy Flynn
38adfd8874
LibUnicode: Download and parse the property list UCD file
2021-07-28 23:42:29 +02:00
Linus Groh
c69d8b6925
js: Implement pretty-printing of Temporal.PlainTime objects
2021-07-28 21:57:30 +01:00
Linus Groh
5e64156fce
LibJS: Implement Temporal.Now.plainTimeISO()
2021-07-28 21:57:30 +01:00
Linus Groh
2aa2c56891
LibJS: Update Temporal.Now spec section numbers
...
The addition of @@toStringTag shifted them all by 1.
2021-07-28 21:57:30 +01:00
Linus Groh
817be1b292
LibJS: Handle PlainTime objects in GetTemporalCalendarWithISODefault
2021-07-28 21:57:30 +01:00
Linus Groh
c2d45e5a83
LibJS: Handle PlainTime objects in ToTemporalCalendar
2021-07-28 21:57:30 +01:00
Linus Groh
d3bed13f4b
LibJS: Implement Temporal.PlainTime.prototype.nanosecond
2021-07-28 21:57:30 +01:00
Linus Groh
65b90e93ad
LibJS: Implement Temporal.PlainTime.prototype.microsecond
2021-07-28 21:57:30 +01:00
Linus Groh
8bcccf2577
LibJS: Implement Temporal.PlainTime.prototype.millisecond
2021-07-28 21:57:30 +01:00