summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2021-06-15LibJS: Add a basic pass manager and add some basic passesAli Mohammad Pur
2021-06-15LibJS: Rename the overridden Instruction methods to foo_implAli Mohammad Pur
2021-06-15LibJS: Make EnterUnwindContext a terminator opAli Mohammad Pur
2021-06-15LibJS: Make basic block size customizableAli Mohammad Pur
2021-06-15LibJS: Store and return undefined Symbol descriptionIdan Horowitz
2021-06-15PixelPaint: Alternate selection outline between black and whiteMateusz Górzyński
2021-06-15LibTextCodec: Add ISO-8859-15 (aka Latin-9) encodingAatos Majava
2021-06-15LibGUI: Allow tweaking each edge of TabWidget's content marginsAndreas Kling
2021-06-15LibGUI: Make a macro for registering a GUI::Margins object propertyAndreas Kling
2021-06-15LibJS: Use Optional<String> in StringPrototypeAndreas Kling
2021-06-15LibWeb: Use Optional<String> more in WrapperGeneratorAndreas Kling
2021-06-15PixelPaint: Clear selection when opening a new imageAndreas Kling
2021-06-15PixelPaint: Display an error message if exporting to PNG/BMP failsAndreas Kling
2021-06-15LibJS: Call toString on the key, not on the argument in ToPropertyKeyIdan Horowitz
2021-06-15LibJS: Add the Object.fromEntries methodIdan Horowitz
2021-06-15LibJS: Implement the IteratorClose abstract op and use it where neededIdan Horowitz
2021-06-15PixelPaint: Avoid unnecessary temporary layer bitmaps during PP loadAndreas Kling
2021-06-15PixelPaint: Increase default size of new images from 1x1 to 480x360Andreas Kling
2021-06-15PixelPaint: Don't allow creating empty layers or imagesAndreas Kling
2021-06-15PixelPaint: Display an error message if opening a file failsAndreas Kling
2021-06-15PixelPaint: Display an error message if saving to PP file failsAndreas Kling
2021-06-15PixelPaint: No need to pass ImageEditor& to Selection::paint()Andreas Kling
2021-06-15PixelPaint: Add actions to swap colors or reset them to default valuesLepkoQQ
2021-06-15PixelPaint: Add menu items for Select All and Clear SelectionLepkoQQ
2021-06-14PixelPaint: Always animate marching ants during interactive selectionAndreas Kling
2021-06-14PixelPaint: Make new pasted layer active immediatelyAndreas Kling
2021-06-14PixelPaint: Add copy action (copies the selection from active layer)Andreas Kling
2021-06-14PixelPaint: Draw the current editor selection as marching antsAndreas Kling
2021-06-14PixelPaint: Add a Selection class (ImageEditor has a Selection)Andreas Kling
2021-06-14PixelPaint: Implement basic rectangular selection (preview only)Andreas Kling
2021-06-14PixelPaint: Add a new "Rectangle Select" tool :^)Andreas Kling
2021-06-14Userland: Fix double line spacing in grepSahan Fernando
2021-06-14LibJS: Correctly parse yield-from expressionsAli Mohammad Pur
2021-06-14LibJS: Parse generator functions in object literalsAli Mohammad Pur
2021-06-14LibJS: Add a test file for generator function parsingAli Mohammad Pur
2021-06-14LibRegex: Remove unused codeGunnar Beutner
2021-06-14LibRegex: Use a plain pointer for OpCode::m_stateGunnar Beutner
2021-06-14LibRegex: Avoid initialization checks in get_opcode_by_id()Gunnar Beutner
2021-06-14LibRegex: Avoid prepending items to vectorsGunnar Beutner
2021-06-14LibRegex: Avoid making unnecessary string copiesGunnar Beutner
2021-06-14LibRegex: Make get_opcode() return a referenceGunnar Beutner
2021-06-14LibRegex: Remove return value for settersGunnar Beutner
2021-06-14LibRegex: Use a plain array to store opcodesGunnar Beutner
2021-06-14LibGfx: Inline BitmapFont::glyph_or_emoji_width() for fixed-width fontsAndreas Kling
2021-06-14LibJS: Teach Reference to access call frame arguments directlyAndreas Kling
2021-06-14LibJS: Add LoadArgument bytecode instruction for fast argument accessAndreas Kling
2021-06-14LibJS: Access function arguments directly in AST interpreterAndreas Kling
2021-06-14LibJS: Write computed function default arguments into the call frameAndreas Kling
2021-06-14LibJS: Track which Identifier nodes refer to function argumentsAndreas Kling
2021-06-14LibJS: Add additional generic Array.prototype.slice testsdavidot