slintpad: Move into tools/slintpad (#2435)

* Add "slintpad" to cspell white list for all languages
* Mention online_editor to slintpad rename in CHANGELOG
* Move tools/online_editor into tools/slintpad
* Update github actions accordingly

Co-authored-by: Olivier Goffart <olivier@woboq.com>
This commit is contained in:
Tobias Hunger 2023-03-29 16:32:30 +02:00 committed by GitHub
parent 9124d8ffa2
commit de0dc20e5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 55 additions and 53 deletions

View file

@ -201,7 +201,7 @@ impl BuiltinFunction {
BuiltinFunction::ColorBrighter | BuiltinFunction::ColorDarker => true,
// ImageSize is pure, except when loading images via the network. Then the initial size will be 0/0 and
// we need to make sure that calls to this function stay within a binding, so that the property
// notification when updating kicks in. Only the online editor (wasm-interpreter) loads images via the network,
// notification when updating kicks in. Only Slintpad (wasm-interpreter) loads images via the network,
// which is when this code is targeting wasm.
#[cfg(not(target_arch = "wasm32"))]
BuiltinFunction::ImageSize => true,