You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the issue was that we copy over the group/subcategory strings when we download the localizations for a package, but in staticpkg targets we download all of those localized strings from bundled-strings.json which doesn't go down the same code path. i've refactored the copying so that it is now invoked in both places.
@THEb0nny@PetteriAimonen can you try testing this out and let me know if it fixes the issue? i'm not really set up to test the EV3 staticpkg target locally
Thanks! The fix makes sense, now I'll just need to figure out how to build pxt-ev3 against the updated pxt. I'm very new to the inner workings of the pxt system :)
Sorry, I couldn't get npm run build for pxt to succeed tonight, presumably for reasons unrelated to the actual pull request. Just getting silly errors like Module not found: Error: Can't resolve './Fonts.css' in '.../pxt/pxt/kiosk/src'. I'll try to find time to try again tomorrow.
Sorry, I couldn't get npm run build for pxt to succeed tonight, presumably for reasons unrelated to the actual pull request. Just getting silly errors like Module not found: Error: Can't resolve './Fonts.css' in '.../pxt/pxt/kiosk/src'. I'll try to find time to try again tomorrow.
@PetteriAimonen if npm run build gives you too much trouble, you can also give gulp -n a shot instead. that'll skip the building of all the subapps (like kiosk) and just build the core pxt stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes the issue reported here and here
the issue was that we copy over the group/subcategory strings when we download the localizations for a package, but in staticpkg targets we download all of those localized strings from bundled-strings.json which doesn't go down the same code path. i've refactored the copying so that it is now invoked in both places.
@THEb0nny @PetteriAimonen can you try testing this out and let me know if it fixes the issue? i'm not really set up to test the EV3 staticpkg target locally