Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update from source #1

Merged
merged 1,963 commits into from
Aug 12, 2019
Merged

update from source #1

merged 1,963 commits into from
Aug 12, 2019
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jul 15, 2019

  1. Configuration menu
    Copy the full SHA
    e374e1f View commit details
    Browse the repository at this point in the history
  2. ComboBox virtualization

     - Inherit CarouselPanel from VirtualizingPanel, use ItemsStackPanelLayout
     - amend ComboBox style to support virtualization
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    5204d03 View commit details
    Browse the repository at this point in the history
  3. [iOS] ItemsStackPanel - handle unused space more robustly

    Make the case more robust where the list initially measures with a smaller desired size than what is available, ie the items don't fill all available space.
    
    This fixes a bug with the former logic where, after returning a smaller desired size than what was available, the list would be remeasured with that returned size, and then 'forget' that more space had been available.
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    a6b5289 View commit details
    Browse the repository at this point in the history
  4. [iOS] ItemsStackPanel - fix incorrect desired height

    Fix layout attributes not updating with dynamic sizes correctly, it seems that in some cases PreferredLayoutAttributesFittingAttributes() may be called out of order.
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    3e37644 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5225165 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    73351a2 View commit details
    Browse the repository at this point in the history
  7. [iOS] VirtualizingPanelLayout Fix NRE from missing layouts

    This can occur when Measure() is called outside of the usual loop, followed by ScrollIntoView().
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    b24159c View commit details
    Browse the repository at this point in the history
  8. Update release notes

    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    754f4ff View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0244655 View commit details
    Browse the repository at this point in the history
  10. ComboBox - fix bugs when using views in Items

    If SelectedItem is a view, ensure it's correctly placed in either the ContentPresenter or the dropdown list according to whether the dropdown is open.
    
    This fixes bug where the item would disappear from the ContentPresenter if the dropdown were light-dismissed without changing the selection, and makes the logic more robust in the case of a virtualized list.
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    004bcb4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    19a438e View commit details
    Browse the repository at this point in the history
  12. ItemsControl - don't reapply the same template

    Certain Styles application sequences can lead to the same ItemsPanelTemplate (but not reference-equal) being applied multiple times.
    
    As a perf improvement, don't reapply the panel. This also works around the issue on Android that changing the ItemsPanel of a ListView after it's already been materialized isn't properly supported and causes errors.
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    dda1f7e View commit details
    Browse the repository at this point in the history
  13. Update release notes

    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    e2c4825 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    d9cdc41 View commit details
    Browse the repository at this point in the history
  15. [WASM] ListView - intercept measure requests when adding items

    This is a significant perf optimization since UpdateLayout() is called very frequently while scrolling.
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    d4a48a7 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    2c84c4b View commit details
    Browse the repository at this point in the history
  17. [WASM] ListView - fix arrange in non-Stretch mode

    When ListView has non-Stretched breadth, item elements must be arranged with the list's breadth rather than their desired size. (Otherwise, eg, selected state highlight doesn't stretch to full width.)
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    f36790c View commit details
    Browse the repository at this point in the history
  18. [Android] [iOS] Devirtualize ComboBox

    Revert virtualization on these platforms because it breaks layouting (ComboBox dropdown stretches to full width of window). It can be reenabled when #1133 is fixed.
    davidjohnoliver committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    fe04884 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    42ad21e View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    f9d4348 View commit details
    Browse the repository at this point in the history
  21. Merge pull request #1215 from unoplatform/dev/djo/textbox-textchanging

    TextBox - add TextChanging and BeforeTextChanging
    davidjohnoliver authored Jul 15, 2019
    Configuration menu
    Copy the full SHA
    0bdd737 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    4bec824 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    e445266 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    3cf35bf View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    3271891 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    f142435 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    2886d34 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    0011902 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    e0629d3 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    c28ec9c View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2019

  1. Configuration menu
    Copy the full SHA
    69658bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ee1c691 View commit details
    Browse the repository at this point in the history
  3. docs: spelling fix

    ghuntley authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    a51fb6f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2a9a747 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    01a87f6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c40a204 View commit details
    Browse the repository at this point in the history
  7. Adjust script path

    jeromelaban committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    90d55a7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    504dac0 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    860635a View commit details
    Browse the repository at this point in the history
  10. Remove unused permissions

    jeromelaban committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    e030121 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #1134 from unoplatform/dev/djo/combobox-virt-2

    ComboBox virtualization, item kidnapping fixes
    davidjohnoliver authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    7f003e1 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #1238 from unoplatform/dev/jela/contentdialog

    Adjust the ability to ignore platforms during UI Tests
    jeromelaban authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    534331f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e84ee14 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #1235 from unoplatform/dependabot/nuget/Microsoft.…

    …ApplicationInsights-2.10.0
    
    Bump Microsoft.ApplicationInsights from 2.0.0 to 2.10.0
    jeromelaban authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    b4c003e View commit details
    Browse the repository at this point in the history
  15. Merge pull request #1205 from unoplatform/dependabot/nuget/Com.Airbnb…

    ….iOS.Lottie-2.5.8
    
    Bump Com.Airbnb.iOS.Lottie from 2.5.2 to 2.5.8
    jeromelaban authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    7477221 View commit details
    Browse the repository at this point in the history
  16. Update README.md

    Added Uno Calculator & Skiasharp links
    carldebilly authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    ec17285 View commit details
    Browse the repository at this point in the history
  17. Update README.md

    + calculator iOS & Android
    carldebilly authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    1c410ad View commit details
    Browse the repository at this point in the history
  18. [iOS] ListView - improve template measurement

    Use double.PositiveInfinity rather than .MaxValue. This fixes bug where multiline TextBox incorrectly requests infinite height, causing the app to crash or hang when list is laid out.
    davidjohnoliver committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    3e1862a View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    d2f6bb6 View commit details
    Browse the repository at this point in the history
  20. Docs - suggestions from code review

    Co-Authored-By: Jérôme Laban <jerome.laban@nventive.com>
    davidjohnoliver and jeromelaban authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    08cd259 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    8e734ee View commit details
    Browse the repository at this point in the history
  22. #23 Migrate private UI Tests to public Uno

    StaticResources
    MaximeDion-Work committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    d3560df View commit details
    Browse the repository at this point in the history
  23. Merge pull request #1221 from unoplatform/dev/djo/docs-platform-specific

    Docs - add expanded guide on platform-specific code, fix TOC links
    davidjohnoliver authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    b9a73ce View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    8ef813c View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    e959cee View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    ee15377 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    ca6b893 View commit details
    Browse the repository at this point in the history
  28. Merge pull request #1248 from unoplatform/dev/jela/uitest-retry

    Auto retry tests to workaround
    jeromelaban authored Jul 16, 2019
    Configuration menu
    Copy the full SHA
    da58fdd View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2019

  1. Merge pull request #1243 from unoplatform/dev/jela/vsconfig-adjust

    Remove VS Enterprise only features from .vsconfig
    jeromelaban authored Jul 17, 2019
    Configuration menu
    Copy the full SHA
    5646f12 View commit details
    Browse the repository at this point in the history
  2. Adjust the android startup script

    Try going to the home screen  as the messaging app may be brought in front.
    jeromelaban committed Jul 17, 2019
    Configuration menu
    Copy the full SHA
    2aa4990 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1245 from unoplatform/dev/madi/migrate-ui-test/St…

    …aticResources
    
    Migrate StaticResource UI Tests
    MaximeDionNventiveCom authored Jul 17, 2019
    Configuration menu
    Copy the full SHA
    2c28539 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8ffdc3b View commit details
    Browse the repository at this point in the history
  5. React to code review

    davidjohnoliver authored Jul 17, 2019
    Configuration menu
    Copy the full SHA
    41c7a9b View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1228 from unoplatform/dev/guen/TimePickerIOSNoSel…

    …ectDateIssue
    
    Fixed the no date selected issue on Time Picker for IOS
    jeromelaban authored Jul 17, 2019
    Configuration menu
    Copy the full SHA
    a6ad2ec View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1249 from unoplatform/dev/jela/uitest-retry

    [UITest] Adjust the android startup script
    jeromelaban authored Jul 17, 2019
    Configuration menu
    Copy the full SHA
    5efa5b3 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fca0c68 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    564cbc0 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2019

  1. Disable fail build on Android UI Tests failure

    See #1259 for more details.
    jeromelaban authored Jul 18, 2019
    Configuration menu
    Copy the full SHA
    d3e09e3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1258 from unoplatform/dev/jela/uitest-retry

    [Android] Add UI Tests for pointer events failure
    jeromelaban authored Jul 18, 2019
    Configuration menu
    Copy the full SHA
    ab2481d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1260 from unoplatform/dev/jela/android-ui-test-fail

    Disable fail build on Android UI Tests failure
    jeromelaban authored Jul 18, 2019
    Configuration menu
    Copy the full SHA
    80e22b5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1247 from unoplatform/dev/djo/listview-ios-fix-3

    [iOS] ListView - improve template measurement
    davidjohnoliver authored Jul 18, 2019
    Configuration menu
    Copy the full SHA
    9fb60a6 View commit details
    Browse the repository at this point in the history
  5. Add sample

    baptiste-nv committed Jul 18, 2019
    Configuration menu
    Copy the full SHA
    dd478f9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e4f98fe View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1261 from unoplatform/dev/bgy/fix_path

    Fix Arc command in paths
    baptiste-nv authored Jul 18, 2019
    Configuration menu
    Copy the full SHA
    402362e View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1223 from unoplatform/dev/nich/timepicker-binding

    Checks for dataContext before applying FallbackValue to explicit bindings
    NicolasChampagne authored Jul 18, 2019
    Configuration menu
    Copy the full SHA
    df8cc70 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8b401b1 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e58b2f6 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #1226 from unoplatform/dev/nich/pick-combobox

    Fix to iOS ComboBox initial selected value not null/empty
    NicolasChampagne authored Jul 18, 2019
    Configuration menu
    Copy the full SHA
    0e5b908 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2019

  1. Configuration menu
    Copy the full SHA
    d49f83b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #850 from unoplatform/dev/yogu/android.notch.support

    [Android] Taking into account the notch for the VisibleBounds calculation
    XiaotianNetlift authored Jul 19, 2019
    Configuration menu
    Copy the full SHA
    3c5c982 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7da956c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    09afe3a View commit details
    Browse the repository at this point in the history
  5. DataContext were considered valid when set to "UnsetValue"

    Was causing a problem on Android when coming back from background, the DataContext is briefly set to UnsetValue, causing DependencyProperties to change to their default value.
    carldebilly committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    7fc1c98 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2beca6b View commit details
    Browse the repository at this point in the history
  7. Removed useless setting of DataContext in a "reload" scenario.

    This was mostly happening on Android when the application is coming back from background.
    carldebilly committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    c06ae18 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8c42b97 View commit details
    Browse the repository at this point in the history
  9. Update src/Uno.UI/DataBinding/BindingPath.cs

    Co-Authored-By: Jérôme Laban <jerome.laban@nventive.com>
    carldebilly and jeromelaban committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    310522f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fe2f008 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5208171 View commit details
    Browse the repository at this point in the history
  12. Added release notes

    carldebilly committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    9e2b795 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    7e1f05b View commit details
    Browse the repository at this point in the history
  14. Fix non-passing tests

    carldebilly committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    14b1585 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    45d3013 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    dcb025d View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    343fc4a View commit details
    Browse the repository at this point in the history
  18. Changed the way the MaterializedList is used

    to prevent Collection was modified exception
    carldebilly committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    eb30ffc View commit details
    Browse the repository at this point in the history
  19. Update doc/ReleaseNotes/_ReleaseNotes.md

    Co-Authored-By: Jérôme Laban <jerome.laban@nventive.com>
    (cherry picked from commit ef4803c)
    carldebilly committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    b463fd6 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    4ac170c View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    6612718 View commit details
    Browse the repository at this point in the history
  22. Merge pull request #1254 from unoplatform/dev/cdb/bugs/calculator-ove…

    …rlapped-panel
    
    Misc fixes for Calculator
    carldebilly authored Jul 19, 2019
    Configuration menu
    Copy the full SHA
    f9d2d2e View commit details
    Browse the repository at this point in the history
  23. fixed crash on android

    Xiaoy312 committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    9e7bbbc View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2019

  1. Configuration menu
    Copy the full SHA
    a0ad423 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3e8690b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    014d221 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    95de73d View commit details
    Browse the repository at this point in the history
  5. Updated release notes

    MartinZikmund committed Jul 22, 2019
    Configuration menu
    Copy the full SHA
    73e0c8a View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1270 from unoplatform/dev/xygu/850/enum-hasflag-a…

    …rgument-exception
    
    fixed crash on android
    davidjohnoliver authored Jul 22, 2019
    Configuration menu
    Copy the full SHA
    34ae261 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1269 from unoplatform/dev/nich/virt-loop

     Fix to infinite loop+refactored UpdateLayoutAttributesForItem iteratively
    NicolasChampagne authored Jul 22, 2019
    Configuration menu
    Copy the full SHA
    c2727cb View commit details
    Browse the repository at this point in the history
  8. Added Sample for RotatedListView with RotatedItems (Listview starts f…

    …rom the bottom and new items are added to the bottom first)
    NicolasChampagne committed Jul 22, 2019
    Configuration menu
    Copy the full SHA
    96e84e6 View commit details
    Browse the repository at this point in the history
  9. Comparer updates

    - Extract comparer data structures
    - Fix comparer result diff opacity
    jeromelaban committed Jul 22, 2019
    Configuration menu
    Copy the full SHA
    32bdd65 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c7aadb7 View commit details
    Browse the repository at this point in the history
  11. Adjust documentation

    jeromelaban committed Jul 22, 2019
    Configuration menu
    Copy the full SHA
    e3704f9 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    27f2193 View commit details
    Browse the repository at this point in the history
  13. Remove invalid updates

    jeromelaban committed Jul 22, 2019
    Configuration menu
    Copy the full SHA
    da030c6 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    9de5461 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    56b360f View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2019

  1. Configuration menu
    Copy the full SHA
    48865f2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    144198e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a649b9f View commit details
    Browse the repository at this point in the history
  4. Remove unused code

    jeromelaban committed Jul 23, 2019
    Configuration menu
    Copy the full SHA
    855a977 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1266 from unoplatform/dev/jela/compare-result

    Generate and publish screenshot compare results
    jeromelaban authored Jul 23, 2019
    Configuration menu
    Copy the full SHA
    6bdfd9c View commit details
    Browse the repository at this point in the history
  6. #23 Migrate private UI Tests to public Uno

    CommandBar
    MaximeDion-Work committed Jul 23, 2019
    Configuration menu
    Copy the full SHA
    b57bdc9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    11a74f8 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6780a4e View commit details
    Browse the repository at this point in the history
  9. Updated ReleaseNotes

    NicolasChampagne committed Jul 23, 2019
    Configuration menu
    Copy the full SHA
    8d19c51 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4f43f5f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6a97a9b View commit details
    Browse the repository at this point in the history
  12. Merge pull request #1253 from unoplatform/dev/madi/migrate-ui-test/Co…

    …mmandBar
    
    Migrate CommandBar UI Tests
    MaximeDionNventiveCom authored Jul 23, 2019
    Configuration menu
    Copy the full SHA
    1dd8168 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #1286 from MartinZikmund/dev/mazi/issue-1276

    Fixed ApplicationDataContainer inconsistencies
    jeromelaban authored Jul 23, 2019
    Configuration menu
    Copy the full SHA
    ff9990f View commit details
    Browse the repository at this point in the history
  14. fixed gitversion

    Xiaoy312 committed Jul 23, 2019
    Configuration menu
    Copy the full SHA
    558c5ca View commit details
    Browse the repository at this point in the history
  15. Merge pull request #1297 from unoplatform/dev/xygu/20190723/gitversio…

    …n-fix
    
    fixed gitversion
    agneszitte authored Jul 23, 2019
    Configuration menu
    Copy the full SHA
    4d21026 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2019

  1. Merge pull request #1293 from MartinZikmund/dev/mazi/generator-fixes

    Fix for UWPSyncGenerator issues
    jeromelaban authored Jul 24, 2019
    Configuration menu
    Copy the full SHA
    ce1aa4d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2a8c5be View commit details
    Browse the repository at this point in the history
  3. Update _ReleaseNotes.md

    carldebilly committed Jul 24, 2019
    Configuration menu
    Copy the full SHA
    cf1bcce View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2960408 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8bbff5a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4986960 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2019

  1. Configuration menu
    Copy the full SHA
    382a5a2 View commit details
    Browse the repository at this point in the history
  2. docs: updated release notes

    ghuntley committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    3cbe916 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    29d7261 View commit details
    Browse the repository at this point in the history
  4. Temp patch for click bug

    carldebilly committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    03795f7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d415a11 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    37ffe07 View commit details
    Browse the repository at this point in the history
  7. Clean-up of some tests

    carldebilly committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    dedf9c6 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d83e4e2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ecdf16d View commit details
    Browse the repository at this point in the history
  10. Trying to fix the build

    carldebilly committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    4dc7574 View commit details
    Browse the repository at this point in the history
  11. TextBox - reset Text when pushing null to bound value

    Fix regression where a null pushed to Text via binding was being ignored, rather than clearing the Text.
    davidjohnoliver committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    37a0345 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2019

  1. Configuration menu
    Copy the full SHA
    02320ee View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1014 from unoplatform/dev/cdb/button-click

    ButtonBase.Click refactoring to be raised before the Tapped event bubbling
    carldebilly authored Jul 26, 2019
    Configuration menu
    Copy the full SHA
    1a786a6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1303 from unoplatform/dev/djo/textbox-fix

    TextBox - reset Text when pushing null to bound value
    davidjohnoliver authored Jul 26, 2019
    Configuration menu
    Copy the full SHA
    0bb0627 View commit details
    Browse the repository at this point in the history
  4. Fixes to pass build

    NicolasChampagne committed Jul 26, 2019
    Configuration menu
    Copy the full SHA
    08a2343 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    49c2bd3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    84194c0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9b72e7d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    0956d62 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a88fe90 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2019

  1. Configuration menu
    Copy the full SHA
    0b7091b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    145b39e View commit details
    Browse the repository at this point in the history
  3. Updated release notes

    MartinZikmund committed Jul 27, 2019
    Configuration menu
    Copy the full SHA
    7e8f8f6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1216 from unoplatform/dev/nich/timepicker-context…

    …-tests
    
    Added Unittests for timePicker/datePicker datacontext and content
    NicolasChampagne authored Jul 27, 2019
    Configuration menu
    Copy the full SHA
    4c7c0b7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    15a11a6 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2019

  1. Configuration menu
    Copy the full SHA
    d682706 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2019

  1. Configuration menu
    Copy the full SHA
    0f03a89 View commit details
    Browse the repository at this point in the history
  2. Enable increment of Patch for each commit in dev branch

    so feature branches will remain after the latest dev version in Nuget
    Dr.Rx committed Jul 29, 2019
    Configuration menu
    Copy the full SHA
    e965e26 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1314 from unoplatform/dev/dr/GitVersion

    Enable increment of Patch for each commit in dev branch
    David authored Jul 29, 2019
    Configuration menu
    Copy the full SHA
    d8fb692 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    163bac8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f2728b2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4c8f8a4 View commit details
    Browse the repository at this point in the history
  7. +release notes

    carldebilly committed Jul 29, 2019
    Configuration menu
    Copy the full SHA
    1793114 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    50d9479 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    675b609 View commit details
    Browse the repository at this point in the history
  10. UI Test for button events

    carldebilly committed Jul 29, 2019
    Configuration menu
    Copy the full SHA
    cc122f3 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #1316 from unoplatform/dev/cdb/bugs/android-click

    Fixed problem with ButtonBase.Click on Android
    carldebilly authored Jul 29, 2019
    Configuration menu
    Copy the full SHA
    1b7fcd7 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2019

  1. Configuration menu
    Copy the full SHA
    f497d4e View commit details
    Browse the repository at this point in the history
  2. Adjust android debug ABIs

    jeromelaban committed Jul 30, 2019
    Configuration menu
    Copy the full SHA
    36c30a7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    070d8e0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    78304ab View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4d43497 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a4b6918 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b5bb405 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3b73620 View commit details
    Browse the repository at this point in the history
  9. Adjust wasm ui tests

    Tentative fix for `[1564495960.846][SEVERE]: bind() failed: Cannot assign requested address (99)`
    jeromelaban committed Jul 30, 2019
    Configuration menu
    Copy the full SHA
    5ac10d0 View commit details
    Browse the repository at this point in the history
  10. OOps

    carldebilly committed Jul 30, 2019
    Configuration menu
    Copy the full SHA
    86505f2 View commit details
    Browse the repository at this point in the history
  11. #23 Migrate private UI Tests to public Uno

    Elevation
    MaximeDion-Work committed Jul 30, 2019
    Configuration menu
    Copy the full SHA
    dcfe963 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #1322 from unoplatform/dev/cdb/bugs/android-click

    UI Test for button events
    carldebilly authored Jul 30, 2019
    Configuration menu
    Copy the full SHA
    a1c1057 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    bec3c36 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #1252 from unoplatform/dev/madi/migrate-ui-test/El…

    …evation
    
    Migrate Elevation UI Tests #1245
    MaximeDionNventiveCom authored Jul 30, 2019
    Configuration menu
    Copy the full SHA
    f7bca73 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    c4aa187 View commit details
    Browse the repository at this point in the history
  16. Update the GitVersion to use the Mainline mode

    so the version will be automatically incremented at each commit as expected by commit e965e26
    Dr.Rx committed Jul 30, 2019
    Configuration menu
    Copy the full SHA
    33ab131 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #1288 from unoplatform/dev/jela/android-ui-test

    [UITest][Android] Adjust tests to allow for auto retry on failure
    jeromelaban authored Jul 30, 2019
    Configuration menu
    Copy the full SHA
    31aadf9 View commit details
    Browse the repository at this point in the history
  18. Merge pull request #1325 from unoplatform/dev/dr/GitVersionAttemp2

    Update the GitVersion to use the Mainline mode
    David authored Jul 30, 2019
    Configuration menu
    Copy the full SHA
    dc17498 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2019

  1. Merge pull request #1301 from unoplatform/dev/ghuntley/InputScopeName…

    …Value
    
    feature: implement all InputScopeNameValue
    jeromelaban authored Jul 31, 2019
    Configuration menu
    Copy the full SHA
    e9dba93 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59cd00d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    da2a0bf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cf2d7b7 View commit details
    Browse the repository at this point in the history
  5. Previously removed properties and methods working with drawables now …

    …forward to DrawableHelper
    MartinZikmund committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    5325272 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7ebacac View commit details
    Browse the repository at this point in the history
  7. EditorBrowsable

    MartinZikmund committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    9b09ba5 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2019

  1. Configuration menu
    Copy the full SHA
    b96c944 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    30a8be8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c0748fc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b473e34 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    25a80fd View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2019

  1. Configuration menu
    Copy the full SHA
    fe077cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    590bf33 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4512e87 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1307 from unoplatform/dev/nich/listview-head-loop

    Fix to infinite loop with listviewHeaders
    NicolasChampagne authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    dbda38f View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1208 from unoplatform/dev/nich/template-recycling

    Check for dataContext to avoid recyclingTemplate when unneeded
    NicolasChampagne authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    5da7c8f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    52f1d84 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1287 from unoplatform/dev/nich/rotatedlistview

    Added Sample for RotatedListView with RotatedItems
    NicolasChampagne authored Aug 2, 2019
    Configuration menu
    Copy the full SHA
    e140849 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2019

  1. Merge pull request #1331 from unoplatform/dev/nich/bars

    Fix to Issues caused by TopNotch on Android
    NicolasChampagne authored Aug 6, 2019
    Configuration menu
    Copy the full SHA
    f6df0a3 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2019

  1. [WASM] SetProperty sets boolean literal

    Convert 'true' and 'false' strings to equivalent literal, this is required for some properties to be set correctly (eg input.disabled).
    davidjohnoliver committed Aug 7, 2019
    Configuration menu
    Copy the full SHA
    c2c1963 View commit details
    Browse the repository at this point in the history
  2. [WASM] Apply TextBox.IsEnabled properly

    Changing IsEnabled now properly sets native disabled property on TextBoxView. This fixes bug where text could be entered by tabbing to disabled TextBox.
    davidjohnoliver committed Aug 7, 2019
    Configuration menu
    Copy the full SHA
    0125f3b View commit details
    Browse the repository at this point in the history
  3. Add AutoRetry

    davidjohnoliver committed Aug 7, 2019
    Configuration menu
    Copy the full SHA
    3e0cec6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #1295 from unoplatform/dev/djo/textbox-wasm-fix

    [WASM] Apply TextBox.IsEnabled correctly
    davidjohnoliver authored Aug 7, 2019
    Configuration menu
    Copy the full SHA
    1eeb244 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2019

  1. Configuration menu
    Copy the full SHA
    82f9fca View commit details
    Browse the repository at this point in the history
  2. Fix inverted vertical slider

    zangai committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    4cda7ef View commit details
    Browse the repository at this point in the history
  3. Updated release notes

    zangai committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    3766cf3 View commit details
    Browse the repository at this point in the history
  4. Fix MaxLength handling on Android and WASM by ignoring strings longer…

    … than MaxLength
    Maxime Leboeuf committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    a85541a View commit details
    Browse the repository at this point in the history
  5. Add UI test for TextBox MaxLength

    Maxime Leboeuf committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    53f114a View commit details
    Browse the repository at this point in the history
  6. Remove unnecessary OnMaxLengthChangedPartial() for Android TextBox, n…

    …ow handled by TextBox.CoerceText()
    Maxime Leboeuf committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    0144f02 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #1353 from unoplatform/dev/male/158910-textbox-max…

    …length
    
    Fix MaxLength handling on Android and WASM
    leboeuf authored Aug 8, 2019
    Configuration menu
    Copy the full SHA
    59a911c View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2019

  1. Configuration menu
    Copy the full SHA
    7bbaab2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    422a969 View commit details
    Browse the repository at this point in the history
  3. Whitespace fix

    MartinZikmund committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    53326d6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2bf3c78 View commit details
    Browse the repository at this point in the history
  5. Changed Sample UI to accomdate UI Test

    Created UI Test for Vertical Slider Tapping #1350
    zangai committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    5942127 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b182940 View commit details
    Browse the repository at this point in the history
  7. Updated exception message

    Co-Authored-By: David Oliver <david.john.oliver@gmail.com>
    MartinZikmund and davidjohnoliver authored Aug 9, 2019
    Configuration menu
    Copy the full SHA
    5f37003 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1308 from MartinZikmund/dev/mazi/drawable-helper

    Refactored Drawable helper to Uno project
    davidjohnoliver authored Aug 9, 2019
    Configuration menu
    Copy the full SHA
    e3e9997 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    db98381 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    616322f View commit details
    Browse the repository at this point in the history
  11. Merge pull request #1351 from pdecostervgls/dev/pdeco/vertical-slider…

    …-tap
    
    Fix inverted vertical slider
    davidjohnoliver authored Aug 9, 2019
    Configuration menu
    Copy the full SHA
    d0abfa7 View commit details
    Browse the repository at this point in the history
  12. Setting Collection-based property on a root of a XAML file were produ…

    …cing compilation errors.
    
    Github Bug #718
    carldebilly committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    69546a5 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    dd88c97 View commit details
    Browse the repository at this point in the history
  14. Added release notes

    carldebilly committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    7599720 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    93cc46d View commit details
    Browse the repository at this point in the history
  16. Merge pull request #1356 from unoplatform/dev/cdb/bugs/718-grid

    Errors setting some properties on root of XAML file
    carldebilly authored Aug 9, 2019
    Configuration menu
    Copy the full SHA
    36c4dba View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    baed67c View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    1fcdd62 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2019

  1. Configuration menu
    Copy the full SHA
    ac61e12 View commit details
    Browse the repository at this point in the history
  2. Updated Xamarin.GooglePlayServices.* packages to 71.1600.0 for Target…

    … MonoAndroid90 and 60.1142.1 for MonoAndroid80
    Papus Koulibaly committed Aug 12, 2019
    Configuration menu
    Copy the full SHA
    67eadc1 View commit details
    Browse the repository at this point in the history
  3. Updated release note

    Papus Koulibaly committed Aug 12, 2019
    Configuration menu
    Copy the full SHA
    d7b3f75 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4b48adb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9feed01 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #1371 from unoplatform/dev/nich/listview-perf

    Fix to groupedlistviewheaders performance issue
    NicolasChampagne authored Aug 12, 2019
    Configuration menu
    Copy the full SHA
    a2cef65 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f19c776 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #1372 from unoplatform/dev/pako/update-googleplay-…

    …services
    
    Update Xamarin.GooglePlayServices packages
    MakanWG authored Aug 12, 2019
    Configuration menu
    Copy the full SHA
    a638efa View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1358 from unoplatform/dev/nich/flyout-places

     Fix to flyouts resorting to default when flyout is bigger than anchor
    NicolasChampagne authored Aug 12, 2019
    Configuration menu
    Copy the full SHA
    a43f8d0 View commit details
    Browse the repository at this point in the history