Releases: secondlife/dullahan
Release list
v1.40.0-CEF_150.0.13.accel
OnAcceleratedPaint support
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.40.0-CEF_150.0.13.accel/dullahan-1.40.0.202607111956_139.0.40_g465474a_chromium-139.0.7258.139-linux64-29166101544.tar.zst hash_algorithm=sha1 hash=597c560fcd4420245c1e1e0de9742a7ee2661f4d
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.40.0-CEF_150.0.13.accel/dullahan-1.40.0.202607111958_150.0.11_gb887805_chromium-150.0.7871.115-windows64-29166101544.tar.zst hash_algorithm=sha1 hash=247318956b2d04c68e5e9488070c57811701b100
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.40.0-CEF_150.0.13.accel/dullahan-1.40.0.202607111957_150.0.11_gb887805_chromium-150.0.7871.115-darwin64-29166101544.tar.zst hash_algorithm=sha1 hash=6d88e24bbd68f32d4c66d93f569cc82f0cf56fec
v1.40.0-CEF_150.0.11
This release contains no changes to Dullahan other than support for builds of CEF v150 for Windows and macOS.
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.40.0-CEF_150.0.11/dullahan-1.40.0.202607101917_139.0.40_g465474a_chromium-139.0.7258.139-linux64-29117399143.tar.zst hash_algorithm=sha1 hash=2695420e7af243db49a261e8a5954483eb20a033
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.40.0-CEF_150.0.11/dullahan-1.40.0.202607101919_150.0.11_gb887805_chromium-150.0.7871.115-windows64-29117399143.tar.zst hash_algorithm=sha1 hash=0b8b6b9f97f64faaf827acae6f04cd2fbe17bfb5
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.40.0-CEF_150.0.11/dullahan-1.40.0.202607101917_150.0.11_gb887805_chromium-150.0.7871.115-darwin64-29117399143.tar.zst hash_algorithm=sha1 hash=eaffac4834b2ddaec1b2e23e3337337434b98073
[mac] Bind window.JSONtoCPP by passing CefApp to sub-process
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.35.0-CEF_148.0.9-V8-mac-fix/dullahan-1.35.0.202606152237_139.0.40_g465474a_chromium-139.0.7258.139-linux64-27580919129.tar.zst hash_algorithm=sha1 hash=14f574a5c67f0ec01a1f68f03e4223afa51de416
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.35.0-CEF_148.0.9-V8-mac-fix/dullahan-1.35.0.202606152237_148.0.9_g0d9d52a_chromium-148.0.7778.180-darwin64-27580919129.tar.zst hash_algorithm=sha1 hash=07a7c12766e2b79c24b2193140889a432ce4c83f
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.35.0-CEF_148.0.9-V8-mac-fix/dullahan-1.35.0.202606152238_148.0.9_g0d9d52a_chromium-148.0.7778.180-windows64-27580919129.tar.zst hash_algorithm=sha1 hash=4c0a3fc59d9fbf0231f0029d251c3b9049bfd176
v1.35.0-CEF_148.0.9-V8-msg
Add support for sending a message (2 strings: and ID and a payload) from a JavaScript function to C++ via a Dullahan callback.
Typical usage is:
const result = window.JSONtoCPP(JSON.stringify("json", json_payload));
and if you implement the onJStoCPPMsgCallback(const std::string id, const std::string payload) callback in your application, when the JS call is made, that callback will be triggered in the C++ code and the ID / payload can be retrieved
More to come later once we figure out how best to use this
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.35.0-CEF_148.0.9-V8-msg/dullahan-1.35.0.202606120003_139.0.40_g465474a_chromium-139.0.7258.139-linux64-27385358101.tar.zst hash_algorithm=sha1 hash=cd24009d97b5f52f4dfbdd8c4f9adf54900f7a5d
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.35.0-CEF_148.0.9-V8-msg/dullahan-1.35.0.202606120005_148.0.9_g0d9d52a_chromium-148.0.7778.180-windows64-27385358101.tar.zst hash_algorithm=sha1 hash=ecbb70b90e03355904e8277ffa20d9ea96ace4ef
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.35.0-CEF_148.0.9-V8-msg/dullahan-1.35.0.202606120004_148.0.9_g0d9d52a_chromium-148.0.7778.180-darwin64-27385358101.tar.zst hash_algorithm=sha1 hash=0d0d7897aec7e9d6eb8741efffa99a901d6417d8
Add support for sending a message (nominally JSON string) from a JavaScript function to C++ via a Dullahan callback.
Add support for sending a message (nominally JSON string) from a JavaScript function to C++ via a Dullahan callback.
Typical usage is:
const result = window.JSONtoCPP(JSON.stringify(json_payload));
and if you implement the onJStoCPPMsgCallback(const std::string) callback in your application, when the JS call is made, that callback will be triggered in the C++ code.
This is a first pass - more to come later.
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.31.0-CEF_148.0.9-V8-msg/dullahan-1.31.0.202606112215_139.0.40_g465474a_chromium-139.0.7258.139-linux64-27380771317.tar.zst hash_algorithm=sha1 hash=ead584f0f5b3761dcb6dc3b34b4086d61bdbbcf0
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.31.0-CEF_148.0.9-V8-msg/dullahan-1.31.0.202606112218_148.0.9_g0d9d52a_chromium-148.0.7778.180-windows64-27380771317.tar.zst hash_algorithm=sha1 hash=d508ee6277d8f3745913c5f04779eed27a617f0e
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.31.0-CEF_148.0.9-V8-msg/dullahan-1.31.0.202606112216_148.0.9_g0d9d52a_chromium-148.0.7778.180-darwin64-27380771317.tar.zst hash_algorithm=sha1 hash=9925642606f4b312c60defdccd713c9b226e92f9
v1.31.0-CEF_148.0.9
Update CEF to version 148.0.9 (chromium-148.0.7778.180) for Windows and macOS - Linux to follow.
No other code changes.
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.31.0-CEF_148.0.9/dullahan-1.31.0.202606101803_139.0.40_g465474a_chromium-139.0.7258.139-linux64-27295840708.tar.zst hash_algorithm=sha1 hash=ff693c599beca35d0afbd7b41c768bf5909e4845
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.31.0-CEF_148.0.9/dullahan-1.31.0.202606101805_148.0.9_g0d9d52a_chromium-148.0.7778.180-windows64-27295840708.tar.zst hash_algorithm=sha1 hash=83400a65243657dbdb817d9056caaf15182b263b
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.31.0-CEF_148.0.9/dullahan-1.31.0.202606101805_148.0.9_g0d9d52a_chromium-148.0.7778.180-darwin64-27295840708.tar.zst hash_algorithm=sha1 hash=ed6a224b39df60f48021715802966226da2c04e2
v1.30.0-CEF_147.0.10
Update CEF to version 147.0.10 (chromium-147.0.7727.118) for Windows and macOS - Linux to follow.
No other code changes.
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.30.0-CEF_147.0.10/dullahan-1.30.0.202604261548_139.0.40_g465474a_chromium-139.0.7258.139-linux64-24960603207.tar.zst hash_algorithm=sha1 hash=8c8a1de226fa912112d6e74a92930424665c4867
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.30.0-CEF_147.0.10/dullahan-1.30.0.202604261550_147.0.10_gd58e84d_chromium-147.0.7727.118-windows64-24960603207.tar.zst hash_algorithm=sha1 hash=1adb3789132580356458c86731dfbd6b27355951
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.30.0-CEF_147.0.10/dullahan-1.30.0.202604261548_147.0.10_gd58e84d_chromium-147.0.7727.118-darwin64-24960603207.tar.zst hash_algorithm=sha1 hash=ed0f78bbcda35eeb50cb0562081897753f1c5cdb
v1.29.0-CEF_146.0.12
This release contains no changes to Dullahan other than support for a newer build of CEF v146 (146.0.12) for Windows and Mac - Linux to follow (remains on version 139).
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.29.0-CEF_146.0.12/dullahan-1.29.0.202604232347_139.0.40_g465474a_chromium-139.0.7258.139-linux64-24864575166.tar.zst hash_algorithm=sha1 hash=1d77c015ed568c5d00c6191105d4f8a2cf6722de
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.29.0-CEF_146.0.12/dullahan-1.29.0.202604232349_146.0.12_g6214c8e_chromium-146.0.7680.179-windows64-24864575166.tar.zst hash_algorithm=sha1 hash=b80352ac3bb738dd38a55193850bb257b39903c3
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.29.0-CEF_146.0.12/dullahan-1.29.0.202604232348_146.0.12_g6214c8e_chromium-146.0.7680.179-darwin64-24864575166.tar.zst hash_algorithm=sha1 hash=61944d4471578eb9292a30c4f5c3eba1ef05059a
v1.28.0-CEF_146.0.10
This release contains no changes to Dullahan other than support for a newer build of CEF v146 (146.0.10) for Windows and Mac - Linux to follow.
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.28.0-CEF_146.0.10/dullahan-1.28.0.202604141717_139.0.40_g465474a_chromium-139.0.7258.139-linux64-24412863301.tar.zst hash_algorithm=sha1 hash=e42eb9df656b6aeca154e1ebe509f663f2decc37
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.28.0-CEF_146.0.10/dullahan-1.28.0.202604141718_146.0.10_g8219561_chromium-146.0.7680.179-windows64-24412863301.tar.zst hash_algorithm=sha1 hash=c794ae2fda70fa59f2fc4e17bb40e3deb88262d5
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.28.0-CEF_146.0.10/dullahan-1.28.0.202604141718_146.0.10_g8219561_chromium-146.0.7680.179-darwin64-24412863301.tar.zst hash_algorithm=sha1 hash=106186b48affcf66b3649d6823cb8197a42dd888
v1.26.1-CEF_139.0.40.accel
Accelerated CEF painting for Windows
Full Changelog: v1.26.0-CEF_139.0.40...v1.26.1-CEF_139.0.40.accel
💫 Installation instructions
autobuild installables edit dullahan platform=linux64 url=https://github.com/secondlife/dullahan/releases/download/v1.26.1-CEF_139.0.40.accel/dullahan-1.26.0.202604010801_139.0.40_g465474a_chromium-139.0.7258.139-linux64-23838332395.tar.zst hash_algorithm=sha1 hash=6f8d73431199fb0f669ca510ae1bdb5d797cd31e
autobuild installables edit dullahan platform=windows64 url=https://github.com/secondlife/dullahan/releases/download/v1.26.1-CEF_139.0.40.accel/dullahan-1.26.0.202604010803_139.0.40_g465474a_chromium-139.0.7258.139-windows64-23838332395.tar.zst hash_algorithm=sha1 hash=7a477ea33efaf1e6cea662ea602de914a718771e
autobuild installables edit dullahan platform=darwin64 url=https://github.com/secondlife/dullahan/releases/download/v1.26.1-CEF_139.0.40.accel/dullahan-1.26.0.202604010801_139.0.40_g465474a_chromium-139.0.7258.139-darwin64-23838332395.tar.zst hash_algorithm=sha1 hash=2a4147260900b4a8ebc781cd8d0dc385b9983c89