Gal Horowitz
8b78f2741d
Base: Add hebrew character glyphs to the Katica Regular 10 font
...
The newly drawn glyphs cover the Hebrew letters (U+05D0 - U+05EA).
2021-04-18 18:57:35 +02:00
Idan Horowitz
60f82e0626
FontEditor: Update GlyphMap on font type change
...
Since font type changes also change the amount of glyphs in a font, the
glyph map has to be re-rendered to properly showcase the change.
2021-04-18 18:57:35 +02:00
Idan Horowitz
f461ee7d01
LibGfx: Add support for fonts that include the Hebrew Unicode Block
2021-04-18 18:57:35 +02:00
Linus Groh
8d490aba76
LibJS: Implement console.assert()
2021-04-18 18:28:17 +02:00
Linus Groh
e37421bddc
Browser+WebContent: Fix HTML injection in console functions output
2021-04-18 18:28:17 +02:00
Linus Groh
a178255a8b
LibJS: Use 'if constexpr' / dbgln_if() instead of '#if LEXER_DEBUG'
2021-04-18 18:14:50 +02:00
Linus Groh
87a43fa87c
LibJS: Use 'if constexpr' instead of '#if HEAP_DEBUG'
2021-04-18 18:14:44 +02:00
Linus Groh
51676d7c33
LibJS: Use dbgln_if() instead of '#if OBJECT_DEBUG'
2021-04-18 18:10:42 +02:00
FalseHonesty
969c73660b
Meta: Mark x86 debug register macros as false positives for CI
2021-04-18 17:02:40 +02:00
FalseHonesty
52e194c543
HackStudio: Add ability to set hardware watchpoints on variables
...
We can now add a watchpoint to a variable by right clicking on it
in the variable view, and selecting add watchpoint. To remove a
watchpoint, the exact same action is repeated, except it will now say
remove watchpoint.
2021-04-18 17:02:40 +02:00
FalseHonesty
e0be8a3f59
HackStudio: Don't crash when invalid file is requested to be opened
...
Previously, if the running debugger asked for HackStudio to open
an invalid file, it would crash trying to switch to it. Now it will
just continue without switching the editor.
2021-04-18 17:02:40 +02:00
FalseHonesty
7a1396f509
LibDebug: Implement ability to set watchpoints
...
Now we can set hardware watchpoints for our variables! :^)
These watchpoints will be automatically removed when
they go out of scope.
2021-04-18 17:02:40 +02:00
FalseHonesty
3123ffb19d
Kernel: Add ptrace commands for reading/writing the debug registers
...
This adds PT_PEEKDEBUG and PT_POKEDEBUG to allow for reading/writing
the debug registers, and updates the Kernel's debug handler to read the
new information from the debug status register.
2021-04-18 17:02:40 +02:00
FalseHonesty
97a4c627cb
Kernel: Add debug register handling
...
This patch adds functions to read/write from the debug registers,
and implements storing/loading them across context switches.
2021-04-18 17:02:40 +02:00
Luke
c84107a1ab
Kernel: Add boot argument to disable the UHCI Controller
...
Helps with bare metal debugging, as we can't be sure our implementation
will work with a given machine.
As reported by someone on Discord, their machine hangs when we attempt
the dummy transfer.
2021-04-18 17:01:22 +02:00
Andreas Kling
e98091ad15
FileManager: Show action status tips in the status bar :^)
2021-04-18 16:44:00 +02:00
Andreas Kling
8cada904cc
Meta: Add a note about spell checking to CONTRIBUTING.md
...
It's silly to waste review cycles on spelling, so let's ask that
everyone check their spelling before submitting code.
2021-04-18 16:37:30 +02:00
Andreas Kling
12546259ff
Everywhere: Rename title_bar => titlebar
2021-04-18 16:35:18 +02:00
Gunnar Beutner
81daca5dd7
LibC: Implement assignment suppression for vsscanf
...
The vsscanf library function lets the user skip assigning
parsed values to the arguments, e.g. with %*c - even though
a character is scanned it is not assigned to one of the
arguments.
The figlet port uses this. With this patch the port is actually
usable.
2021-04-18 16:35:00 +02:00
Gunnar Beutner
f7c9cd06ac
Ports: Build shared library for libtiff
2021-04-18 16:35:00 +02:00
Gunnar Beutner
97ecdd5215
Ports: Fix the tarball hash for nasm
...
For some reason the hash was incorrect. Also, changed the hash
type to SHA256. We should consider deprecating everything other than
SHA256 maybe.
2021-04-18 16:35:00 +02:00
Gunnar Beutner
4104846bd1
Ports: Fix dependency and linker options for SDL2_image
2021-04-18 16:35:00 +02:00
Hendiadyoin1
f682c9f100
LibC: Add netinet/in_systm.h
2021-04-18 15:52:07 +02:00
Gunnar Beutner
05d140e7bd
Toolchain: Add missing buildstep calls
2021-04-18 15:51:56 +02:00
Gunnar Beutner
8a50c8431b
Toolchain: Cache the output of uname -s
2021-04-18 15:51:56 +02:00
Gunnar Beutner
c60f02fbc2
Toolchain: Build fix for macOS
...
Unfortunately their sed behaves a tiny bit different to how
GNU sed does.
2021-04-18 15:51:56 +02:00
Gunnar Beutner
07adbf19c4
LibDebug: Implement support for AttributeDataForm::Data8
...
I came across this while analyzing a crash dump for openttd.
2021-04-18 15:51:13 +02:00
AnotherTest
ae49171755
LibCrypto: Avoid creating bools from anything except bools
2021-04-18 14:18:16 +02:00
AnotherTest
db8f0a2fa6
LibCore: Remove the no-longer-used Core::DateTime::is_before() function
2021-04-18 14:18:16 +02:00
AnotherTest
38f4441103
LibTLS: Parse X.509 certificates with the new ASN.1 parser
...
As a nice side effect, also correctly test for certificate validity :^)
2021-04-18 14:18:16 +02:00
AnotherTest
13abbc5ea8
LibCrypto: Implement UTCTime and GeneralizedTime parsers
2021-04-18 14:18:16 +02:00
AnotherTest
39997e2ab1
LibCore: Implement operator less-than for Core::DateTime
...
that just compares their timestamps.
2021-04-18 14:18:16 +02:00
AnotherTest
ed28008d78
LibCrypo: Add an ASN.1/DER pretty-printer
...
It's much easier to debug things when we can actually *see* them :P
2021-04-18 14:18:16 +02:00
AnotherTest
65de2d236d
LibCrypto: Allow the user to override the DER read kind and class
...
This is useful for parsing non-universal types.
2021-04-18 14:18:16 +02:00
AnotherTest
581f9ff6bb
LibCrypto: Add the GeneralizedTime ASN.1 type
2021-04-18 14:18:16 +02:00
Linus Groh
a48d365046
Meta: Replace /bin/env with /usr/bin/envin serenity.sh shebang
...
This is more portable.
2021-04-18 14:01:52 +02:00
Sahan Fernando
45f97c1096
Kernel: Make VirtIOConsole block when VirtIOQueue is full
2021-04-18 13:04:55 +02:00
Idan Horowitz
5c924d395f
Meta: Disable discord notifications timeout
...
Since some builds can take even longer than 1 hour
(for example: f033416893
)
this commit just increases the timeout to be github's
own workflow timeout (effectively disabling it) and just
lets github handle it instead.
2021-04-18 12:47:50 +02:00
Andreas Kling
8d4780aff4
Meta: Add Gunnar Beutner to the contributors list :^)
2021-04-18 11:33:03 +02:00
Gunnar Beutner
f033416893
Kernel+LibC: Clean up how assertions work in the kernel and LibC
...
This also brings LibC's abort() function closer to the spec.
2021-04-18 11:11:15 +02:00
Gunnar Beutner
33a9b2a3c3
Ports: Enable building cmake on the host
2021-04-18 11:09:44 +02:00
Andreas Kling
f77100d66b
Browser: Add status tips to most of the actions
2021-04-18 10:58:22 +02:00
Andreas Kling
679feec195
Browser: Show status tips for any entered action
2021-04-18 10:58:22 +02:00
Andreas Kling
7ceb4f5330
LibGUI: Add some more status tips to common actions
2021-04-18 10:58:22 +02:00
Andreas Kling
a2086ad56e
LibGUI: Rename Action::long_text to Action::status_tip
...
This feels a bit more descriptive.
2021-04-18 10:58:22 +02:00
Gunnar Beutner
aa254ffd66
Meta: Update check-style.sh to ignore CVS $id$ tags
...
Userlands/Libraries/LibC/sys/exec_elf.h has an $id$ tag
which fails this lint check.
2021-04-18 10:55:25 +02:00
Gunnar Beutner
407b066ba4
Ports: Update the gcc port with the patches from the toolchain
2021-04-18 10:55:25 +02:00
Gunnar Beutner
6cb28ecee8
LibC+LibELF: Implement support for the dl_iterate_phdr helper
...
This helper is used by libgcc_s to figure out where the .eh_frame sections
are located for all loaded shared objects.
2021-04-18 10:55:25 +02:00
Gunnar Beutner
cf13fa57cd
Kernel: Allow system calls from the dynamic loader
...
Previously the dynamic loader would become unused after it had invoked
the program's entry function. However, in order to support exceptions
and - at a later point - dlfcn functionality we need to call back
into the dynamic loader at runtime.
Because the dynamic loader has a static copy of LibC it'll attempt to
invoke syscalls directly from its text segment. For this to work the
executable region for the dynamic loader needs to have syscalls enabled.
2021-04-18 10:55:25 +02:00
Gunnar Beutner
8dc375da96
LibElf: Allow PT_GNU_EH_FRAME program headers
...
These are built when compiling an executable with exception support.
2021-04-18 10:55:25 +02:00