Andreas Kling
80ce0419b6
LibWeb: Fix abspos flex container with height:auto getting zero height
...
When laying out abspos boxes, we compute the height twice: before and
after the inside of the box has been laid out.
The first pass allows percentage vertical values inside the box to be
resolved against the box's height. The second pass resolves the final
used value for the height of the box itself.
In cases where the box height depends on the results of inside layout,
we were incorrectly setting the box to having a definite zero height.
This led to incorrect results when sizing an abspos flex container,
since the FFC sizes containers (in row layouts) based on whether the
container has a definite height.
To avoid this problem, this patch adds an enum so we can differentiate
between the two abspos height computation passes. If the first pass
discovers a dependency on the inside layout, we simply bail out of
computing the height, leaving it as indefinite. This allows the FFC
to size its container correctly, and the correct height gets set by
the second pass.
2023-01-06 21:12:55 +01:00
Liav A
0f7cc468b2
Kernel: Make i8042 controller initialization sequence more robust
...
The setting of scan code set sequence is removed, as it's buggy and
could lead the controller to fail immediately when doing self-test
afterwards. We will restore it when we understand how to do so safely.
Allow the user to determine a preferred detection path with a new kernel
command line argument. The defualt option is to check i8042 presence
with an ACPI check and if necessary - an "aggressive" test to determine
i8042 existence in the system.
Also, keep the i8042 controller pointer on the stack, so don't assign
m_i8042_controller member pointer if it does not exist.
2023-01-06 11:09:56 +01:00
Sam Atkins
33b6ac0306
Base: Add some unlisted test pages to welcome.html
2023-01-05 18:54:33 +00:00
Timothy Flynn
dec96bb00f
Base: Remove some old, not particularly useful aliases from .shellrc
...
Things like games and demos don't really need aliases here.
2023-01-05 13:05:13 +00:00
martinfalisse
ba5e0607fd
Base: Add test page for table
2023-01-03 20:02:47 +01:00
Timothy Flynn
9c5915b5b4
Screensaver: Add a screensaver launcher application
...
Similar to the Settings application, this adds a single Screensaver
application to launch all screensaver demos. This is to declutter the
taskbar menu a bit.
2023-01-03 17:56:55 +01:00
Timothy Flynn
3d6b0e60ca
LibDesktop+Taskbar: Add an option to exclude apps from the system menu
...
We currently hard-code excluding Settings apps from the system menu.
This adds an "ExcludeFromSystemMenu" option to the AppFile configuration
to selectively exclude these apps, which all Settings app now set.
This is to allow selectively excluding a few Demo apps in a future
commit.
2023-01-03 17:56:55 +01:00
Timothy Flynn
10bf86de2c
Demos: Rename Screensaver to GradientScreensaver
...
This is to avoid naming conflicts with an upcoming Screensaver launcher
application.
2023-01-03 17:56:55 +01:00
Andreas Kling
0fe4f4fe53
Demos: Remove "Cube" application
...
This wasn't doing anything interesting enough to justify being its own
demo application. If we need a spinning cube, we can just load a cube
model into 3DFileViewer. :^)
2023-01-03 15:43:10 +01:00
Brandon Jordan
4321a7def1
Base+Userland: Add menu item icons
...
Base+Userland: Add menu item icons
This adds missing icons to Presenter Presentation menu.
This adds missing icon to Image Viewer View menu.
This adds a scale icon for the Image Viewer and Font Editor.
This moves the Fit Image to View icon to the 16x16 folder as it's now
used by Image Viewer and not only Pixel Paint.
This improves the fullscreen and play icons so that they fit together
better.
2023-01-02 09:56:05 -05:00
Andreas Kling
88ebc44cbf
Demos: Remove "Mouse" application
...
This was a plain-looking test app for debugging mouse events.
Mouse events work now, and if we want mouse testing facilities, they
can be added to MouseSettings instead.
2023-01-02 15:29:12 +01:00
Andreas Kling
6760653d62
Demos: Remove "Fire" application
...
This served no purpose other than looking somewhat neat.
2023-01-02 15:29:12 +01:00
kleines Filmröllchen
3df2eb66be
Base: Move GML Widget documentation to subsubsection
...
This is not only convenient, but also a subsection testcase :^)
2023-01-02 06:15:13 -07:00
kleines Filmröllchen
ad6cbc4192
Base: Move GML documentation into subsection
...
That was the whole point of this endeavour :^)
2023-01-02 06:15:13 -07:00
kleines Filmröllchen
f824a67b3b
Base: Document manpage structure separately
...
This section is now removed from Help(1) and man(1).
2023-01-02 06:15:13 -07:00
kleines Filmröllchen
b8e4e473e8
Base: Add 8 new emoji and improve consistency on one more
...
- 👐 U+1F450 Open Hands
- 🙌 U+1F64C Raising Hands is modified to match 👐 and other hand emoji.
- ✊ U+270A Raised Fist
- ✴️ U+2734 Eight-Pointed Star
- ❇️ U+2747 Sparkle
- ❎ U+274E Cross Mark Button
- ❤️🔥 U+2764 U+200D U+1F525 Heart on Fire
- 〰️ U+3030 Wavy Dash
2023-01-01 18:42:29 -05:00
Andreas Kling
16793d1c3d
Base: Remove /etc/motd
...
This was not used for anything.
2023-01-01 13:24:48 +01:00
Ben Wiederhake
b272b45137
Meta: Fix link to relocated intel.com webpage
...
Using archive.org, it appears that this page has moved at some point
between May 14, 2021, and December 22, 2022, for no discernible reason.
2022-12-31 13:00:13 -05:00
Ben Wiederhake
21b7c32af0
Meta: Fix link to wrong version of commit in Mitigations.md
...
The old commit seems to be the one from the PR, hence it is not in the
master branch.
2022-12-31 13:00:13 -05:00
Liav A
658f9eec6a
Utilities: Introduce the ldd utility
...
This utility lets a user to figure out what are the dependency libraries
for an ELF dynamic object, whether it's a dynamically loaded executable
or dynamically loaded library.
2022-12-31 05:06:39 -07:00
implicitfield
05334169cf
Themes: Add color schemes to all themes
2022-12-31 04:20:59 -07:00
implicitfield
4aec8491d6
Everywhere: Move Base/res/terminal-colors to Base/res/color-schemes
2022-12-31 04:20:59 -07:00
Liav A
e598f22768
Kernel: Disallow executing SUID binaries if process is jailed
...
Check if the process we are currently running is in a jail, and if that
is the case, fail early with the EPERM error code.
Also, as Brian noted, we should also disallow attaching to a jail in
case of already running within a setid executable, as this leaves the
user with false thinking of being secure (because you can't exec new
setid binaries), but the current program is still marked setid, which
means that at the very least we gained permissions while we didn't
expect it, so let's block it.
2022-12-30 15:49:37 -05:00
Xexxa
0e010790a4
Base: Add more emoji
...
🧑🍳 - U+1F9D1 U+200D U+1F373 COOK
🥷 - U+1F977 NINJA
💒 - U+1F492 WEDDING
➿ - U+27BF DOUBLE CURLY LOOP
2022-12-30 15:32:21 -05:00
Ravi J
3a31f37b3d
MouseSettings: Update "switch buttons" icon to reflect checkbox state
...
Using an additional "right button" variant of the graphic, it now
updates the icon based on the user's preference of primary button.
2022-12-30 09:20:42 -05:00
djwisdom
2ba66a9941
Documentation: Update FontEditor document to be in-sync with latest
2022-12-30 09:12:36 -05:00
Aliaksandr Kalenik
8259ff12bd
LibWeb: Margin bottom collapsing between parent and last child
2022-12-30 14:21:19 +01:00
Aliaksandr Kalenik
7088a87f49
LibWeb: Margin top collapsing between parent and first child
...
Implement collapsing of a box margin-top and first in-flow
child margin-top by saving function that updates y position
of containing block inside BlockMarginState and then for
every child until "non-collapsed through" child is reached
y position of containing block is updated by calling
update_box_waiting_fox_final_y_position_callback.
2022-12-30 14:21:19 +01:00
Xexxa
ec53d86534
Base: Add more emoji
...
🕵️ - U+1F575 DETECTIVE
🫂 - U+1FAC2 PEOPLE HUGGING
🦝 - U+1F99D RACCOON
🧄 - U+1F9C4 GARLIC
⛲ - U+26F2 FOUNTAIN
👢 - U+1F462 WOMAN’S BOOT
🖲️ - U+1F5B2 TRACKBALL
📚 - U+1F4DA BOOKS
📇 - U+1F4C7 CARD INDEX
🗃️ - U+1F5C3 CARD FILE BOX
🧹 - U+1F9F9 BROOM
🚸 - U+1F6B8 CHILDREN CROSSING
👩❤️👩 - U+1F469 U+200D U+2764 U+200D U+1F469
COUPLE WITH HEART: WOMAN, WOMAN
2022-12-29 16:17:53 -05:00
Tom
bb062e50b0
LibWeb: Don't expand grid for {row,column} spans
...
Fixes a bug where when you had spans that that were bigger than the
grid, would create enough tracks to accomodate them. When a fixed
position is given, there should be at a minimum a row/column available
for the track. The span will be truncated if there is no space for it
later.
2022-12-28 15:04:58 +01:00
Liav A
8c9128f36d
Documentation: Remove i686 support
2022-12-28 11:53:41 +01:00
Timothy Flynn
d3eb4f7a41
Base: Remove UserspaceEmulator from the list of manual pages to verify
...
This is used during CI to verify that some manual pages are up to date
with the output of the corresponding program's --help option. UE does
not exist on x86_64 yet, so we cannot run `UE --help`. Remove it from
this list for now.
2022-12-28 11:53:41 +01:00
Florian Cramer
379e4a2432
Browser: Escape question marks for google.com urls in content filter
...
This makes it possible to load today''s doodle, which is loaded from
http://www.google.com/logos/doodles/ ...
2022-12-27 07:28:25 +03:30
Tom
9d5049230c
LibWeb: Clamp {row,column} spans if outside of grid
...
A bug was found where grid items were being drawn outside of the grid if
the item had a large span and the grid was defined as having gaps
between the rows/columns.
This was caused by an erroneous calculation of the
{row,column}_{start,span} properties.
2022-12-26 16:02:48 +01:00
Liav A
ca134e8bfa
Base: Mention pledge promise for jail-specific syscalls
2022-12-26 04:59:54 +03:30
Xexxa
26fb41d1f8
Base: Adjust emoji
...
🥕 - U+1F955 CARROT
Add some shadow
🔝 - U+1F51D TOP ARROW
Adjust "o" in emoji
2022-12-25 15:50:58 +01:00
Xexxa
b89bdd9497
Base: Add more emoji
...
💞 - U+1F49E REVOLVING HEARTS
🧅 - U+1F9C5 ONION
🎾 - U+1F3BE TENNIS
🛷 - U+1F6F7 SLED
👛 - U+1F45B PURSE
🎼 - U+1F3BC MUSICAL SCORE
🧻 - U+1F9FB ROLL OF PAPER
㊗️ - U+3297 JAPANESE “CONGRATULATIONS” BUTTON
❤️🩹 - U+2764 U+200D U+1FA79 MENDING HEART
👩❤️👩 - U+1F469 U+200D U+2764 U+200D U+1F469
COUPLE WITH HEART: WOMAN, WOMAN
👨👩👦 - U+1F468 U+200D U+1F469 U+200D U+1F466
FAMILY: MAN, WOMAN, BOY
👨👩👧 - U+1F468 U+200D U+1F469 U+200D U+1F467
FAMILY: MAN, WOMAN, GIRL
👨👨👦 - U+1F468 U+200D U+1F468 U+200D U+1F466
FAMILY: MAN, MAN, BOY
👨👨👧 - U+1F468 U+200D U+1F468 U+200D U+1F467
FAMILY: MAN, MAN, GIRL
👩👩👦 - U+1F469 U+200D U+1F469 U+200D U+1F466
FAMILY: WOMAN, WOMAN, BOY
👩👩👧 - U+1F469 U+200D U+1F469 U+200D U+1F467
FAMILY: WOMAN, WOMAN, GIRL
👨👦 - U+1F468 U+200D U+1F466 FAMILY: MAN, BOY
👨👧 - U+1F468 U+200D U+1F467 FAMILY: MAN, GIRL
👨👧👦 - U+1F468 U+200D U+1F467 U+200D U+1F466
FAMILY: MAN, GIRL, BOY
👨👧👧 - U+1F468 U+200D U+1F467 U+200D U+1F467
FAMILY: MAN, GIRL, GIRL
🪒 - U+1FA92 RAZOR
2022-12-25 15:50:58 +01:00
Liav A
2b5d7a8a72
Base: Mention new immutable memory mappings security feature
2022-12-22 20:32:57 -08:00
Sam Atkins
c4e8509aac
Base: Unquote the timestamp in a quote
...
`fortune` was failing to read this and treating the timestamp as 0.
The irony in this being a quote about the absence of boogs is not lost
on me. :^)
2022-12-22 14:13:47 +00:00
kleines Filmröllchen
00db1dffa8
Base: Add a quote to the fortunes database
2022-12-22 08:57:18 +00:00
Bruno Conde
7e9019a9c3
LibGfx: Support BMP favicons with less than 32 bpp
...
Adapt BMPImageDecoderPlugin to support BMP images included in ICOns.
ICOImageDecoderPlugin now uses BMPImageDecoderPlugin to decode all
BMP images instead of it's own ad-hoc decoder which only supported
32 bpp BMPs.
2022-12-20 10:26:55 +01:00
Timothy Slater
7b4e5d6ac0
PixelPaint: Add Text Tool
2022-12-16 10:14:20 +00:00
Federico Guerinoni
43ff500a80
LibCore: Use ';' to split socket path in SOCKET_TAKEOVER
...
This allow to use socket path with spaces inside.
Closes #16436 .
2022-12-15 12:33:36 -05:00
Edward Banner
a3423f2af2
Base: Add man page for the dd command
...
Base: Add man page for the dd command
2022-12-15 12:09:43 +00:00
kleines Filmröllchen
e6a8bd1058
Base: Add a quote to the fortunes database
2022-12-14 15:07:35 +00:00
Andreas Kling
7a51e846b2
Base: Add two HTML test pages for DOM cloneNode() functionality
2022-12-14 15:21:48 +01:00
Xexxa
8379b87d4e
Base: Adjust size of emoji flags
...
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0030 U+E0035 U+E007F
UA-05 Vinnychchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0030 U+E0037 U+E007F
UA-07 Volyn
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0030 U+E0039 U+E007F
UA-09 Luhanshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0031 U+E0032 U+E007F
UA-12 Dnipropetrovshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0031 U+E0034 U+E007F
UA-14 Donechchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0031 U+E0038 U+E007F
UA-18 Zhytomyrshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0032 U+E0031 U+E007F
UA-21 Zakarpattia
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0032 U+E0033 U+E007F
UA-23 Zaporizhzhya
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0032 U+E0036 U+E007F
UA-26 Prykarpattia
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0033 U+E0030 U+E007F
UA-30 Kiev
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0033 U+E0032 U+E007F
UA-32 Kyivshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0033 U+E0035 U+E007F
UA-35 Kirovohradschyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0034 U+E0030 U+E007F
UA-40 Sevastopol
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0034 U+E0033 U+E007F
UA-43 Crimea
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0034 U+E0036 U+E007F
UA-46 Lvivshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0034 U+E0038 U+E007F
UA-48 Mykolayivschyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0035 U+E0031 U+E007F
UA-51 Odeshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0035 U+E0033 U+E007F
UA-53 Poltavshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0035 U+E0036 U+E007F
UA-56 Rivnenshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0035 U+E0039 U+E007F
UA-59 Sumshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0036 U+E0031 U+E007F
UA-61 Ternopilshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0036 U+E0033 U+E007F
UA-63 Kharkivshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0036 U+E0035 U+E007F
UA-65 Khersonshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0036 U+E0038 U+E007F
UA-68 Khmelnychchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0037 U+E0031 U+E007F
UA-71 Cherkashchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0037 U+E0034 U+E007F
UA-74 Chernihivshchyna
🏴 - U+1F3F4 U+E0075 U+E0061 U+E0037 U+E0037 U+E007F
UA-77 Chernivtsi Oblast
2022-12-14 09:59:19 +00:00
Tim Schumacher
ceb118e1fa
Base: Reenable the disabled LibCore::Stream tests
2022-12-13 11:34:38 +01:00
Oleg Kosenkov
28bb3367cb
Games: Add ColorLines
2022-12-12 17:30:04 +00:00
Andrea Giancola
21647b9a4e
Games: Add help entries for Solitaire and Spider
2022-12-12 16:25:46 +00:00
kleines Filmröllchen
7a5ceebb50
Base: Add a quote to the fortunes database
2022-12-11 11:32:29 +00:00
Andrew Kaster
bee31d2f90
Base: Add extra sync to run-tests-and-shutdown.sh
...
This shouldn't be necessary but reproducing the odd corrupted profile
data from the nightly Azure runs is proving tricky locally. Hopefully
this will mitigate the issue.
2022-12-10 11:51:16 +00:00
Liav A
905becc991
Base: Add a note about Jails open access in the Mitigations(7) document
2022-12-09 23:09:00 -07:00
Xexxa
23b07b3408
Base: Add emoji flags for French subdivisions
...
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E0062 U+E0072 U+E0065 U+E007F FR-BRE
Bretagne
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E006F U+E0063 U+E0063 U+E007F FR-OCC
Occitanie
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E006E U+E0061 U+E0071 U+E007F FR-NAQ
Nouvelle-Aquitaine
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E0070 U+E0061 U+E0063 U+E007F FR-PAC
Provence-Alpes-Côte-d’Azur
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E006E U+E006F U+E0072 U+E007F FR-NOR
Normandie
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E0070 U+E0064 U+E006C U+E007F FR-PDL
Pays-de-la-Loire
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E0063 U+E006F U+E0072 U+E007F FR-COR
Corse
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E0061 U+E0072 U+E0061 U+E007F FR-ARA
Auvergne-Rhône-Alpes
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E0063 U+E0076 U+E006C U+E007F FR-CVL
Centre-Val de Loire
🏴 -
U+1F3F4 U+E0066 U+E0072 U+E0062 U+E0066 U+E0063 U+E007F FR-BFC
Bourgogne-Franche-Comté
2022-12-09 18:50:52 +00:00
FrHun
59028515c0
LibGUI: Split OpacitySlider into vertical and horizontal helper classes
2022-12-09 00:25:30 +01:00
Xexxa
f4f5b045ca
Base: Add more emoji
...
🫷 - U+1FAF7 LEFTWARDS PUSHING HAND
🫸 - U+1FAF8 RIGHTWARDS PUSHING HAND
⛷️ - U+26F7 SKIER
🫏 - U+1FACF DONKEY
🐔 - U+1F414 CHICKEN
🌹 - U+1F339 ROSE
🪻 - U+1FABB HYACINTH
🗺️ - U+1F5FA WORLD MAP
🚏 - U+1F68F BUS STOP
🛥️ - U+1F6E5 MOTOR BOAT
🎗️ - U+1F397 REMINDER RIBBON
🥅 - U+1F945 GOAL NET
🪇 - U+1FA87 MARACAS
✏️ - U+270F PENCIL
✒️ - U+2712 BLACK NIB
🗂️ - U+1F5C2 CARD INDEX DIVIDERS
⚒️ - U+2692 HAMMER AND PICK
🔩 - U+1F529 NUT AND BOLT
⚖️ - U+2696 BALANCE SCALE
🔗 - U+1F517 LINK
🛋️ - U+1F6CB COUCH AND LAMP
2022-12-07 23:47:27 +00:00
Xexxa
b63ce06604
Base: Adjust emoji
...
🖕 - U+1F595 MIDDLE FINGER
🖋️ - U+1F58B FOUNTAIN PEN
Remove left padding
✈️ - U+2708 AIRPLANE
Make plane motors symmetrical
2022-12-07 23:47:27 +00:00
Linus Groh
6e19ab2bbc
AK+Everywhere: Rename String to DeprecatedString
...
We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
2022-12-06 08:54:33 +01:00
Filiph Sandström
5a083c03a6
WindowServer: Add "Natural scrolling" support
...
Also commonly referred to as "reverse scrolling" or "inverted
scrolling".
2022-12-04 19:32:43 +00:00
Alec Murphy
8677dbfc7f
Utilities: Add strings
2022-12-04 12:08:48 +00:00
MacDue
cdf6e568f6
Base: Add some repeating-radial-gradient()
HTML examples
2022-12-03 09:06:51 -05:00
Liav A
756d2a7f63
Base: Add a description about Jails to the Mitigations(7) document
...
We add a new document entry to mention jailed processes' restrictions,
so it is clear which restrictions apply when using Jails.
2022-12-03 05:47:58 -07:00
Timothy Flynn
4a30446999
LibWeb: Support displaying HTMLInputElement placeholder values
...
This adds support for parsing the ::placeholder pseudo-element and
injecting an anonymous layout node with that element when the input
element's data is empty.
2022-12-01 11:18:11 -05:00
MacDue
cdbb2cc917
Base: Add some radial-gradient()
HTML examples
2022-11-30 14:24:04 +00:00
Sam Atkins
fc86ea7e5b
Base: Use spaces instead of underscores to separate emoji codepoints
...
This broke the build, oops!
2022-11-30 12:24:52 +00:00
Xexxa
01653bd94b
Base: Add emoji flags for provinces in Liberia
...
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0062_U+E006D_U+E007F LR-BM
Bomi
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0062_U+E0067_U+E007F LR-BG
Bong
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0067_U+E0070_U+E007F LR-GP
Gbarpolu
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0067_U+E0062_U+E007F LR-GB
Grand Bassa
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0063_U+E006D_U+E007F LR-CM
Grand Cape Mount
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0067_U+E0067_U+E007F LR-GG
Grand Gedeh
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0067_U+E006B_U+E007F LR-GK
Grand Kru
🏴 - U+1F3F4_U+E006C_U+E0072_U+E006C_U+E006F_U+E007F LR-LO
Lofa
🏴 - U+1F3F4_U+E006C_U+E0072_U+E006D_U+E0067_U+E007F LR-MG
Margibi
🏴 - U+1F3F4_U+E006C_U+E0072_U+E006D_U+E006F_U+E007F LR-MO
Montserrado
🏴 - U+1F3F4_U+E006C_U+E0072_U+E006D_U+E0079_U+E007F LR-MY
Maryland
🏴 - U+1F3F4_U+E006C_U+E0072_U+E006E_U+E0069_U+E007F LR-NI
Nimba
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0072_U+E0069_U+E007F LR-RI
Rivercess
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0072_U+E0067_U+E007F LR-RG
River Gee
🏴 - U+1F3F4_U+E006C_U+E0072_U+E0073_U+E0069_U+E007F LR-SI
Sinoe
2022-11-30 12:13:13 +00:00
martinfalisse
f351418a1e
LibWeb: Include tests for grid track spans
...
Include tests for grid track spans when given for automatically-placed
grid tracks in the grid-*-end properties.
2022-11-29 19:27:31 +01:00
Sam Atkins
33041f3a71
Base: Update and expand profile(1) manpage
2022-11-29 18:54:27 +01:00
Andreas Kling
e3b8a8f7c8
LibWeb: Treat unresolvable percentage width on inline-block as auto
2022-11-28 19:14:05 +01:00
Andreas Oppebøen
93f85f1a09
Base: Set transparent rubber band for all themes
...
The rubber band is the rectangle indicating the selection region on the
desktop, the file manager, and other icon views. If this region is
painted opaque with alpha=ff, the rectangle obscures the icons
underneath, harming the user experience. We set it to 3c like the other
themes.
2022-11-27 11:02:04 -05:00
Liav A
8e16588757
Utilities+Base: Add unveil utility
...
This utility essentially creates a filesystem sandbox for a specified
command, so it can be tested with only the unveiled paths the user
specifies beforehand.
2022-11-26 12:42:15 -07:00
thankyouverycool
e50a43652e
Base: Add icon for Office application category
...
A trusty briefcase for the salt mine.
2022-11-26 12:58:33 +01:00
Liav A
9f571e0dae
Userland: Enhance jail-attach utility to support existing and new jails
...
The Core::System::create_jail function already provided the new jail
index as a result, so it was just a matter of using it when calling the
LibCore join_jail function to use the new jail.
2022-11-26 01:47:50 -07:00
Timothy Slater
3d542b0c38
PixelPaint: Add lasso selection tool
...
Lasso selection works by allowing the user to draw an arbitrary shape
much like the pen tool and ensuring the shape is closed by connecting
the start/end points when the user is done drawing. Everything inside
the shape becomes the selection.
Selection is determined via an outer flood fill. We begin a flood fill
from a point that is guaranteed to be outside of the drawn shape, and
anything the fill doesn't touch is determined to be the selection
region.
2022-11-25 22:52:45 +01:00
Andreas Kling
c884aa3f25
Base: Add a test for [SameObject] behavior in LibWeb
2022-11-25 22:49:59 +01:00
kleines Filmröllchen
66c903424c
Base: Add an example presentation
...
This contains CatDog and uses most of the currently supported features.
2022-11-25 14:28:33 -07:00
kleines Filmröllchen
de44d6c0a6
Applications: Add Presenter
...
This version can already:
- load all of the defined file format except for the image type and the
frame-specific stuff
- navigate frames and slides (though frames are mostly stubbed out)
- display text with various common settings
- displays text with various fitting and scaling methods
- scale and position objects correctly no matter the window size
2022-11-25 14:28:33 -07:00
kleines Filmröllchen
295f83e54c
Base: Document Presenter and its file format
2022-11-25 14:28:33 -07:00
kleines Filmröllchen
2be89597a8
Base: Create "Office" Application category
...
This category includes anything useful for getting work done with your
computer. It is mostly a split-off from the Utilites category which was
becoming very large.
2022-11-25 14:28:33 -07:00
Xexxa
2f7873d427
Base: Add emoji for current and former Norwegian subdivisions
...
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0031 U+E007F NO-01
Østfold
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0033 U+E007F NO-03
Oslo
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0034 U+E007F NO-04
Hedmark
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0035 U+E007F NO-05
Oppland
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0036 U+E007F NO-06
Buskerud
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0039 U+E007F NO-09
Aust-Agder
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0030 U+E007F NO-10
Vest-Agder
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0032 U+E007F NO-12
Hordaland
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0034 U+E007F NO-14
Fjordane
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0035 U+E007F NO-15
Møre og Romsdal
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0036 U+E007F NO-16
Sør-Trøndelag
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0037 U+E007F NO-17
Nord-Trøndelag
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0038 U+E007F NO-18
Nordland
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0039 U+E007F NO-19
Troms
🏴 - U+1F3F4 U+E006E U+E006F U+E0032 U+E0031 U+E007F NO-21
Svalbard
🏴 - U+1F3F4 U+E006E U+E006F U+E0032 U+E0032 U+E007F NO-22
Jan Mayen
🏴 - U+1F3F4 U+E006E U+E006F U+E0032 U+E0033 U+E007F NO-23
Trøndelag
🏴 - U+1F3F4 U+E006E U+E006F U+E0033 U+E0030 U+E007F NO-30
Viken
🏴 - U+1F3F4 U+E006E U+E006F U+E0033 U+E0034 U+E007F NO-34
Innlandet
🏴 - U+1F3F4 U+E006E U+E006F U+E0034 U+E0032 U+E007F NO-42
Agder
🏴 - U+1F3F4 U+E006E U+E006F U+E0034 U+E0036 U+E007F NO-46
Vestland
🏴 - U+1F3F4 U+E006E U+E006F U+E0035 U+E0030 U+E007F NO-50
Trøndelag
🏴 - U+1F3F4 U+E006E U+E006F U+E0035 U+E0034 U+E007F NO-54
Troms og Finnmark
2022-11-24 10:06:42 +00:00
martinfalisse
0c577b4b3b
Base: Add test for multiple line names in CSS Grid
2022-11-21 21:48:25 +00:00
Xexxa
f5a3355639
Base: Add more emoji
...
🧔 - U+1F9D4 PERSON: BEARD
🧔♂️ - U+1F9D4 U+200D U+2642 MAN: BEARD
💂 - U+1F482 GUARD
💂♂️ - U+1F482 U+200D U+2642 MAN GUARD
💂♀️ - U+1F482 U+200D U+2640 WOMAN GUARD
🧗♂️ - U+1F9D7 U+200D U+2642 MAN CLIMBING
🧗♀️ - U+1F9D7 U+200D U+2640 WOMAN CLIMBING
🗣️ - U+1F5E3 SPEAKING HEAD
🐵 - U+1F435 MONKEY FACE
🐈⬛ - U+1F408 U+200D U+2B1B BLACK CAT
🐯 - U+1F42F TIGER FACE
🐴 - U+1F434 HORSE FACE
🐎 - U+1F40E HORSE
🪿 - U+1FABF GOOSE
🐲 - U+1F432 DRAGON FACE
🍂 - U+1F342 FALLEN LEAF
🪹 - U+1FAB9 EMPTY NEST
🪺 - U+1FABA NEST WITH EGGS
🫚 - U+1FADA GINGER ROOT
🍮 - U+1F36E CUSTARD
⛺ - U+26FA TENT
🛣️ - U+1F6E3 MOTORWAY
🛤️ - U+1F6E4 RAILWAY TRACK
✈️ - U+2708 AIRPLANE
🪭 - U+1FAAD FOLDING HAND FAN
🎓 - U+1F393 GRADUATION CAP
🪘 - U+1FA98 LONG DRUM
☎️ - U+260E TELEPHONE
🦯 - U+1F9AF WHITE CANE
🚮 - U+1F6AE LITTER IN BIN SIGN
↩️ - U+21A9 RIGHT ARROW CURVING LEFT
↪️ - U+21AA LEFT ARROW CURVING RIGHT
2022-11-16 21:43:33 +00:00
Xexxa
332061e002
Base: Adjust emoji
...
🌬️ - U+1F32C WIND FACE
🇪🇪 - U+1F1EA U+1F1EA FLAG: ESTONIA
2022-11-16 21:43:33 +00:00
Xexxa
2c8e161f2d
Base: Add more emoji subdivision flags
...
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0032 U+E007F NO-02
Akershus
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0037 U+E007F NO-07
Vestfold
🏴 - U+1F3F4 U+E006E U+E006F U+E0030 U+E0038 U+E007F NO-08
Telemark
🏴 - U+1F3F4 U+E006E U+E006F U+E0031 U+E0031 U+E007F NO-11
Rogaland
🏴 - U+1F3F4 U+E006E U+E006F U+E0032 U+E0030 U+E007F NO-20
Finnmark
🏴 - U+1F3F4 U+E006E U+E006F U+E0033 U+E0038 U+E007F NO-38
Vestfold og Telemark
🏴 - U+1F3F4 U+E007A U+E0077 U+E0068 U+E0061 U+E007F ZW-HA
Harare
2022-11-16 21:43:33 +00:00
Xexxa
4e3498c388
Base: Add new yaks to emoji-serenity.txt
...
- U+10CD24 Yakslow
- U+10CD25 Buffyak
- U+10CD26 Yaktrap
- U+10CD6A Yakthink
- U+10CD6B Hyperyakkie
2022-11-16 21:43:33 +00:00
Timothy Flynn
894bddf62c
Base: Add a simple test page for window.prompt
...
The window prototypes alert, confirm, and prompt must "pause" execution
until a response is received from the user. This test page is meant to
ensure that a timeout queued before a prompt is not executed until after
that prompt is closed.
2022-11-16 17:23:56 +00:00
martinfalisse
70559e9d14
Base: Add test for grid-gap and auto-fit
2022-11-16 00:53:00 +01:00
Samuel Bowman
025c16a6f9
Base: Mark PartitionEditor as requiring root
2022-11-14 14:58:10 +00:00
Moustafa Raafat
f5a2603714
Keymaps: Add Arabic keymap
2022-11-13 17:51:52 -07:00
jahway603
e9ca641d45
Base: Add manpages for which(1) and stat(1)
2022-11-07 19:19:09 +00:00
MacDue
d5cf403f70
Base: Add some repeating-conic-gradient()
test cases
2022-11-07 13:13:22 +00:00
Brianna
5822bc9cb5
Base: Add media emojis
...
Added
🔀 - U+1F500 Shuffle Tracks Button
🔁 - U+1F501 Repeat Button
🔂 - U+1F502 Repeat Single
🔃 - U+1F503 Clockwise Vertical Arrows
🔄 - U+1F504 Counterclockwise Arrows Button
🔙 - U+1F519 Back Arrow
Fixed color consistency
🔠 - U+1F520 Input latin uppercase
🔡 - U+1F521 Input latin lowercase
🔢 - U+1F522 Input numbers
🔣 - U+1F523 Input symbols
🔤 - U+1F524 Input latin letters
2022-11-07 12:26:01 +00:00
martinfalisse
0586730a92
Base: Add tests for grid gap
2022-11-07 10:06:07 +01:00
Slimey
e00b16460c
Base+VideoPlayer: Add an icon for video player
...
Co-authored-by: TreuKS <ks2225@protonmail.com>
2022-11-06 22:27:22 -08:00
Slimey
fb71df5cb1
Base: Add appropriate entries for VideoPlayer
...
VideoPlayer will now show up in the Media category, and `vp` is now
an alias for it.
2022-11-06 16:27:18 +01:00
Slimey
ce75a04908
Base+Ports: Rename 'Sound' category to 'Media'
2022-11-06 16:27:18 +01:00
martinfalisse
13ac078202
Base: Add test for sizing children of grid
2022-11-06 13:23:33 +01:00
MacDue
d66b219453
Base: Add some extra conic-gradient()
test cases
...
This adds a test of a conic-gradient() with just a center position
and no starting angle.
This also adds a gradient that gives each quadrant a different color,
this is very sensitive to the center position being correct.
2022-11-06 01:42:55 +00:00
Liav A
8d8b0d0a34
Userland: Add support for jails
...
This happens in two ways:
1. LibCore now has two new methods for creating Jails and attaching
processes to a Jail.
2. We introduce 3 new utilities - lsjails, jail-create and jails-attach,
which list jails, create jails and attach processes to a Jail,
respectively.
2022-11-05 18:00:58 -06:00
Liav A
942e262e86
Base: Add information about the new /sys/kernel/jails node
2022-11-05 18:00:58 -06:00
Oleg Kosenkov
46c6176fad
Games: Add BrickGame
2022-11-05 16:35:13 -06:00
Andreas Kling
7809cc6557
LibWeb: Use preferred flex item sizes as min/max-content contribution
...
When a flex item has a specific preferred size, that size should be its
contribution to the containers intrinsic sizes.
This fixes an issue on Patreon where the logo would cover the entire
viewport since the SVG had a large intrinsic size but the flex item
containing it had a small specified size in CSS.
2022-11-05 11:42:19 +01:00
Timothy Flynn
9564f04fa6
Base: Add a disabled button to the button.html test page
2022-11-03 19:15:43 +00:00
Nico Weber
daeaefad17
Everywhere: Clean up "the the" comment typos
2022-11-03 17:38:32 +00:00
implicitfield
7eca8f7e62
Games: Add Flood
2022-11-03 01:02:56 -06:00
demostanis
e03f014e7a
Base: Update tail(1) man page
2022-11-02 21:29:20 -06:00
MacDue
d6334dcab1
Base: Add some conic-gradient()
HTML examples
2022-11-01 23:07:05 +00:00
premek
92efa21727
Base: Add Black&White Square Button emoji
...
🔲 - U+1F532 Black Square Button
🔳 - U+1F533 White Square Button
2022-11-01 11:00:17 +00:00
martinfalisse
937fcfc75c
LibWeb+Base: Use line names for positioning grid items
...
When there are grid tracks with line names, use these to resolve
line-names passed to positioned grid items.
2022-11-01 11:19:41 +01:00
Timothy Flynn
2d7ad6dbe6
CI: Remove the manpage generator error file upon success
...
On some systems, just specifying "2> error_file" will create the file,
even if nothing is logged to it.
2022-10-31 18:25:01 -04:00
Timothy Flynn
9e9a07415e
CI: Ensure the manpage generation step shuts down the VM on failure
...
Currently, if the script fails, it simply runs "exit 1". This exits the
script, but keeps the VM running, so CI hangs until it times out.
Instead of exiting, write a failure status to an error log and shutdown.
CI can then read that error log and fail the run if needed.
2022-10-31 22:10:14 +00:00
premek
429bd32016
Base: Add Scissors & arrows emoji
...
✂️ - U+2702 Scissors
➡️ - U+27A1 Right Arrow
⤴️ - U+2934 Right Arrow Curving Up
⤵️ - U+2935 Right Arrow Curving Down
⬅️ - U+2B05 Left Arrow
⬆️ - U+2B06 Up Arrow
⬇️ - U+2B07 Down Arrow
2022-10-31 10:39:42 +00:00
implicitfield
cea7386ea8
Base: Set PATH in text mode
2022-10-31 00:02:34 +01:00
premek
63122d0276
Base: Add Houses, Safety pin emoji
...
🧷 - U+1F9F7 Safety Pin
🏘 - U+1F3D8 House Buildings
2022-10-29 23:49:21 +01:00
Xexxa
c2e2b9d2ae
Base: Add more yak emoji
...
- U+10CD24 Yakslow
- U+10CD25 Buffyak
- U+10CD26 Yaktrap
- U+10CD6A Yakthink
- U+10CD6B Hyperyakkie
2022-10-29 18:54:08 +01:00
Xexxa
35dbef9808
Base: Add more emoji
...
🧔♀️ - U+1F9D4 U+200D U+2640 WOMAN: BEARD
🧝♂️ - U+1F9DD U+200D U+2642 MAN ELF
🧗 - U+1F9D7 PERSON CLIMBING
🦕 - U+1F995 SAUROPOD
🦖 - U+1F996 T-REX
💱 - U+1F4B1 CURRENCY EXCHANGE
🌬️ - U+1F32C WIND FACE
2022-10-29 18:54:08 +01:00
Xexxa
a1ffb7a5d3
Base: Adjust size of emoji U+26A7
...
⚧️ - U+26A7 TRANSGENDER SYMBOL
2022-10-29 18:54:08 +01:00
Xexxa
dcad3ee05f
Base: Add U+2264 and U+2265 to Katica Regular 12
...
2264-2265 https://www.unicode.org/charts/PDF/U2200.pdf
2022-10-29 18:54:08 +01:00
premek
bddc9d6c52
Spreadsheet: Fix maxIf and minIf name in documentation
2022-10-29 06:29:11 +03:30
codelikecraze
7fd0035600
Base: Add Transgender Emoji (⚧ U+2617)
...
This commit adds a trans emoji
2022-10-27 20:40:27 +01:00
Beckett Normington
3c76f58999
Base: Add elephant emoji (U+1F418)
...
Emoji added:
🐘 - U+1F418 ELEPHANT
2022-10-27 13:08:36 +02:00
kleines Filmröllchen
90d967baf1
Base: Document scheduler_{get,set}_parameters syscalls
2022-10-27 11:30:19 +01:00
Timothy Flynn
23afb59a3d
Base: Remove invalid U+1F5CBC emoji image
...
This code point is invalid. It was meant to be U+1F5BC, but we already
have an icon for that emoji.
2022-10-26 18:40:20 +01:00
Liav A
a0c41fc3f0
Base: Describe the moved SysFS power_state node in SysFS document
2022-10-25 15:33:34 -06:00
Liav A
75f01692b4
Kernel+Userland: Move /sys/firmware/power_state to /sys/kernel directory
...
Let's put the power_state global node into the /sys/kernel directory,
because that directory represents all global nodes and variables being
related to the Kernel. It's also a mutable node, that is more acceptable
being in the mentioned directory due to the fact that all other files in
the /sys/firmware directory are just firmware blobs and are not mutable
at all.
2022-10-25 15:33:34 -06:00
Liav A
8c21d974b2
Base: Remove all global entries from the ProcFS document
2022-10-25 15:33:34 -06:00
Liav A
1c5e09f789
Base: Use new global variables at /sys/kernel/ directory
2022-10-25 15:33:34 -06:00
Liav A
a0ed543993
sysctl: Use /sys/kernel/variables/ directory instead of /proc/sys
2022-10-25 15:33:34 -06:00
Liav A
4556fdc891
Base: Document the new /sys/kernel/ directory
2022-10-25 15:33:34 -06:00
Mykola
97c0f603e3
Base: Add just a bit more emojis
...
Added:
1F4D6 # 📖 E0.6 open book
1F4F9 # 📹 E0.6 video camera
1F52C # 🔬 E1.0 microscope
1F52D # 🔭 E1.0 telescope
1F697 # 🚗 E0.6 automobile
1F69B # 🚛 E1.0 articulated lorry
1F9FE # 🧾 E11.0 receipt
1F9FF # 🧿 E11.0 nazar amulet
1FAA1 # 🪡 E13.0 sewing needle
1FAD3 # 🫓 E13.0 flatbread
2022-10-25 12:55:07 +01:00
electrikmilk
e2ebc8826f
Base: Add 25 emojis
...
🫁 - U+1FAC1 LUNGS
🧟 - U+1F9DF ZOMBIE
🪷 - U+1FAB7 LOTUS
🫙 - U+1FAD9 JAR
🚖 - U+1F696 ONCOMING TAXI
🚢 - U+1F6A2 SHIP
🧸 - U+1F9F8 TEDDY BEAR
🪗 - U+1FA97 ACCORDION
↗️ - U+2197 UP-RIGHT ARROW
↘️ - U+2198 DOWN-RIGHT ARROW
↙️ - U+2199 DOWN-LEFT ARROW
↖️ - U+2196 UP-LEFT ARROW
↕️ - U+2195 UP-DOWN ARROW
↔️ - U+2194 LEFT-RIGHT ARROW
🪯 - U+1FAAF KHANDA
⭕ - U+2B55 HOLLOW RED CIRCLE
➰ - U+27B0 CURLY LOOP
✳️ - U+2733 EIGHT-SPOKED ASTERISK
Ⓜ️ - U+24C2 CIRCLED M
◼️ - U+25FC BLACK MEDIUM SQUARE
◻️ - U+25FB WHITE MEDIUM SQUARE
◾ - U+25FE BLACK MEDIUM-SMALL SQUARE
◽ - U+25FD WHITE MEDIUM-SMALL SQUARE
▪️ - U+25AA BLACK SMALL SQUARE
▫️ - U+25AB WHITE SMALL SQUARE
2022-10-23 00:44:06 +02:00
Liav A
07387ec19a
Kernel+Base: Introduce MS_NOREGULAR mount flag
...
This flag doesn't conform to any POSIX standard nor is found in any OS
out there. The idea behind this mount flag is to ensure that only
non-regular files will be placed in a filesystem, which includes device
nodes, symbolic links, directories, FIFOs and sockets. Currently, the
only valid case for using this mount flag is for TmpFS instances, where
we want to mount a TmpFS but disallow any kind of regular file and only
allow other types of files on the filesystem.
2022-10-22 19:18:15 +02:00
Smrtnyk
ae950816b5
Base: Add SameSite cookie test cases
2022-10-22 18:17:01 +02:00
Liav A
e52f0a991b
Base: Rename jp(1) manual page to json(1)
2022-10-22 10:39:05 +02:00
Mykola
dcfaee8d6c
Base: Add cool emoji
...
Added:
1F32B # 🌫 E0.7 fog
1F361 # 🍡 E0.6 dango
1F3A3 # 🎣 E0.6 fishing pole
1F3B4 # 🎴 E0.6 flower playing cards
1F413 # 🐓 E1.0 rooster
1F456 # 👖 E0.6 jeans
1F45C # 👜 E0.6 handbag
1F5EF # 🗯 E0.7 right anger bubble
1F6B0 # 🚰 E1.0 potable water
1F6B1 # 🚱 E1.0 non-potable water
1F6FB # 🛻 E13.0 pickup truck
1F9C6 # 🧆 E12.0 falafel
1F9F4 # 🧴 E11.0 lotion bottle
1FAB0 # 🪰 E13.0 fly
1FAB1 # 🪱 E13.0 worm
1FAD4 # 🫔 E13.0 tamale
2618 # ☘ E1.0 shamrock
1F684 # 🚄 E0.6 high-speed train
1F685 # 🚅 E0.6 bullet train
1F686 # 🚆 E1.0 train
2022-10-21 20:02:17 +02:00
Jelle Besseling
5de4507b6f
Base: Add WC emoji and other blue block ones
...
Added:
1F6BE # 🚾 E1.0 Water closet
1F6C2 # 🛂 E1.0 Passport control
1F6C3 # 🛃 E1.0 Customs
1F6C4 # 🛄 E1.0 Baggage claim
1F6C5 # 🛅 E1.0 Left luggage
1F6B9 # 🚹 E1.0 Men's room
1F6D7 # 🛗 E13.0 Elevator
2022-10-21 20:01:31 +02:00
Jelle Besseling
1fa8aaca83
Base: Add some clock emoji
...
Added:
23F0 # ⏰ E1.0 Alarm Clock
23F1 # ⏱️ E1.0 Stopwatch
23F2 # ⏲️ E1.0 Timer Clock
2022-10-21 20:01:20 +02:00
Xexxa
0968501b62
Base: Add more emoji
...
🐕 - U+1F415 DOG
🐩 - U+1F429 POODLE
🦌 - U+1F98C DEER
🐖 - U+1F416 PIG
🐁 - U+1F401 MOUSE
🐀 - U+1F400 RAT
🐇 - U+1F407 RABBIT
🐿️ - U+1F43F CHIPMUNK
🦥 - U+1F9A5 SLOTH
🐣 - U+1F423 HATCHING CHICK
🐥 - U+1F425 FRONT-FACING BABY CHICK
🦎 - U+1F98E LIZARD
🦗 - U+1F997 CRICKET
🪳 - U+1FAB3 COCKROACH
🧮 - U+1F9EE ABACUS
2022-10-21 12:18:50 +02:00
Xexxa
d87e2287dc
Snake: Use emoji for in-game food graphics
2022-10-20 10:27:00 +02:00
Tobias Lundberg
8d7158025f
Base: Add more emoji
...
🐑 - U+1F411 sheep
🐗 - U+1F417 boar
🐷 - U+1F437 pig face
🐻 - U+1F43B bear face
🐼 - U+1F43C panda face
2022-10-19 23:59:45 +02:00
Timothy Slater
038a833f0c
PixelPaint: Add Polygonal Select Tool
...
Polygonal selection tool allows for the drawing of any arbitrary
polygonal shape. It tracks clicked points in a vector, upon double
clicking we finalize the polygon and generate the selection mask. The
user can press the escape key during selection to cancel.
The mask is generated as follows:
- First we calculate the size of the bounding rect needed to hold the
polygon
- We add 2 pixels to height/width to allow us a 1 pixel border, the
polygon will be centered in this bitmap
- Draw the polygon into the bitmap via Gfx::Painter, making sure to
connect final polygon point to the first to ensure an enclosed shape
- Generate a selection mask the size of the bitmap, with all pixels
initially selected
- Perform a flood fill from (0,0) which is guaranteed to be outside the
polygon
- For every pixel reached by the flood fill, we clear the selected pixel
from the selection mask
- Finally we merge the selection mask like other selection tools.
2022-10-19 23:04:07 +02:00
snooze6214
d3353ee0e7
PixelPaint: Add action to invert selection
2022-10-18 18:57:12 +02:00
Tobias Lundberg
d0008409a8
Base: Add more emoji
...
🐭 - U+1F42D mouse face
🦔 - U+1F994 hedgehog
🦤 - U+1F9A4 dodo
🦩 - U+1F9A9 flamingo
🦭 - U+1F9AD seal
2022-10-17 01:09:10 +02:00
Julian Offenhäuser
e8bdd885a3
Base: Add a PDF document to test Adobe Type 1 font rendering
...
It also tests a subset of PDF version 1.5 functionality, such as
compressed object streams.
2022-10-16 17:44:54 +02:00
Liav A
1a1e0e6364
Base: Remove /proc/devices node
...
That node was removed in a previous commit so let's remove it from this
document too.
2022-10-16 02:24:43 -06:00
martinfalisse
8653903bee
Base: Update display grid test page
...
Update the tests after adding minmax(), auto-fill and auto-fit
functionality to the LibWeb implementation of the CSS Grid.
2022-10-15 16:04:01 +02:00
Pavel
db23e2d546
Base: Add test page for exceptions
...
Created a simple page where you can check
that the exceptions appear in the JS console.
2022-10-15 01:25:12 +02:00
Sam Atkins
1444b42936
Base: Fix my mistake
...
I would say this serves me right, except I'm still committing to
master using the web editor. :thonk:
2022-10-14 19:53:17 +01:00
Sam Atkins
8df3f9c7cd
Base: Add a quote
...
I may or may not be using the web editor... #yolo
2022-10-14 19:49:12 +01:00
demostanis
6933644b2e
Base: Add more glyphs
...
This patch adds U+2504, U+256D, U+256E, U+256F and U+2570
to Csilla Regular, as well as U+2022 to Csilla Bold.
They are used by the Kakoune port.
2022-10-14 13:37:29 +02:00
Lucas CHOLLET
99cd6f66cf
Base: Launch CrashDaemon at session start-up
2022-10-14 11:37:11 +02:00
Lucas CHOLLET
3197c1793a
Base: Launch Clipboard at session start-up
...
The clipboard service hasn't been ported to user-based portals with
others services as it is needed at `GUI::Application` creation and thus
before the first login, as the `LoginServer` needs one.
This problem as been solved thanks to session-based portals, a clipboard
portal is now created at boot for the "login" session and another for
each "user" session.
With a user-based portal, the "login" portal would have needed to be
created for the `root` user, exposing us to security issues. It now, can
be owned by the `window` user.
2022-10-14 11:37:11 +02:00
ne0ndrag0n
9b61579aa6
Base: Mark NetworkSettings as requiring root
2022-10-14 11:23:06 +02:00
ne0ndrag0n
b4456ecdbb
Escalator: Add new method to privilege escalate within GUI
2022-10-14 11:23:06 +02:00
Xexxa
3b9e52cd46
Base: Adjust emoji flag sizes
...
🇨🇱 - U+1F1E8 U+1F1F1 FLAG: CHILE
🇨🇴 - U+1F1E8 U+1F1F4 FLAG: COLOMBIA
🇨🇵 - U+1F1E8 U+1F1F5 FLAG: CLIPPERTON ISLAND
🇨🇷 - U+1F1E8 U+1F1F7 FLAG: COSTA RICA
🇨🇺 - U+1F1E8 U+1F1FA FLAG: CUBA
🇨🇼 - U+1F1E8 U+1F1FC FLAG: CURAÇAO
🇨🇿 - U+1F1E8 U+1F1FF FLAG: CZECHIA
🇩🇪 - U+1F1E9 U+1F1EA FLAG: GERMANY
🇩🇯 - U+1F1E9 U+1F1EF FLAG: DJIBOUTI
🇩🇰 - U+1F1E9 U+1F1F0 FLAG: DENMARK
🇩🇴 - U+1F1E9 U+1F1F4 FLAG: DOMINICAN REPUBLIC
🇪🇦 - U+1F1EA U+1F1E6 FLAG: CEUTA & MELILLA
🇪🇬 - U+1F1EA U+1F1EC FLAG: EGYPT
🇪🇸 - U+1F1EA U+1F1F8 FLAG: SPAIN
🇫🇲 - U+1F1EB U+1F1F2 FLAG: MICRONESIA
🇫🇷 - U+1F1EB U+1F1F7 FLAG: FRANCE
🇬🇦 - U+1F1EC U+1F1E6 FLAG: GABON
🇬🇳 - U+1F1EC U+1F1F3 FLAG: GUINEA
🇬🇷 - U+1F1EC U+1F1F7 FLAG: GREECE
🇬🇹 - U+1F1EC U+1F1F9 FLAG: GUATEMALA
🇬🇼 - U+1F1EC U+1F1FC FLAG: GUINEA-BISSAU
🇬🇾 - U+1F1EC U+1F1FE FLAG: GUYANA
🇭🇰 - U+1F1ED U+1F1F0 FLAG: HONG KONG SAR CHINA
🇭🇲 - U+1F1ED U+1F1F2 FLAG: HEARD & MCDONALD ISLANDS
🇭🇺 - U+1F1ED U+1F1FA FLAG: HUNGARY
🇮🇨 - U+1F1EE U+1F1E8 FLAG: CANARY ISLANDS
🇮🇩 - U+1F1EE U+1F1E9 FLAG: INDONESIA
🇮🇷 - U+1F1EE U+1F1F7 FLAG: IRAN
🇮🇹 - U+1F1EE U+1F1F9 FLAG: ITALY
🇰🇷 - U+1F1F0 U+1F1F7 FLAG: SOUTH KOREA
🇱🇰 - U+1F1F1 U+1F1F0 FLAG: SRI LANKA
🇱🇹 - U+1F1F1 U+1F1F9 FLAG: LITHUANIA
🇱🇺 - U+1F1F1 U+1F1FA FLAG: LUXEMBOURG
🇱🇻 - U+1F1F1 U+1F1FB FLAG: LATVIA
🇲🇨 - U+1F1F2 U+1F1E8 FLAG: MONACO
🇲🇫 - U+1F1F2 U+1F1EB FLAG: ST. MARTIN
🇲🇬 - U+1F1F2 U+1F1EC FLAG: MADAGASCAR
🇲🇲 - U+1F1F2 U+1F1F2 FLAG: MYANMAR (BURMA)
🇲🇺 - U+1F1F2 U+1F1FA FLAG: MAURITIUS
🇲🇼 - U+1F1F2 U+1F1FC FLAG: MALAWI
🇳🇦 - U+1F1F3 U+1F1E6 FLAG: NAMIBIA
🇳🇪 - U+1F1F3 U+1F1EA FLAG: NIGER
🇳🇱 - U+1F1F3 U+1F1F1 FLAG: NETHERLANDS
🇳🇷 - U+1F1F3 U+1F1F7 FLAG: NAURU
🇵🇪 - U+1F1F5 U+1F1EA FLAG: PERU
🇵🇭 - U+1F1F5 U+1F1ED FLAG: PHILIPPINES
🇵🇱 - U+1F1F5 U+1F1F1 FLAG: POLAND
🇷🇪 - U+1F1F7 U+1F1EA FLAG: RÉUNION
🇸🇮 - U+1F1F8 U+1F1EE FLAG: SLOVENIA
🇸🇰 - U+1F1F8 U+1F1F0 FLAG: SLOVAKIA
🇸🇱 - U+1F1F8 U+1F1F1 FLAG: SIERRA LEONE
🇸🇴 - U+1F1F8 U+1F1F4 FLAG: SOMALIA
🇸🇷 - U+1F1F8 U+1F1F7 FLAG: SURINAME
🇸🇸 - U+1F1F8 U+1F1F8 FLAG: SOUTH SUDAN
🇸🇾 - U+1F1F8 U+1F1FE FLAG: SYRIA
🇹🇩 - U+1F1F9 U+1F1E9 FLAG: CHAD
🇹🇴 - U+1F1F9 U+1F1F4 FLAG: TONGA
🇹🇷 - U+1F1F9 U+1F1F7 FLAG: TURKEY
🇹🇼 - U+1F1F9 U+1F1FC FLAG: TAIWAN
🇺🇦 - U+1F1FA U+1F1E6 FLAG: UKRAINE
🇺🇳 - U+1F1FA U+1F1F3 FLAG: UNITED NATIONS
🇺🇾 - U+1F1FA U+1F1FE FLAG: URUGUAY
🇺🇿 - U+1F1FA U+1F1FF FLAG: UZBEKISTAN
🇻🇨 - U+1F1FB U+1F1E8 FLAG: ST. VINCENT & GRENADINES
🇻🇪 - U+1F1FB U+1F1EA FLAG: VENEZUELA
🇼🇸 - U+1F1FC U+1F1F8 FLAG: SAMOA
🇾🇪 - U+1F1FE U+1F1EA FLAG: YEMEN
🇿🇦 - U+1F1FF U+1F1E6 FLAG: SOUTH AFRICA
2022-10-13 17:43:33 +02:00
Xexxa
25eb366a33
Base: Adjust emoji (remove corner pixel for 3D feel)
...
📔 - U+1F4D4 NOTEBOOK WITH DECORATIVE COVER
📕 - U+1F4D5 CLOSED BOOK
📗 - U+1F4D7 GREEN BOOK
📘 - U+1F4D8 BLUE BOOK
📙 - U+1F4D9 ORANGE BOOK
📓 - U+1F4D3 NOTEBOOK
📒 - U+1F4D2 LEDGER
2022-10-13 17:43:33 +02:00
Xexxa
597750c077
Base: Add more emoji
...
👁️🗨️ - U+1F441 U+200D U+1F5E8 EYE IN SPEECH BUBBLE
🦷 - U+1F9B7 TOOTH
🧜♀️ - U+1F9DC U+200D U+2640 MERMAID
🏌️♂️ - U+1F3CC U+200D U+2642 MAN GOLFING
🏌️♀️ - U+1F3CC U+200D U+2640 WOMAN GOLFING
🏊♂️ - U+1F3CA U+200D U+2642 MAN SWIMMING
🏊♀️ - U+1F3CA U+200D U+2640 WOMAN SWIMMING
🏋️♂️ - U+1F3CB U+200D U+2642 MAN LIFTING WEIGHTS
🏋️♀️ - U+1F3CB U+200D U+2640 WOMAN LIFTING WEIGHTS
🦓 - U+1F993 ZEBRA
🐮 - U+1F42E COW FACE
🥖 - U+1F956 BAGUETTE BREAD
🏺 - U+1F3FA AMPHORA
🚂 - U+1F682 LOCOMOTIVE
🚃 - U+1F683 RAILWAY CAR
🛶 - U+1F6F6 CANOE
🛍️ - U+1F6CD SHOPPING BAGS
💴 - U+1F4B4 YEN BANKNOTE
💵 - U+1F4B5 DOLLAR BANKNOTE
💶 - U+1F4B6 EURO BANKNOTE
💷 - U+1F4B7 POUND BANKNOTE
🪚 - U+1FA9A CARPENTRY SAW
🚽 - U+1F6BD TOILET
🚿 - U+1F6BF SHOWER
☣️ - U+2623 BIOHAZARD
📳 - U+1F4F3 VIBRATION MODE
♻️ - U+267B RECYCLING SYMBOL
⚜️ - U+269C FLEUR-DE-LIS
2022-10-13 17:43:33 +02:00
Xexxa
f912fb3f08
Base: Adjust emoji (colour scheme consistency)
...
🏌️ - U+1F3CC PERSON GOLFING
🏋️ - U+1F3CB PERSON LIFTING WEIGHTS
2022-10-13 17:43:33 +02:00
implicitfield
480e517f03
checksum: Support the '--check' option
...
This commit also updates 'checksum' to use the Core::Stream::File API.
2022-10-12 12:01:40 -06:00
Jeremy Borgman
f894e8be62
shot: Add ability to edit in PixelPaint
2022-10-12 00:46:33 -06:00
martinfalisse
f538dc2fae
LibWeb+Base: Add grid repeat() functionality
...
Add ability to use values passed to grid-template-columns and
grid-template-rows for CSS Grid layout within a repeat() function.
E.g. grid-template-columns: repeat(2, 50px); means to have two columns
of 50px width each.
2022-10-09 12:40:18 +01:00
martinfalisse
e537035cc6
LibWeb+Base: Deal with column-spans greater than implicit grid
...
When the indicated column-span is greater than the implicit grid (like
in cases when the grid has the default size of 1x1, and the column is
supposed to span any number greater than that), then previously were
crashing.
2022-10-08 17:26:41 +02:00
MacDue
5a832c0326
Base: Add example backdrop-filter
using saturate()
2022-10-07 13:08:24 +01:00
martinfalisse
84290ed7c8
Base+LibWeb: Make sure grid positions don't cause out of bounds
...
Add some tests to the test page to make sure that different combinations
of GridTrackPlacement don't cause out of bounds issues.
2022-10-06 21:16:01 +02:00
martinfalisse
56f50c9cde
Base+LibWeb: Deal with zero-positioned grid items
...
If a grid item has as its position value a 0 then it should be
invalidated.
2022-10-06 21:16:01 +02:00
martinfalisse
9051a56554
Base+LibWeb: Stub out negative spans
...
Ensure that when a grid item is passed with a span and a fixed end
position, that if the resulting start of this item is less than 0 then
it won't throw. This is a temporary measure until the correct
functionality is implemented.
2022-10-06 21:16:01 +02:00
martinfalisse
236795e931
LibWeb+Base: Re-implement grid track span
...
Implement span correctly when indicated in the grid-column-start,
grid-row-start, etc. CSS properties. Previously it had been implemented
as if span was something that went alongside the position property, but
actually it seems like if you do 'span 3' in the grid-column-start
property, for example, this means it literally spans 3 blocks, and the
3 has nothing to do with position.
2022-10-06 21:16:01 +02:00
Gunnar Beutner
be80ac619f
Browser: Add a custom icon for the "New Window" action
2022-10-06 20:51:04 +02:00
kleines Filmröllchen
678d385a3f
Base: Add most Japanese infographic emoji
...
🈚 U+1F21A "free of charge"
🈯 U+1F22F "reserved" (or pointing finger)
🈲 U+1F232 "prohibited"
🈵 U+1F235 "no vacancy"
🈹 U+1F239 "discount"
🈺 U+1F23A "open for business"
🉐 U+1F250 "bargain"
2022-10-06 16:12:16 +01:00
Thomas Voss
5a4ee4df34
rev: Document the '-' filename
2022-10-06 16:06:50 +01:00
Xexxa
6bbd6b1453
Base: Adjust size of emoji flags
...
🇬🇫 - U+1F1EC U+1F1EB FLAG: FRENCH GUIANA
🇬🇬 - U+1F1EC U+1F1EC FLAG: GUERNSEY
🇬🇭 - U+1F1EC U+1F1ED FLAG: GHANA
🇮🇳 - U+1F1EE U+1F1F3 FLAG: INDIA
🇮🇸 - U+1F1EE U+1F1F8 FLAG: ICELAND
🇯🇪 - U+1F1EF U+1F1EA FLAG: JERSEY
🇯🇵 - U+1F1EF U+1F1F5 FLAG: JAPAN
🇰🇬 - U+1F1F0 U+1F1EC FLAG: KYRGYZSTAN
🇰🇳 - U+1F1F0 U+1F1F3 FLAG: ST. KITTS & NEVIS
🇰🇵 - U+1F1F0 U+1F1F5 FLAG: NORTH KOREA
🇲🇦 - U+1F1F2 U+1F1E6 FLAG: MOROCCO
🇲🇪 - U+1F1F2 U+1F1EA FLAG: MONTENEGRO
🇲🇰 - U+1F1F2 U+1F1F0 FLAG: NORTH MACEDONIA
🇲🇱 - U+1F1F2 U+1F1F1 FLAG: MALI
🇲🇻 - U+1F1F2 U+1F1FB FLAG: MALDIVES
🇳🇫 - U+1F1F3 U+1F1EB FLAG: NORFOLK ISLAND
🇳🇬 - U+1F1F3 U+1F1EC FLAG: NIGERIA
🇵🇷 - U+1F1F5 U+1F1F7 FLAG: PUERTO RICO
🇵🇼 - U+1F1F5 U+1F1FC FLAG: PALAU
🇶🇦 - U+1F1F6 U+1F1E6 FLAG: QATAR
🇷🇴 - U+1F1F7 U+1F1F4 FLAG: ROMANIA
🇷🇺 - U+1F1F7 U+1F1FA FLAG: RUSSIA
🇷🇼 - U+1F1F7 U+1F1FC FLAG: RWANDA
🇸🇨 - U+1F1F8 U+1F1E8 FLAG: SEYCHELLES
🇸🇬 - U+1F1F8 U+1F1EC FLAG: SINGAPORE
🇸🇲 - U+1F1F8 U+1F1F2 FLAG: SAN MARINO
🇹🇬 - U+1F1F9 U+1F1EC FLAG: TOGO
🇹🇭 - U+1F1F9 U+1F1ED FLAG: THAILAND
🇹🇯 - U+1F1F9 U+1F1EF FLAG: TAJIKISTAN
🏴 - U+1F3F4 U+E0067 U+E0062 U+E0065 U+E006E U+E0067 U+E007F
FLAG: ENGLAND
🏴 - U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F
FLAG: SCOTLAND
🏴 - U+1F3F4 U+E0067 U+E0062 U+E0077 U+E006C U+E0073 U+E007F
FLAG: WALES
2022-10-06 14:17:12 +01:00
Xexxa
75a81f0603
Base: Adjust emoji
...
🥒 - U+1F952 CUCUMBER
📞 - U+1F4DE TELEPHONE RECEIVER
2022-10-06 14:17:12 +01:00
FrHun
6330de15b6
Base: Update Toolbar manpage
2022-10-06 12:17:38 +01:00
Xexxa
3bb25ef227
Base: Adjust sizing of more emoji flags
...
🇦🇲 - U+1F1E6 U+1F1F2 FLAG: ARMENIA
🇦🇶 - U+1F1E6 U+1F1F6 FLAG: ANTARCTICA
🇦🇹 - U+1F1E6 U+1F1F9 FLAG: AUSTRIA
🇦🇺 - U+1F1E6 U+1F1FA FLAG: AUSTRALIA
🇦🇿 - U+1F1E6 U+1F1FF FLAG: AZERBAIJAN
🇧🇦 - U+1F1E7 U+1F1E6 FLAG: BOSNIA & HERZEGOVINA
🇧🇧 - U+1F1E7 U+1F1E7 FLAG: BARBADOS
🇧🇩 - U+1F1E7 U+1F1E9 FLAG: BANGLADESH
🇧🇬 - U+1F1E7 U+1F1EC FLAG: BULGARIA
🇧🇭 - U+1F1E7 U+1F1ED FLAG: BAHRAIN
🇧🇯 - U+1F1E7 U+1F1EF FLAG: BENIN
🇧🇴 - U+1F1E7 U+1F1F4 FLAG: BOLIVIA
🇧🇷 - U+1F1E7 U+1F1F7 FLAG: BRAZIL
🇧🇸 - U+1F1E7 U+1F1F8 FLAG: BAHAMAS
🇧🇹 - U+1F1E7 U+1F1F9 FLAG: BHUTAN
🇨🇫 - U+1F1E8 U+1F1EB FLAG: CENTRAL AFRICAN REPUBLIC
🇨🇲 - U+1F1E8 U+1F1F2 FLAG: CAMEROON
2022-10-05 16:09:31 -04:00
Peter Elliott
37f527be9c
Documentation: Change references to uid based sockets to sids
2022-10-03 11:11:29 +02:00
Peter Elliott
7af5eef0dd
SystemServer+LoginServer+Userland: Switch to sid-based sockets
...
This commit does three things atomically:
- switch over Core::Account+SystemServer+LoginServer to sid based socket
names.
- change socket names with %uid to %sid.
- add/update necessary pledges and unveils.
Userland: Switch over servers to sid based sockets
Userland: Properly pledge and unveil for sid based sockets
2022-10-03 11:11:29 +02:00
implicitfield
6c86b40724
test: Support more options
...
Adds -g, -G, -k, -O and -u options.
2022-10-02 21:33:01 +02:00
matcool
eae9cb2b02
Keymaps: Improve pt-br keymap
...
Adds /?° key (scancode 115).
Shift + 6 now maps to ¨ instead of space.
AltGr + (1-6) now map to ¹²³£¢¬.
AltGr + = now maps to §.
AltGr + [ now maps to ª.
AltGr + ] now maps to º.
AltGr + q now maps to /.
AltGr + w now maps to ?.
AltGr + e now maps to °.
AltGr + c now maps to ₢.
2022-10-02 21:28:55 +02:00
MacDue
2a9128efe3
Base: Add example backdrop-filter using hue-rotate()
2022-10-02 21:17:41 +02:00
Mykola
39f0eeae29
Base: Add a moderate amount of emojis
...
Added:
🍖 - U+1F356 MEAT ON BONE
🗻 - U+1F5FB MOUNT FUJI
🏞 - U+1F3DE NATIONAL PARK
🌁 - U+1F301 FOGGY
🌃 - U+1F303 NIGHT WITH STARS
🌆 - U+1F306 CITYSCAPE AT DUSK
🌇 - U+1F307 SUNSET
🏐 - U+1F3D0 VOLLEYBALL
🇽🇰 - U+1F1FD U+1F1F0 FLAG: KOSOVO
2022-10-02 19:32:26 +01:00
Nico Weber
eb0f5bd65e
Base: Fix grammar-o in GML Widget documentation
2022-10-02 10:16:12 +01:00
Xexxa
8b2683a070
Base: Adjust size of emoji U+1F1F8_U+1F1EF
...
🇸🇯 - U+1F1F8 U+1F1EF FLAG: SVALBARD & JAN MAYEN
2022-10-01 19:02:53 +01:00
Xexxa
47c428dbe3
Base: Adjust size of emoji U+1F1F5_U+1F1E6
...
🇵🇦 - U+1F1F5 U+1F1E6 FLAG: PANAMA
2022-10-01 18:58:30 +01:00
Xexxa
d336dbc514
Base: Adjust size of emoji U+1F1EF_U+1F1F2
...
🇯🇲 - U+1F1EF U+1F1F2 FLAG: JAMAICA
2022-10-01 18:44:05 +01:00
Xexxa
dd6e70afd6
Base: Adjust size of emoji U+1F1E7_U+1F1FE
...
🇧🇾 - U+1F1E7 U+1F1FE FLAG: BELARUS
2022-10-01 17:04:12 +01:00
Mykola
47e0c2b11c
Base: Add some emojis
...
New:
🎏 - U+1F38F CARP STREAMER
🇮🇲 - U+1F1EE U+1F1F2 FLAG: ISLE OF MAN
🇰🇭 - U+1F1F0 U+1F1ED FLAG: CAMBODIA
🇱🇾 - U+1F1F1 U+1F1FE FLAG: LIBYA
🇲🇴 - U+1F1F2 U+1F1F4 FLAG: MACAO SAR CHINA
🇲🇵 - U+1F1F2 U+1F1F5 FLAG: NORTHERN MARIANA ISLANDS
🇲🇽 - U+1F1F2 U+1F1FD FLAG: MEXICO
🇵🇰 - U+1F1F5 U+1F1F0 FLAG: PAKISTAN
🇵🇹 - U+1F1F5 U+1F1F9 FLAG: PORTUGAL
🇸🇦 - U+1F1F8 U+1F1E6 FLAG: SAUDI ARABIA
🇹🇲 - U+1F1F9 U+1F1F2 FLAG: TURKMENISTAN
🇹🇳 - U+1F1F9 U+1F1F3 FLAG: TUNISIA
🇻🇦 - U+1F1FB U+1F1E6 FLAG: VATICAN CITY
🇻🇮 - U+1F1FB U+1F1EE FLAG: U.S. VIRGIN ISLANDS
🇻🇺 - U+1F1FB U+1F1FA FLAG: VANUATU
🇼🇫 - U+1F1FC U+1F1EB FLAG: WALLIS & FUTUNA
🇾🇹 - U+1F1FE U+1F1F9 FLAG: MAYOTTE
Modified:
🇪🇪 - U+1F1EA U+1F1EA FLAG: ESTONIA
2022-10-01 16:09:50 +01:00
Joel Hansen
cd07521ed8
Base: Add new emoji
...
🛰️ - U+1F6F0 Satellite
🦆 - U+1F986 Duck
🦜 - U+1F99C Parrot
🦞 - U+1F99E Lobster
🧽 - U+1F9FD Sponge
🩵 - U+1FA75 Light Blue Heart
🩶 - U+1FA76 Grey Heart
🩷 - U+1FA77 Pink Heart
🪕 - U+1FA95 Banjo
🫨 - U+1FAE8 Shaking Face
2022-10-01 13:26:26 +01:00
Luke Wilde
082abf9998
Base: Add rotateX, rotateY, rotateZ and matrix3d examples for transform
2022-10-01 14:07:47 +02:00
thankyouverycool
12b9c0ce7f
Welcome: Add new tips
2022-10-01 13:39:10 +03:30
thankyouverycool
be3cc756fc
config: Enable adding and removing groups
2022-10-01 13:39:10 +03:30
Luke Wilde
1cff5fe2ff
Base: Add ~200 more ads and trackers to the default content filter list
2022-09-30 15:51:39 +01:00
Luke Wilde
55d1e84e0b
Base: Change 6sc.io in default content filter to 6sc.co
...
This was simply a typo, it's `co` instead of `io`.
2022-09-30 15:51:39 +01:00
Xexxa
757eeaa367
Base: Adjust emoji sizes for some flags
...
🇦🇪 - U+1F1E6 U+1F1EA FLAG: UNITED ARAB EMIRATES
🇦🇬 - U+1F1E6 U+1F1EC FLAG: ANTIGUA & BARBUDA
🇨🇦 - U+1F1E8 U+1F1E6 FLAG: CANADA
🇨🇺 - U+1F1E8 U+1F1FA FLAG: CUBA
🇬🇧 - U+1F1EC U+1F1E7 FLAG: UNITED KINGDOM
🇬🇱 - U+1F1EC U+1F1F1 FLAG: GREENLAND
🇳🇴 - U+1F1F3 U+1F1F4 FLAG: NORWAY
2022-09-30 11:50:46 +01:00
Xexxa
5676213f47
Base: Add more emoji
...
🇭🇳 - U+1F1ED U+1F1F3 FLAG: HONDURAS
🇭🇷 - U+1F1ED U+1F1F7 FLAG: CROATIA
🇭🇹 - U+1F1ED U+1F1F9 FLAG: HAITI
🇰🇪 - U+1F1F0 U+1F1EA FLAG: KENYA
🇰🇲 - U+1F1F0 U+1F1F2 FLAG: COMOROS
🇱🇰 - U+1F1F1 U+1F1F0 FLAG: SRI LANKA
🇲🇩 - U+1F1F2 U+1F1E9 FLAG: MOLDOVA
🇲🇳 - U+1F1F2 U+1F1F3 FLAG: MONGOLIA
🇲🇾 - U+1F1F2 U+1F1FE FLAG: MALAYSIA
🇳🇨 - U+1F1F3 U+1F1E8 FLAG: NEW CALEDONIA
🇵🇬 - U+1F1F5 U+1F1EC FLAG: PAPUA NEW GUINEA
🇵🇲 - U+1F1F5 U+1F1F2 FLAG: ST. PIERRE & MIQUELON
🇵🇾 - U+1F1F5 U+1F1FE FLAG: PARAGUAY
🇷🇸 - U+1F1F7 U+1F1F8 FLAG: SERBIA
🇸🇧 - U+1F1F8 U+1F1E7 FLAG: SOLOMON ISLANDS
🇸🇽 - U+1F1F8 U+1F1FD FLAG: SINT MAARTEN
🇸🇿 - U+1F1F8 U+1F1FF FLAG: ESWATINI
🇹🇫 - U+1F1F9 U+1F1EB FLAG: FRENCH SOUTHERN TERRITORIES
🇹🇰 - U+1F1F9 U+1F1F0 FLAG: TOKELAU
🇹🇿 - U+1F1F9 U+1F1FF FLAG: TANZANIA
🇺🇬 - U+1F1FA U+1F1EC FLAG: UGANDA
🇿🇲 - U+1F1FF U+1F1F2 FLAG: ZAMBIA
2022-09-30 11:50:46 +01:00
Lucas CHOLLET
6900c4fe29
su: Add the --login option
...
This option, often used with only a lonely dash, allows to "simulate a
login". For now, it just changes the current directory to the home of
the new user.
2022-09-27 21:29:44 +01:00
Marco Santos
a0598aaef7
Icons: Add icon to represent text color changes
2022-09-27 13:38:11 +03:30
Mykola
f6ee7a54ea
Base: Add some more new emoji
...
Added:
🌰 - U+1F330 CHESTNUT
🥘 - U+1F958 SHALLOW PAN OF FOOD
🌄 - U+1F304 SUNRISE OVER MOUNTAINS
🌅 - U+1F305 SUNRISE
🌌 - U+1F30C MILKY WAY
🦺 - U+1F9BA SAFETY VEST
💹 - U+1F4B9 CHART INCREASING WITH YEN
🔧 - U+1F527 WRENCH
🪛 - U+1FA9B SCREWDRIVER
🪝 - U+1FA9D HOOK
🪣 - U+1FAA3 BUCKET
🪥 - U+1FAA5 TOOTHBRUSH
2022-09-26 09:13:35 +01:00
Kemal Zebari
296a689a2a
Base: Remove period from TerminalSettings description
...
Given all of the other descriptions for each setting don't include a
period at the end, it won't hurt to have the TerminalSettings
description do the same for consistency.
2022-09-26 09:09:48 +01:00
MacDue
c0eda77928
Base: Add paint effects with opacity/transforms HTML test cases
2022-09-25 18:37:31 +02:00
networkException
4d5a0f1af3
Base: Improve U+1F92F emoji
...
Previously the emoji looked more like a chef with moustache and hat
instead of a wide open mouth and mushroom cloud :^)
2022-09-25 12:30:34 +02:00
hashem78
69d86a60e5
Base: Remove extraneous pixels from msgbox-question.png
2022-09-24 20:57:19 +02:00
Xexxa
585072fce3
Base: Add more emoji
...
🏃♂️ - U+1F3C3 U+200D U+2642 MAN RUNNING
🏃♀️ - U+1F3C3 U+200D U+2640 WOMAN RUNNING
🤸♂️ - U+1F938 U+200D U+2642 MAN CARTWHEELING
🤸♀️ - U+1F938 U+200D U+2640 WOMAN CARTWHEELING
🫎 - U+1FACE MOOSE
🍛 - U+1F35B CURRY RICE
🛹 - U+1F6F9 SKATEBOARD
🎰 - U+1F3B0 SLOT MACHINE
👙 - U+1F459 BIKINI
📶 - U+1F4F6 ANTENNA BARS
🛜 - U+1F6DC WIRELESS
🇱🇮 - U+1F1F1 U+1F1EE FLAG: LIECHTENSTEIN
🇲🇷 - U+1F1F2 U+1F1F7 FLAG: MAURITANIA
🇳🇮 - U+1F1F3 U+1F1EE FLAG: NICARAGUA
🇵🇫 - U+1F1F5 U+1F1EB FLAG: FRENCH POLYNESIA
2022-09-24 08:39:48 +01:00
Xexxa
29260d1480
Base: Add more emoji
...
🦒 - U+1F992 GIRAFFE
🦚 - U+1F99A PEACOCK
🌷 - U+1F337 TULIP
♠️ - U+2660 SPADE SUIT
♥️ - U+2665 HEART SUIT
♦️ - U+2666 DIAMOND SUIT
♣️ - U+2663 CLUB SUIT
👗 - U+1F457 DRESS
🇭🇰 - U+1F1ED U+1F1F0 FLAG: HONG KONG SAR CHINA
2022-09-23 22:35:10 +01:00
Xexxa
d3cf06deba
Base: Adjust size of more emoji flags
...
🇦🇴 - U+1F1E6 U+1F1F4 FLAG: ANGOLA
🇦🇼 - U+1F1E6 U+1F1FC FLAG: ARUBA
🇦🇽 - U+1F1E6 U+1F1FD FLAG: ÅLAND ISLANDS
🇧🇪 - U+1F1E7 U+1F1EA FLAG: BELGIUM
🇧🇫 - U+1F1E7 U+1F1EB FLAG: BURKINA FASO
🇧🇮 - U+1F1E7 U+1F1EE FLAG: BURUNDI
🇧🇻 - U+1F1E7 U+1F1FB FLAG: BOUVET ISLAND
🇧🇼 - U+1F1E7 U+1F1FC FLAG: BOTSWANA
🇨🇩 - U+1F1E8 U+1F1E9 FLAG: CONGO - KINSHASA
🇨🇬 - U+1F1E8 U+1F1EC FLAG: CONGO - BRAZZAVILLE
🇨🇭 - U+1F1E8 U+1F1ED FLAG: SWITZERLAND
🇨🇮 - U+1F1E8 U+1F1EE FLAG: CÔTE D’IVOIRE
🇪🇭 - U+1F1EA U+1F1ED FLAG: WESTERN SAHARA
🇫🇴 - U+1F1EB U+1F1F4 FLAG: FAROE ISLANDS
🇮🇶 - U+1F1EE U+1F1F6 FLAG: IRAQ
🇯🇴 - U+1F1EF U+1F1F4 FLAG: JORDAN
🇰🇿 - U+1F1F0 U+1F1FF FLAG: KAZAKHSTAN
🇱🇦 - U+1F1F1 U+1F1E6 FLAG: LAOS
🇱🇧 - U+1F1F1 U+1F1E7 FLAG: LEBANON
🇱🇨 - U+1F1F1 U+1F1E8 FLAG: ST. LUCIA
🇱🇷 - U+1F1F1 U+1F1F7 FLAG: LIBERIA
🇲🇿 - U+1F1F2 U+1F1FF FLAG: MOZAMBIQUE
🇸🇩 - U+1F1F8 U+1F1E9 FLAG: SUDAN
🇸🇳 - U+1F1F8 U+1F1F3 FLAG: SENEGAL
🇸🇹 - U+1F1F8 U+1F1F9 FLAG: SÃO TOMÉ & PRÍNCIPE
🇹🇱 - U+1F1F9 U+1F1F1 FLAG: TIMOR-LESTE
🇹🇹 - U+1F1F9 U+1F1F9 FLAG: TRINIDAD & TOBAGO
🇻🇳 - U+1F1FB U+1F1F3 FLAG: VIETNAM
2022-09-23 22:35:10 +01:00
Joel Hansen
8b9c056c5a
Base: Modify Check Box emoji
...
Make it look more like the SerenityOS checkbox.
2022-09-23 16:03:54 +01:00
Joel Hansen
f4cea4139f
Base: Add emoji
...
- U+1F0CF Joker 🃏
- U+1F3AB Ticket 🎫
- U+1F5DC Clamp 🗜️
- U+1F48D Ring 💍
- U+1F371 Bento Box 🍱
- U+1F380 Ribbon 🎀
- U+1F436 Dog Face 🐶
- U+1F518 Radio Button 🔘
- U+1F528 Hammer 🔨
- U+1F531 Trident Emblem 🔱
- U+1FA74 Thong Sandal 🩴
- U+2622 Radioactive ☢️
2022-09-23 16:03:54 +01:00
Andreas Kling
d43ef27761
LibWeb: Only include containing blocks in coordinate space translation
...
Layout box offset coordinates are always relative to their containing
block. Therefore, the functions that convert between coordinate spaces
should only visit containing blocks and apply their offsets, not *every*
box in the parent chain.
This fixes an issue where some floating boxes were unexpectedly far away
from their containing block.
2022-09-22 16:54:12 +02:00
Andreas Kling
389f47f6fe
LibWeb: Check both top and bottom of float position when looking for fit
...
We have to check that there's enough space at both the top and bottom of
the float's margin box, otherwise we risk overlapping existing content.
2022-09-22 16:54:12 +02:00
Xexxa
5f4c59e2c1
Base: Add and improve more emoji flags
...
🇨🇾 - U+1F1E8 U+1F1FE FLAG: CYPRUS
🇫🇮 - U+1F1EB U+1F1EE FLAG: FINLAND
🇬🇲 - U+1F1EC U+1F1F2 FLAG: GAMBIA
🇬🇺 - U+1F1EC U+1F1FA FLAG: GUAM
🇮🇪 - U+1F1EE U+1F1EA FLAG: IRELAND
🇰🇮 - U+1F1F0 U+1F1EE FLAG: KIRIBATI
🇰🇼 - U+1F1F0 U+1F1FC FLAG: KUWAIT
🇱🇸 - U+1F1F1 U+1F1F8 FLAG: LESOTHO
🇲🇦 - U+1F1F2 U+1F1E6 FLAG: MOROCCO
🇲🇭 - U+1F1F2 U+1F1ED FLAG: MARSHALL ISLANDS
🇲🇶 - U+1F1F2 U+1F1F6 FLAG: MARTINIQUE
🇲🇹 - U+1F1F2 U+1F1F9 FLAG: MALTA
🇴🇲 - U+1F1F4 U+1F1F2 FLAG: OMAN
🇵🇸 - U+1F1F5 U+1F1F8 FLAG: PALESTINIAN TERRITORIES
🇸🇪 - U+1F1F8 U+1F1EA FLAG: SWEDEN
🇸🇻 - U+1F1F8 U+1F1FB FLAG: EL SALVADOR
🇿🇼 - U+1F1FF U+1F1FC FLAG: ZIMBABWE
2022-09-22 08:15:27 -04:00
Xexxa
721e70e1df
Base: Make some emoji flag 10px high
...
🇦🇨 - U+1F1E6 U+1F1E8 FLAG: ASCENSION ISLAND
🇦🇩 - U+1F1E6 U+1F1E9 FLAG: ANDORRA
🇦🇫 - U+1F1E6 U+1F1EB FLAG: AFGHANISTAN
🇦🇮 - U+1F1E6 U+1F1EE FLAG: ANGUILLA
🇦🇱 - U+1F1E6 U+1F1F1 FLAG: ALBANIA
🇦🇷 - U+1F1E6 U+1F1F7 FLAG: ARGENTINA
🇦🇸 - U+1F1E6 U+1F1F8 FLAG: AMERICAN SAMOA
🇧🇱 - U+1F1E7 U+1F1F1 FLAG: ST. BARTHÉLEMY
🇧🇲 - U+1F1E7 U+1F1F2 FLAG: BERMUDA
🇧🇳 - U+1F1E7 U+1F1F3 FLAG: BRUNEI
🇧🇶 - U+1F1E7 U+1F1F6 FLAG: CARIBBEAN NETHERLANDS
🇧🇿 - U+1F1E7 U+1F1FF FLAG: BELIZE
🇨🇨 - U+1F1E8 U+1F1E8 FLAG: COCOS (KEELING) ISLANDS
🇨🇰 - U+1F1E8 U+1F1F0 FLAG: COOK ISLANDS
🇨🇻 - U+1F1E8 U+1F1FB FLAG: CAPE VERDE
🇨🇽 - U+1F1E8 U+1F1FD FLAG: CHRISTMAS ISLAND
🇩🇬 - U+1F1E9 U+1F1EC FLAG: DIEGO GARCIA
🇩🇲 - U+1F1E9 U+1F1F2 FLAG: DOMINICA
🇩🇿 - U+1F1E9 U+1F1FF FLAG: ALGERIA
🇪🇨 - U+1F1EA U+1F1E8 FLAG: ECUADOR
🇪🇷 - U+1F1EA U+1F1F7 FLAG: ERITREA
🇪🇹 - U+1F1EA U+1F1F9 FLAG: ETHIOPIA
🇫🇯 - U+1F1EB U+1F1EF FLAG: FIJI
🇫🇰 - U+1F1EB U+1F1F0 FLAG: FALKLAND ISLANDS
🇬🇩 - U+1F1EC U+1F1E9 FLAG: GRENADA
🇬🇪 - U+1F1EC U+1F1EA FLAG: GEORGIA
🇬🇮 - U+1F1EC U+1F1EE FLAG: GIBRALTAR
🇬🇵 - U+1F1EC U+1F1F5 FLAG: GUADELOUPE
🇬🇶 - U+1F1EC U+1F1F6 FLAG: EQUATORIAL GUINEA
🇬🇸 - U+1F1EC U+1F1F8 FLAG: SOUTH GEORGIA & SOUTH SANDWICH ISLANDS
🇮🇴 - U+1F1EE U+1F1F4 FLAG: BRITISH INDIAN OCEAN TERRITORY
🇰🇾 - U+1F1F0 U+1F1FE FLAG: CAYMAN ISLANDS
🇲🇸 - U+1F1F2 U+1F1F8 FLAG: MONTSERRAT
🇳🇺 - U+1F1F3 U+1F1FA FLAG: NIUE
🇳🇿 - U+1F1F3 U+1F1FF FLAG: NEW ZEALAND
🇵🇳 - U+1F1F5 U+1F1F3 FLAG: PITCAIRN ISLANDS
🇸🇭 - U+1F1F8 U+1F1ED FLAG: ST. HELENA
🇹🇦 - U+1F1F9 U+1F1E6 FLAG: TRISTAN DA CUNHA
🇹🇨 - U+1F1F9 U+1F1E8 FLAG: TURKS & CAICOS ISLANDS
🇻🇬 - U+1F1FB U+1F1EC FLAG: BRITISH VIRGIN ISLANDS
2022-09-22 08:15:27 -04:00
davidot
4912b22e3b
LibWeb+WebContent: Setup the js console client earlier
...
This allows us to print messages in inline scripts. Also add an example
of this in the welcome page to test this.
2022-09-21 17:34:32 +01:00
Jan Metzger
931458c337
LibWeb: Update visibility when Node was invisible before
2022-09-21 10:47:41 +01:00
CenTdemeern1
d1de7f7782
Base: Add a few more emoji
...
U+2328 KEYBOARD
U+2697 ALEMBIC
U+303D PART ALTERNATION MARK
U+1F408 CAT
U+1F408_U+2B1B BLACK CAT
U+1F40A CROCODILE
U+1F431 CAT FACE
U+1F4A0 DIAMOND SHAPE WITH A DOT INSIDE
U+1F4BB PERSONAL COMPUTER
U+1F6A7 CONSTRUCTION SIGN
2022-09-21 10:19:02 +01:00
electrikmilk
07af23ec1c
Base: Add 17 new emojis
...
👻 - U+1F47B GHOST
🍧 - U+1F367 SHAVED ICE
🖼️ - U+1F5BC FRAMED PICTURE
👓 - U+1F453 GLASSES
🪖 - U+1FA96 MILITARY HELMET
🔇 - U+1F507 MUTED SPEAKER
🔈 - U+1F508 SPEAKER LOW VOLUME
🔉 - U+1F509 SPEAKER MEDIUM VOLUME
🔊 - U+1F50A SPEAKER HIGH VOLUME
🎬 - U+1F3AC CLAPPER BOARD
🔖 - U+1F516 BOOKMARK
💸 - U+1F4B8 MONEY WITH WINGS
🗒️ - U+1F5D2 SPIRAL NOTEPAD
🪠 - U+1FAA0 PLUNGER
🪦 - U+1FAA6 HEADSTONE
🔼 - U+1F53C UPWARDS BUTTON
🔽 - U+1F53D DOWNWARDS BUTTON
2022-09-21 09:57:19 +01:00
Olivier De Cannière
0eceed4fd7
Calendar: Add a Calendar settings dialog for the first day of the week
...
This commit adds a new settings dialog for the Calendar application and
applet. It allows the user to specify their preferred first day of the
week.
2022-09-20 13:12:00 -04:00
Mykola
b371b31841
Base: Add some cool new emojis
...
Some emojis were modified to be more in style with
the new calendar emoji.
Date has been changed from July 24 to October 10.
October 10 is the date of the first release of SerenityOS.
Modified:
📅 - U+1F4C5 CALENDAR
📆 - U+1F4C6 TEAR-OFF CALENDAR
New:
🗓 - U+1F5D3 SPIRAL CALENDAR
🌳 - U+1F333 DECIDUOUS TREE
🔪 - U+1F52A KITCHEN KNIFE
🪐 - U+1FA90 RINGED PLANET
🎶 - U+1F3B6 MUSICAL NOTES
🏷️ - U+1F3F7 LABEL
🧰 - U+1F9F0 TOOLBOX
2022-09-18 00:28:47 +02:00
djwisdom
4a0f4eb07a
Base: Update Magnifier.md use visual impairment vs sight impaired
2022-09-17 16:08:01 +00:00
Mykola
645f6e3c4a
Base: Add a lot of emoji
...
This commit adds many many many flags.
📢 - U+1F4E2 LOUDSPEAKER
📣 - U+1F4E3 MEGAPHONE
📐 - U+1F4D0 TRIANGULAR RULER
🔫 - U+1F52B WATER PISTOL
🏹 - U+1F3F9 BOW AND ARROW
🔰 - U+1F530 JAPANESE SYMBOL FOR BEGINNER
🇦🇨 - U+1F1E6 U+1F1E8 FLAG: ASCENSION ISLAND
🇦🇩 - U+1F1E6 U+1F1E9 FLAG: ANDORRA
🇦🇫 - U+1F1E6 U+1F1EB FLAG: AFGHANISTAN
🇦🇮 - U+1F1E6 U+1F1EE FLAG: ANGUILLA
🇦🇱 - U+1F1E6 U+1F1F1 FLAG: ALBANIA
🇦🇷 - U+1F1E6 U+1F1F7 FLAG: ARGENTINA
🇦🇸 - U+1F1E6 U+1F1F8 FLAG: AMERICAN SAMOA
🇧🇱 - U+1F1E7 U+1F1F1 FLAG: ST. BARTHÉLEMY
🇧🇲 - U+1F1E7 U+1F1F2 FLAG: BERMUDA
🇧🇳 - U+1F1E7 U+1F1F3 FLAG: BRUNEI
🇧🇶 - U+1F1E7 U+1F1F6 FLAG: CARIBBEAN NETHERLANDS
🇧🇿 - U+1F1E7 U+1F1FF FLAG: BELIZE
🇨🇨 - U+1F1E8 U+1F1E8 FLAG: COCOS (KEELING) ISLANDS
🇨🇰 - U+1F1E8 U+1F1F0 FLAG: COOK ISLANDS
🇨🇻 - U+1F1E8 U+1F1FB FLAG: CAPE VERDE
🇨🇽 - U+1F1E8 U+1F1FD FLAG: CHRISTMAS ISLAND
🇨🇾 - U+1F1E8 U+1F1FE FLAG: CYPRUS
🇩🇬 - U+1F1E9 U+1F1EC FLAG: DIEGO GARCIA
🇩🇲 - U+1F1E9 U+1F1F2 FLAG: DOMINICA
🇩🇿 - U+1F1E9 U+1F1FF FLAG: ALGERIA
🇪🇨 - U+1F1EA U+1F1E8 FLAG: ECUADOR
🇪🇷 - U+1F1EA U+1F1F7 FLAG: ERITREA
🇪🇹 - U+1F1EA U+1F1F9 FLAG: ETHIOPIA
🇫🇯 - U+1F1EB U+1F1EF FLAG: FIJI
🇫🇰 - U+1F1EB U+1F1F0 FLAG: FALKLAND ISLANDS
🇬🇩 - U+1F1EC U+1F1E9 FLAG: GRENADA
🇬🇪 - U+1F1EC U+1F1EA FLAG: GEORGIA
🇬🇮 - U+1F1EC U+1F1EE FLAG: GIBRALTAR
🇬🇲 - U+1F1EC U+1F1F2 FLAG: GAMBIA
🇬🇵 - U+1F1EC U+1F1F5 FLAG: GUADELOUPE
🇬🇶 - U+1F1EC U+1F1F6 FLAG: EQUATORIAL GUINEA
🇬🇸 - U+1F1EC U+1F1F8 FLAG: SOUTH GEORGIA & SOUTH SANDWICH ISLANDS
🇬🇺 - U+1F1EC U+1F1FA FLAG: GUAM
🇮🇴 - U+1F1EE U+1F1F4 FLAG: BRITISH INDIAN OCEAN TERRITORY
🇰🇾 - U+1F1F0 U+1F1FE FLAG: CAYMAN ISLANDS
🇲🇸 - U+1F1F2 U+1F1F8 FLAG: MONTSERRAT
🇳🇺 - U+1F1F3 U+1F1FA FLAG: NIUE
🇳🇿 - U+1F1F3 U+1F1FF FLAG: NEW ZEALAND
🇵🇳 - U+1F1F5 U+1F1F3 FLAG: PITCAIRN ISLANDS
🇸🇭 - U+1F1F8 U+1F1ED FLAG: ST. HELENA
🇹🇦 - U+1F1F9 U+1F1E6 FLAG: TRISTAN DA CUNHA
🇹🇨 - U+1F1F9 U+1F1E8 FLAG: TURKS & CAICOS ISLANDS
🇹🇻 - U+1F1F9 U+1F1FB FLAG: TUVALU
🇻🇬 - U+1F1FB U+1F1EC FLAG: BRITISH VIRGIN ISLANDS
2022-09-17 10:14:22 +01:00
djwisdom
378f004a28
Base: Update Durrque theme for a better look and feel
2022-09-17 10:08:59 +01:00
CenTdemeern1
318a343616
Base: Add some emoji
...
Emoji included:
♟ - U+265F BLACK CHESS PAWN
❣ - U+2763 HEAVY HEART EXCLAMATION MARK ORNAMENT
❤ - U+2764 HEAVY BLACK HEART
🍜 - U+1F35C STEAMING BOWL
🎊 - U+1F38A CONFETTI BALL
🎟 - U+1F39F ADMISSION TICKETS
🐾 - U+1F43E PAW PRINTS
💓 - U+1F493 BEATING HEART
💔 - U+1F494 BROKEN HEART
💕 - U+1F495 TWO HEARTS
💖 - U+1F496 SPARKLING HEART
💗 - U+1F497 GROWING HEART
💘 - U+1F498 HEART WITH ARROW
💙 - U+1F499 BLUE HEART
💚 - U+1F49A GREEN HEART
💛 - U+1F49B YELLOW HEART
💜 - U+1F49C PURPLE HEART
💝 - U+1F49D HEART WITH RIBBON
📰 - U+1F4F0 NEWSPAPER
🖤 - U+1F5A4 BLACK HEART
🗑 - U+1F5D1 WASTEBASKET
🚎 - U+1F68E TROLLEYBUS
🤍 - U+1F90D WHITE HEART
🤎 - U+1F90E BROWN HEART
🧡 - U+1F9E1 ORANGE HEART
🧬 - U+1F9EC DNA DOUBLE HELIX
2022-09-17 03:57:44 +00:00
Andreas Kling
412b2313f3
LibWeb: Improve inline flow around floating boxes
...
This patch combines a number of techniques to make inline content flow
more correctly around floats:
- During inline layout, BFC now lets LineBuilder decide the Y coordinate
when inserting a new float. LineBuilder has more information about the
currently accumulated line, and can make better breaking decisions.
- When inserting a float on one side, and the top of the newly inserted
float is below the bottommost float on the opposite side, we now reset
the opposite side back to the start of that edge. This improves
breaking behavior between opposite-side floats.
- After inserting a float during inline layout, we now recalculate the
available space on the line, but don't adjust X offsets of already
existing fragments. This is handled by update_last_line() anyway,
so it was pointless busywork.
- When measuring whether a line can fit at a given Y coordinate, we now
consider both the top and bottom Y values of the line. This fixes an
issue where the bottom part of a line would bleed over other content
(since we had only checked that the top Y coordinate of that line
would fit.)
There are some pretty brain-dead algorithms in here that we need to make
smarter, but I didn't want to complicate this any further so I've left
FIXMEs about them instead.
2022-09-16 15:15:50 +02:00
MacDue
cfa9b44894
Base: Add a backdrop-filter
demo web page
2022-09-16 10:50:48 +01:00
Joel Hansen
7bb8d26b0c
Base: Add 13 emoji
...
U+1F3A4 - Microphone
U+1F3D7 - Crane
U+1F4BC - Briefcase
U+1F4BD - Computer Disk
U+1F4DC - Scroll
U+1F6CF - Bed
U+1F6D1 - Stop Sign
U+1F9A2 - Swan
U+1F37D - Plate with knife and fork
U+1F96A - Sandwich
U+1F438 - Frog
U+1F441 - Eye
U+1F489 - Syringe
2022-09-15 22:59:37 +00:00
Mykola
2cb21b295f
Base: Add new emoji
...
Added the 🎑 emoji, also known as "Moon Viewing Ceremony".
Additionally added the 🌊 emoji, the 🧵 emoji, and the
🌉 emoji.
2022-09-15 21:05:13 +01:00
electrikmilk
154fb144f5
Base: Tweak Source font
...
This does many tweaks to the Source font. The tweaks mainly apply to
the bold weight, but tweaks small things about the Regular weight.
This mainly corrects inconsistencies or the placement of pixels in
a glyph.
I tried to pay a lot of attention to how different code looks in this
font and adapt it to that since that is its main purpose.
2022-09-14 06:56:27 -04:00
electrikmilk
b0f9ad0000
Base: Add existing @font-face test to welcome page
...
This adds the existing `@font-face` test page to the welcome page.
2022-09-14 10:50:33 +01:00
Brian Gianforcaro
d0a1775369
Everywhere: Fix a variety of typos
...
Spelling fixes found by `codespell`.
2022-09-14 04:46:49 +00:00
martinfalisse
ca3d479f6f
Base: Add more tests for display: grid
2022-09-14 00:09:14 +02:00
Sam Atkins
76f524c1d6
Base: Skip Shell tests
...
We have a high random failure rate on Shell tests, even with two of them
already manually disabled for being flaky. For now, let's skip them in
automated/CI testing so that "real" failures are more obvious.
Two of the tests have early-exits to disable them, which I wanted to
remove, but that makes `Meta/lint-shell-scripts.sh` very cross, so I'll
leave them.
2022-09-13 13:14:59 -04:00
Jelle Raaijmakers
9dfe50170e
Demos: Add Tubes :^)
2022-09-11 22:45:49 +01:00
Xexxa
6b437c576f
Base: Add emoji ⚙️
...
⚙️ - U+2699 GEAR
2022-09-11 20:23:59 +01:00
Joel Hansen
712af40075
Base: Add 18 new emoji
...
🎵 - U+1F3B5 Musical Note
💳 - U+1F4B3 Credit Card
📃 - U+1F4C3 Page with Curl
📄 - U+1F4C4 Page Facing Up
📎 - U+1F4CE Paperclip
📏 - U+1F4CF Straight Ruler
📑 - U+1F4D1 Bookmark Tabs
📒 - U+1F4D2 Ledger
📓 - U+1F4D3 Notebook
📔 - U+1F4D4 Notebook with Decorative Cover
📕 - U+1F4D5 Closed Book
📗 - U+1F4D7 Green Book
📘 - U+1F4D8 Blue Book
📙 - U+1F4D9 Orange Book
📝 - U+1F4DD Memo
📞 - U+1F4DE Telephone Receiver
🗨️ - U+1F5E8 Left Speech Bubble
🐰 - U+1F430 Rabbit Face
2022-09-11 14:16:36 +01:00
Joel Hansen
6bb96217aa
Base: Add 18 new emoji
...
🐨 - U+1F428 Koala
🪟 - U+1FA9F Window
⏏️ - U+23CF Eject Button
⏩ - U+23E9 Fast-Forward Button
⏪ - U+23EA Fast Reverse Button
⏫ - U+23EB Fast Up Button
⏫ - U+23EC Fast Down Button
⏭️ - U+23ED Next Track Button
⏮️ - U+23EE Last Track Button
⏯️ - U+23EF Play or Pause Button
⏸️ - U+23F8 Pause Button
⏹️ - U+23F9 Stop Button
⏺️ - U+23FA Record Button
▶️ - U+25B6 Play Button
◀️ - U+25C0 Reverse Button
⛏️ - U+26CF Pick
⛪ - U+26EA Church
☄️ - U+2604 Comet
2022-09-10 17:42:08 +01:00
electrikmilk
c53fed7911
Base: Add .gitconfig to Git file icon files
...
This adds .gitconfig to git in the file icon provider.
2022-09-10 06:28:48 +00:00
Xexxa
fcd2a40f2c
Base: Add more emoji
...
💥 - U+1F4A5 COLLISION
🤸 - U+1F938 PERSON CARTWHEELING
🍃 - U+1F343 LEAF FLUTTERING IN WIND
🥙 - U+1F959 STUFFED FLATBREAD
🍝 - U+1F35D SPAGHETTI
🥟 - U+1F95F DUMPLING
🍨 - U+1F368 ICE CREAM
🏥 - U+1F3E5 HOSPITAL
🛞 - U+1F6DE WHEEL
🚁 - U+1F681 HELICOPTER
📅 - U+1F4C5 CALENDAR
📆 - U+1F4C6 TEAR-OFF CALENDAR
🔐 - U+1F510 LOCKED WITH KEY
📡 - U+1F4E1 SATELLITE ANTENNA
🔚 - U+1F51A END ARROW
🔛 - U+1F51B ON! ARROW
🔜 - U+1F51C SOON ARROW
🔝 - U+1F51D TOP ARROW
🔠 - U+1F520 INPUT LATIN UPPERCASE
🔡 - U+1F521 INPUT LATIN LOWERCASE
🔢 - U+1F522 INPUT NUMBERS
🔣 - U+1F523 INPUT SYMBOLS
🔤 - U+1F524 INPUT LATIN LETTERS
🎌 - U+1F38C CROSSED FLAGS
🇦🇿 - U+1F1E6 U+1F1FF FLAG: AZERBAIJAN
🇧🇴 - U+1F1E7 U+1F1F4 FLAG: BOLIVIA
🇧🇹 - U+1F1E7 U+1F1F9 FLAG: BHUTAN
🇧🇼 - U+1F1E7 U+1F1FC FLAG: BOTSWANA
🇫🇲 - U+1F1EB U+1F1F2 FLAG: MICRONESIA
🇬🇭 - U+1F1EC U+1F1ED FLAG: GHANA
🇬🇾 - U+1F1EC U+1F1FE FLAG: GUYANA
🇮🇨 - U+1F1EE U+1F1E8 FLAG: CANARY ISLANDS
🇰🇿 - U+1F1F0 U+1F1FF FLAG: KAZAKHSTAN
🇱🇨 - U+1F1F1 U+1F1E8 FLAG: ST. LUCIA
🇲🇻 - U+1F1F2 U+1F1FB FLAG: MALDIVES
🇲🇼 - U+1F1F2 U+1F1FC FLAG: MALAWI
🇲🇿 - U+1F1F2 U+1F1FF FLAG: MOZAMBIQUE
🇳🇦 - U+1F1F3 U+1F1E6 FLAG: NAMIBIA
🇳🇪 - U+1F1F3 U+1F1EA FLAG: NIGER
🇸🇲 - U+1F1F8 U+1F1F2 FLAG: SAN MARINO
🇹🇱 - U+1F1F9 U+1F1F1 FLAG: TIMOR-LESTE
🇺🇾 - U+1F1FA U+1F1FE FLAG: URUGUAY
...and from Unicode 15:
🪼 - U+1FABC JELLYFISH
🫛 - U+1FADB PEA POD
🪮 - U+1FAAE HAIR PICK
2022-09-10 07:28:35 +01:00
demostanis
5ff63a9eb0
Base: Update uniq(1) man page
2022-09-09 14:11:52 +01:00
electrikmilk
6a09d89329
Base+LibGUI: Add insert emoji common action
...
This adds a common action to invoke the emoji picker.
2022-09-08 23:08:54 +01:00
Xexxa
0270500383
Base: Add more emoji
...
👨👩👧👦 - U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466
FAMILY: MAN, WOMAN, GIRL, BOY
👨👩👦👦 - U+1F468 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466
FAMILY: MAN, WOMAN, BOY, BOY
👨👩👧👧 - U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467
FAMILY: MAN, WOMAN, GIRL, GIRL
👨👨👧👦 - U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F466
FAMILY: MAN, MAN, GIRL, BOY
👨👨👦👦 - U+1F468 U+200D U+1F468 U+200D U+1F466 U+200D U+1F466
FAMILY: MAN, MAN, BOY, BOY
👨👨👧👧 - U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F467
FAMILY: MAN, MAN, GIRL, GIRL
👩👩👧👦 - U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466
FAMILY: WOMAN, WOMAN, GIRL, BOY
👩👩👦👦 - U+1F469 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466
FAMILY: WOMAN, WOMAN, BOY, BOY
👩👩👧👧 - U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467
FAMILY: WOMAN, WOMAN, GIRL, GIRL
2022-09-08 13:20:54 +01:00
electrikmilk
56a719daf8
Base: Add Assembly file type icon
...
This adds 16x16 and 32x32 file type icons for assembly files.
2022-09-08 10:06:55 +01:00
electrikmilk
6675865582
Browser: Add context menu icons
...
This adds two new icons for browser context menu items "Close Other
Tabs" and "Download".
This adds existing icons where they were missing in context menu items.
2022-09-08 10:02:37 +01:00
electrikmilk
6193fdb477
Base: Add 12 new emojis
...
🪲 - U+1FAB2 BEETLE
🍰 - U+1F370 SHORTCAKE
🚘 - U+1F698 ONCOMING AUTOMOBILE
🔔 - U+1F514 BELL
🔕 - U+1F515 BELL WITH SLASH
🧼 - U+1F9FC SOAP
✖️ - U+2716 MULTIPLY
➕ - U+2795 PLUS
➖ - U+2796 MINUS
➗ - U+2797 DIVIDE
📛 - U+1F4DB NAME BADGE
✔️ - U+2714 CHECK MARK
2022-09-08 09:56:33 +01:00
electrikmilk
d7cfe35026
Base: Improve 4 emojis
...
🚥 - U+1F6A5 HORIZONTAL TRAFFIC LIGHT
🚦 - U+1F6A6 VERTICAL TRAFFIC LIGHT
📍 - U+1F4CD ROUND PUSHPIN
🗄️ - U+1F5C4 FILE CABINET
2022-09-08 09:56:33 +01:00
djwisdom
7e5a8bd4b0
Base: Add five more emojis
...
🍘 - U+1F358 Rice Cracker
🍤 - U+1F364 Fried Shrimp
🍻 - U+1F37B Clinking beer mugs
🍥 - U+1F365 Fish cake with swirl
🍼 - U+1F37C Baby bottle
2022-09-07 17:56:12 +01:00
Andreas Kling
514fa83708
LibWeb: Improve float: right
behavior
...
- Use the border box of the floated element when testing if something
needs to flow around it.
- Take the floated element's containing block size into account (instead
of the BFC root) when calculating available space on a line where a
right-side float intrudes.
2022-09-07 17:47:33 +02:00
electrikmilk
325a8a3d9b
Base: Match colors for C++ file type icons
...
Update the color of the 16x16 version of the C++ file icon to match the
new colors in the 32x32 version of the icon.
2022-09-06 18:44:02 +00:00
electrikmilk
a0e3289cf3
Base: Add CMakeLists file type icon
...
This adds a file icon for CMakeLists.txt files.
2022-09-06 18:06:57 +01:00
electrikmilk
1ab510c4bb
Base+LibGUI: Add Git folder icons
...
This adds icons for folder paths ending in ".git". This adds 16x16 and
32x32 versions of a folder with a Git logo for both the closed and open
versions of the folder icon.
2022-09-06 07:38:09 +01:00
electrikmilk
ce166785d7
Base: Add Git file type icons
...
This adds 16x16 and 32x32 Git file icons for files like .gitignore, etc.
2022-09-06 07:38:09 +01:00
electrikmilk
98fb0727a4
Base: Make open folder icons consistent
...
This changes the open parent directory, open recent, and open folder
16x16 icons to be more consistent with the other folder icons. This
also improves the other elements on these icons by adding tinting
and shading.
2022-09-05 21:40:16 +01:00
electrikmilk
67eee46319
Base: Add shell script file type icon
...
This adds a file type icon for shell scripts.
2022-09-05 20:34:42 +01:00