1. 31 Aug, 2020 3 commits
  2. 27 Aug, 2020 1 commit
  3. 26 Aug, 2020 1 commit
  4. 21 Aug, 2020 2 commits
    • Evan W. Patton's avatar
      Make specific drop targets to reduce chances of inadvertent drop capture · 9638c167
      Evan W. Patton authored
      Change-Id: Idd7b231e4c57da44b008ba4c5fbb700cf4342d78
      9638c167
    • Evan W. Patton's avatar
      Implement LegacyMode for File component · 0fc9fd19
      Evan W. Patton authored
      With the nb184 change, apps that previously worked on Android 10 may
      no longer work if the app in question stored files based on the
      external storage root (e.g., /sdcard). While Google isn't enforcing
      read/write access to directories outside of the app-private path just
      yet (this will be true in Android 11), we switched over most file
      operations to use the app-private path anyway starting with Android
      Q. New apps will read/write files without issue, however apps that are
      used to using the old path on Android 10 have no way to read files
      they may have written.
      
      This change adds a LegacyMode property to File, which is False by
      default, that allows a developer to access files relative to the root
      of the external storage on Android 10 and higher. I've included a note
      that the use of this property may cause apps to fail starting with
      Android 11.
      
      Change-Id: I4ab0d26e54d2a74535b4a691cfd63826543d29a4
      0fc9fd19
  5. 12 Aug, 2020 7 commits
  6. 11 Aug, 2020 1 commit
  7. 29 Jul, 2020 5 commits
  8. 24 Jul, 2020 1 commit
    • Evan W. Patton's avatar
      Add osmdroid.jar as dependency of Navigation component · c796aca8
      Evan W. Patton authored
      The Navigation component makes use of org.osmdroid.util.GeoPoint, but
      if it is included in a project without also including a Map component,
      compiled apps fail due to the fact that GeoPoint is not in the final
      binary. This change asserts that the Navigation component is dependent
      on osmdroid.jar when building apps.
      
      Change-Id: I1111c710e3b53a6dc85d65668ef140d6286ec585
      c796aca8
  9. 21 Jul, 2020 2 commits
  10. 15 Jul, 2020 2 commits
  11. 13 Jul, 2020 1 commit
    • Evan W. Patton's avatar
      Allow and/or blocks to have 0 or 1 inputs (#2220) · 52cddaf3
      Evan W. Patton authored
      * Allow and/or blocks to have 0 or 1 inputs
      
      Change-Id: Ic04587ca376f7ed1bb582d8c273b6f16833ad13d
      
      * Make and/or ops more sane when < 2 args
      
      Change-Id: I87f1fdf91bccb9ead5e786e0006f531c04585cba
      
      * Add identities to math add/multiply with < 2 args
      
      Change-Id: If637a09b447168e578c143b4f57bd990cb4aad8c
      
      * Refactor identity information for logic_operation
      
      Change-Id: I446b9dbc7f82bf165d5751a90297f409a841091b
      
      * Fix missing identities when mutating and/or
      
      Change-Id: I8bb25ca917f28ad054254f7b087dce7fc505698c
      
      * Fix logic bug in logic_or block
      
      Change-Id: Ib070bebc8d1ffb09a002d3e4557648f79cd26103
      
      * Use ±inf.0 for min/max identities
      
      Change-Id: I374ae68f0559483285246e1035fd6f5ddf1674c8
      
      * Render ±infinity as strings rather than min/max long
      
      Change-Id: I82721ab57128c381189c5afe5f1fff0749b3a06c
      52cddaf3
  12. 12 Jul, 2020 2 commits
    • Jeffrey I. Schiller's avatar
      Escape Strings on the Login Page · df02bf77
      Jeffrey I. Schiller authored
      Change-Id: Iaf2381b8bfc704b8ba4501953da0696272ae0b78
      df02bf77
    • Evan W. Patton's avatar
      Implement preventScroll for focusable elements · 99905734
      Evan W. Patton authored
      The source structure tree is based on GWT's Tree implementation, which
      uses focusable elements to handle keyboard navigation. However, when
      these items are selected by the user, they also cause the browser to
      scroll, resulting in the view jumping around, sometimes significantly
      depending on the size of the scroll offset. This change passes an
      optional flag, `preventScroll`, to the native `focus` method to
      suppress this browser behavior. It leverage's GWT's mechanism for
      making compile-time substitutions of classes to replace the GWT
      implementation with an App Inventor-specific implementation.
      
      Change-Id: I4766e5a3c119ee461d8f20dc359f4d9cdec112c0
      99905734
  13. 06 Jul, 2020 2 commits
  14. 03 Jul, 2020 1 commit
  15. 01 Jul, 2020 3 commits
  16. 30 Jun, 2020 1 commit
  17. 25 Jun, 2020 2 commits
    • Evan W. Patton's avatar
      Merge branch 'master' into ucr · 1843bdd6
      Evan W. Patton authored
      Change-Id: I6e67e5d15ce2d1999e971386bf9536fa99009219
      1843bdd6
    • Jeffrey I. Schiller's avatar
      Add support for Chromebooks · cc56b0a8
      Jeffrey I. Schiller authored
      When run on a Chromebook, replace the Connection menu items of
      “Emulator” and “USB” with a new “Chromebook” choice. This choice will
      use an intent to start the Companion and hand it the code needed to give
      the Rendezvous server to get a WebRTC connection started.
      
      Based on work started by Evan W. Patton.
      Co-authored-by: default avatarEvan W. Patton <ewpatton@mit.edu>
      
      Change-Id: I85c143a4c66359fa10a4aa295541dfdc8789d411
      cc56b0a8
  18. 19 Jun, 2020 2 commits
  19. 12 Jun, 2020 1 commit