Tags: ludwig-pro/radon-ide
Tags
Bump simulator server to include CI build fix to disable software enc… …oders (software-mansion#707)
Remove JSX code from main runtime.js file (software-mansion#651) This PR fixes an issue we detected in some app configurations (specifically in react conf app). We identified the issue to be rooted in the fact we've been using JSX syntax in the main runtime.js file. The runtime is one of the first files included in the bundler. Using JSX there was making it import react internals, which impacted the order of the modules being loaded. Apparently, some applications are sensitive to this order, and the runtime shouldn't impact it. The fix was to move JSX code inside of wrapper.js that is loaded lazily and hence doesn't impact the order of modules being processed when bundle is loaded. ### How Has This Been Tested: 1. Run react-conf-app example (should successfully start) 2. Add `setWrapperComponentProvider` call to one of the other test apps to make sure the fix from software-mansion#616 is still working
Update CSP to allow replays to play in release builds (software-mansi… …on#612) This PR updates CSP used for the IDE panel. This is needed for replays to work, as the built-in player streams the video over http, we need to allow for this. The issue wasn't detected with non-release builds before as we use different CSP settings there that are much more permissive in order to allow for things like hot reload. ## Test plan Try out replays on release build
Add info about Windows support (software-mansion#531) Just updating docs and main website in a couple of places where we mentioned macOS support only.
Fix lists without key prop errors (software-mansion#508) This PR adds keys to lists in DeviceSettingsDropdown and IconButtonWithOptions to prevent error messages.
Fix cmd + A selecting the device image (software-mansion#437) This PR hides, device selection that happens when user presses cmd + A. This change is required because the user-select css property is not inheritable, which is why it does not disable global selection (using ctrl + A or double-click). Fixes: software-mansion#434 --------- Co-authored-by: filip131311 <filip.kaminski@swmansiom.com>
Don't update shared prefs for expo go (software-mansion#379) We recently added code that'd write to shaed prefs in order to disable dev menu popping up on expo dev client on Android. This apparently doesn't work with expo go, as the go APK installed on the emulator is not debuggable. In this PR we add a check for the bundle name before we write the setting.
PreviousNext