Skip to content

Commit

Permalink
Improve text rendering, fix bugs.
Browse files Browse the repository at this point in the history
Font hinting and rendering has been improved, especially at small pixel sizes. FontHinting::Smooth now works as intended (hinting is only performed on horizontal features, matches macOS-type rendering). There's also a new FontHinting::None option if you wish to disable hinting completely.

Fix crash when Config::bitmap_alignment is 0.

Add support for Gamepad input.

LoadListener::OnFailLoading will now be fired when a non-200 HTTP status code is encountered, this can be used to display custom error pages for 404s and other codes.

Fix bug with LoadListener::OnBeginLoading not passing the correct URL that is being loaded into the frame.
  • Loading branch information
adamjs committed Jun 11, 2022
1 parent 36726f7 commit eb77230
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Deps.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ elseif (PORT MATCHES "UltralightWin")
endif ()
endif ()

set(ULTRALIGHTCORE_REV "97e3a482")
set(WEBCORE_REV "c735e9d0")
set(ULTRALIGHT_REV "121303a4")
set(APPCORE_REV "3f80e38")
set(ULTRALIGHTCORE_REV "f01ed448")
set(WEBCORE_REV "9058049a")
set(ULTRALIGHT_REV "92889541")
set(APPCORE_REV "f905014")

set(ULTRALIGHTCORE_DIR "${CMAKE_CURRENT_BINARY_DIR}/deps/UltralightCore/")
set(WEBCORE_DIR "${CMAKE_CURRENT_BINARY_DIR}/deps/WebCore/")
Expand Down

0 comments on commit eb77230

Please sign in to comment.