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

Merge graphing calculator into master #899

Merged
merged 66 commits into from
Jan 7, 2020
Merged

Commits on Apr 11, 2019

  1. Feature/GraphingCalculator initial commit (microsoft#450)

    Initial PR for the feature/GraphingCalculator feature branch, part of microsoft#338.
    
    The feature incorporates a proprietary Microsoft-owned graphing engine to drive graphing experiences in the Windows Calculator app. Due to the private nature of the graphing engine, the source available in the public repo will make use of a mock graphing engine. See README.md for more details.
    
    This PR simply serves as a base for future feature development. As such, the PR will be immediately merged. Feedback on the content of this PR, and on the feature in general, is encouraged. If there is feedback related to the content of this specific PR, please leave comments on the PR page. We will address the comments in future PRs to the feature branch.
    Daniel Belcher committed Apr 11, 2019
    Configuration menu
    Copy the full SHA
    091732a View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2019

  1. Add Pan/Zoom support for the graph surface (microsoft#458)

    Description of the changes:
    Add Pan/Zoom support for the graph surface.
    Currently only supports Mouse/Pen/Touch interactions. Keyboard support will be added separately.
    
    How changes were validated:
    Manual
    Daniel Belcher committed Apr 22, 2019
    Configuration menu
    Copy the full SHA
    5ffe1bc View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2019

  1. Updating GraphingInterfaces to use Graphing Engine 2.0 (microsoft#561)

    * Updated Graphing Interfaces to version 2.0.1
    sanderl committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    c3c001a View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2019

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

Commits on Jul 15, 2019

  1. Merge master into feature/GraphingCalculator branch (microsoft#585)

    * Merge master into feature/GraphingCalculator branch
    sanderl committed Jul 15, 2019
    Configuration menu
    Copy the full SHA
    a418777 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2019

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

Commits on Aug 13, 2019

  1. Adding share functionality to Graphing Calculator (microsoft#601)

    * Plumebd with data transfer
    
    * Getting mainpage to talk to getbitmap.  moving share callbacks from mainpage to graphingcalculator
    
    * Trying to get bitmap from renderer.
    
    * work
    
    * Share worked
    
    * cleanups
    
    * Cleanups progressing
    
    * Share working, need loc for title string and user notification incase of a failure.  Then add the equations key.
    
    * More cleanup, now using share icon image and resources for strings.  Still need to do the graph equation key.
    
    * Change share to html based start.
    
    * Key working, with UL but going to try changing to table.
    
    * Fix a html formating error, generating a new UL for each equation.
    
    * Switched over to a table for equation key and have color block formating
    
    * Updates from PR feedback, using Graphing::IBitmap abstraction.
    
    * Update src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml.h
    
    Fixed
    
    Co-Authored-By: Pepe Rivera <joseartrivera@gmail.com>
    
    * PR Updates.
    
    * Add variables to the graph key.
    
    * PR Updates.
    DavidShoe authored and sanderl committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    c1efa3d View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2019

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

Commits on Sep 5, 2019

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

Commits on Sep 23, 2019

  1. Switch to RichEdit math mode in EquationTextBox (microsoft#672)

    * Use RichEdit Math Mode
    
    * Add comment
    
    Co-Authored-By: Stephanie Anderl <46726333+sanderl@users.noreply.github.com>
    joseartrivera and sanderl committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    b2dd55a View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2019

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

Commits on Oct 4, 2019

  1. Passive & Active tracing (microsoft#638)

    * Plumebd with data transfer
    
    * Getting mainpage to talk to getbitmap.  moving share callbacks from mainpage to graphingcalculator
    
    * Trying to get bitmap from renderer.
    
    * work
    
    * Share worked
    
    * cleanups
    
    * Cleanups progressing
    
    * Share working, need loc for title string and user notification incase of a failure.  Then add the equations key.
    
    * More cleanup, now using share icon image and resources for strings.  Still need to do the graph equation key.
    
    * Change share to html based start.
    
    * Key working, with UL but going to try changing to table.
    
    * Fix a html formating error, generating a new UL for each equation.
    
    * Switched over to a table for equation key and have color block formating
    
    * Updates from PR feedback, using Graphing::IBitmap abstraction.
    
    * Update src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml.h
    
    Fixed
    
    Co-Authored-By: Pepe Rivera <joseartrivera@gmail.com>
    
    * PR Updates.
    
    * Add variables to the graph key.
    
    * eod
    
    * Passive graph value tracing working.
    
    * Basic active tracing cursor working.
    
    * Move active tracing from graphingcalculator to grapher to save some hops.
    Also block tracking of the active tracing key's when in the EquationTextBox.
    
    * Active tracing working, need to put button on screen for activation.
    
    * Added active tracing control button (placeholder image)
    
    * Eod
    
    * Popup trace value now tracks the highlighted point.
    
    * Popup skined
    
    * PR Updates.
    
    * Update certificate thumbnail so VS2019 doesn't have a build error.
    
    * PR comments in process.
    
    * PR Updates
    
    * PR Updates, change tracing value to use tooltip static resource so we automatically change depending on system values.  And changed text formatting of the value to be generic (x,y) value.
    
    * PR updates, changed how we detect who has focus so we don't eat keys when not in active tracing.
    
    * Additional filtering for the Key Up/Down in the grapher.
    DavidShoe authored and sanderl committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    18f80a8 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2019

  1. Active tracing (microsoft#702)

    * Plumebd with data transfer
    
    * Getting mainpage to talk to getbitmap.  moving share callbacks from mainpage to graphingcalculator
    
    * Trying to get bitmap from renderer.
    
    * work
    
    * Share worked
    
    * cleanups
    
    * Cleanups progressing
    
    * Share working, need loc for title string and user notification incase of a failure.  Then add the equations key.
    
    * More cleanup, now using share icon image and resources for strings.  Still need to do the graph equation key.
    
    * Change share to html based start.
    
    * Key working, with UL but going to try changing to table.
    
    * Fix a html formating error, generating a new UL for each equation.
    
    * Switched over to a table for equation key and have color block formating
    
    * Updates from PR feedback, using Graphing::IBitmap abstraction.
    
    * Update src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml.h
    
    Fixed
    
    Co-Authored-By: Pepe Rivera <joseartrivera@gmail.com>
    
    * PR Updates.
    
    * Add variables to the graph key.
    
    * eod
    
    * Passive graph value tracing working.
    
    * Basic active tracing cursor working.
    
    * Move active tracing from graphingcalculator to grapher to save some hops.
    Also block tracking of the active tracing key's when in the EquationTextBox.
    
    * Active tracing working, need to put button on screen for activation.
    
    * Added active tracing control button (placeholder image)
    
    * Eod
    
    * Popup trace value now tracks the highlighted point.
    
    * Popup skined
    
    * PR Updates.
    
    * Update certificate thumbnail so VS2019 doesn't have a build error.
    
    * PR comments in process.
    
    * PR Updates
    
    * PR Updates, change tracing value to use tooltip static resource so we automatically change depending on system values.  And changed text formatting of the value to be generic (x,y) value.
    
    * PR updates, changed how we detect who has focus so we don't eat keys when not in active tracing.
    
    * Additional filtering for the Key Up/Down in the grapher.
    
    * Fix bug where active tracing would turn back on after clicking button to turn it off.
    DavidShoe authored and sanderl committed Oct 10, 2019
    Configuration menu
    Copy the full SHA
    65c3046 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2019

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

Commits on Nov 12, 2019

  1. Configuration menu
    Copy the full SHA
    626bdf0 View commit details
    Browse the repository at this point in the history
  2. Key graph features (microsoft#704)

    * Added IGraphAnalyzer
    
    * Key Graph Features called and getting returned to the client. To do put all strings into the Equation object
    
    * Updated UpdateKeyGraphFeatures to add function analysis data to all properties in Equation object
    
    * Update KGF when variables are updated
    
    * Key graph features ui started
    
    * Added MathRichEditBox and started hooking up key graph features to the UI
    
    * Updated EquationViewModel to include parity and periodicity
    
    * Updated key graph features to update the EquationViewModel
    
    * updated key graph features to display more values
    
    * Key graph features populating uing MathRichEdit mode
    
    * moved KeyGraphFeatures control to GraphingCalculator.xaml
    
    * Use MathML formatting instead of MathRichEdit for strings passed back from the engine
    
    * cleaned up project targeting and equation.h comments
    
    * Updated equation edit box to populate for KeyGraphFeatures
    
    * Fixed vcxproj files to have the correct targeting and certificates. KGF Title strings moved to x:Uid instead of the code behind
    
    * Updated per PR feedback
    
    * Update MathRichEditBox to detect if the string is a mathml string and use the appropriate set method to set the text
    
    * fixed the issue where parity, periodicity and monotonicity could be set with an old value if the next one is empty
    
    * KGF control UI adjustments and error handling
    
    * Error control updates
    
    * Error handling added when analysis fails
    
    * fixed alignment on rich edit boxes
    
    * Add monotonicity direction into the mathml string and only have 1 richeditbox
    
    * Set hover state on KGF EquationEditBox to change button opacity and fixed spacing in Monotonicity RichEditBox
    
    * remove sideload package certificate info VS added
    
    * updated logic for setting error strings to be in the viewmodel
    
    * Updated KeyGraphFeatures to populate dynamically using a ListView and TemplateSelector
    
    * Update periodicity to not show if it isn't supported
    
    * Fixed issue where y-intercept was using the x-intercept value
    
    * Remove ItemsControl ItemsContainerStyle
    
    * Updated per pr feedback. Fixed bug where analysis error would not reset
    
    * Update MathRichEdit box to remove selection when focus is lost
    
    * Updated mathrichedit to get LAF access for Dev, Release and Graphing projects
    
    * Remove OnLostFocus in MathRichEdit, Change KGF ItemsControl back to ListView
    
    * Clean up styles for KGF and ensure the match the comps
    
    * Moved formatoptions logic to the Grapher constructor and reverted LineColor.Text resource that was mistakenly taken out
    
    * Add copyright header to KGF Files
    
    * fixed issue where asymptote values were not populating
    
    * Disable KGF button when there is no equation. Fixed issue where equation populated in a new equationtextbox after the previous one was deleted
    
    * Removed formatoptions testing lines used for debugging
    sanderl committed Nov 12, 2019
    Configuration menu
    Copy the full SHA
    442ed6a View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2019

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

Commits on Nov 19, 2019

  1. Update share output (microsoft#782)

    * fix share bugs
    
    * PR feedback
    
    * PR feedback and merge fix
    
    * Fix spacing and use explicit break
    
    * Fix extra space
    joseartrivera authored and sanderl committed Nov 19, 2019
    Configuration menu
    Copy the full SHA
    b55659f View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2019

  1. Update styles for buttons on Graph and ListView (microsoft#793)

    * Fix listview
    
    * extra merge with KGF
    
    * Few tweaks
    
    * Fix scrolling
    
    * PR feedback and other tweaks
    
    * Update src/Calculator/Views/GraphingCalculator/EquationInputArea.xaml
    
    Co-Authored-By: Stephanie Anderl <46726333+sanderl@users.noreply.github.com>
    joseartrivera and sanderl committed Nov 20, 2019
    Configuration menu
    Copy the full SHA
    9ee2f8a View commit details
    Browse the repository at this point in the history
  2. Refactor Equation to be treated as a model and update Key Graph Featu…

    …res (microsoft#791)
    
    * refactor code
    
    * update KGF
    
    * Rename some functions
    
    * Undo comment out of proj file
    
    * Pr feedback
    joseartrivera committed Nov 20, 2019
    Configuration menu
    Copy the full SHA
    288a90e View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2019

  1. Equation button updates: Enable/Disable on click, button content f1, …

    …f2, f3..., visibility icon on hover (microsoft#804)
    
    * Added enable/disable line functionality
    
    * Update EquationTextBox to change the opacity of functions have are not visible. Update the function label for the EquationTextBox to increment the label to show f1, f2, f3, etc
    
    * rebase key-graph-features and fix issue where removing an equation box and adding a new one repopulates the previous equation
    
    * Added visibility icon for the equation button hover
    
    * updated EquationButton to be a toggle button to better handle the LineHidden state and other PR comment fixes.
    
    * Updated EquationButton style to use a toggle button and to have placeholder icons for the show/hide states
    
    * Updated equation button after pulling the refactor work into the branch. Fixed the Equation Button in KGF UI
    
    * Fixed Pepe's bugs
    
    * Uncomment temporary.pfx in calculator.vcxproj
    sanderl committed Nov 21, 2019
    Configuration menu
    Copy the full SHA
    a33c1a4 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2019

  1. Added support for small windows in the graphing calculator (microsoft…

    …#803)
    
    * Add support of small windows
    
    * remove extra space
    
    * Modify how we manage the tooltip
    
    * Fix merge issues
    rudyhuyn authored and joseartrivera committed Nov 22, 2019
    Configuration menu
    Copy the full SHA
    7ef6eaf View commit details
    Browse the repository at this point in the history
  2. Add tooltips to buttons in graphing calculator (microsoft#822)

    * Add tooltips to buttons in graphing calculator
    
    * Fix break due to bad merge
    
    * CR Feedback
    EriWong authored and sanderl committed Nov 22, 2019
    Configuration menu
    Copy the full SHA
    603d672 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2019

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

Commits on Dec 2, 2019

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

Commits on Dec 3, 2019

  1. Merge remote-tracking branch 'upstream/master' into feature/UpstreamG…

    …raphingCalculator
    Rudy Huyn committed Dec 3, 2019
    Configuration menu
    Copy the full SHA
    3988566 View commit details
    Browse the repository at this point in the history
  2. merge with master

    Rudy Huyn committed Dec 3, 2019
    Configuration menu
    Copy the full SHA
    73d6a32 View commit details
    Browse the repository at this point in the history
  3. Add missing brush

    Rudy Huyn committed Dec 3, 2019
    Configuration menu
    Copy the full SHA
    6911f2b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94b7088 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    03c2d65 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3ca4f4f View commit details
    Browse the repository at this point in the history
  7. Add error handling to graph and equations (microsoft#827)

    * add error handling
    
    * Handle regraphing on certain errors
    
    * Fix high contrast
    
    * Hide KGF button in error state
    joseartrivera authored and EriWong committed Dec 3, 2019
    Configuration menu
    Copy the full SHA
    89c3fc3 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    bed5151 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2019

  1. Add icons for show, hide and switch to equation mode (microsoft#845)

    * Add icons for show, hide and switch to equation mode
    
    * use correct icon for small mode
    
    * cleanup of fonts
    EriWong authored and grochocki committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    133df73 View commit details
    Browse the repository at this point in the history
  2. Adding automation names to buttons (microsoft#842)

    * Add missing automation names for buttons in graphing calculator
    
    * Add narrator support for tracing features
    EriWong committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    36327b7 View commit details
    Browse the repository at this point in the history
  3. Update ManualTests.md (microsoft#815)

    * Update ManualTests.md
    
    Added manual test cases for Graphing mode in Calculator.
    
    * Update ManualTests.md
    
    Added line breaks to make my additions more legible, and added two more cases for testing the "too complex" and "unsupported" error messages for Key Graph Features.
    Daniel-Parker authored and sanderl committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    81747a0 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2019

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

Commits on Dec 7, 2019

  1. Fix crash with x86 (microsoft#853)

    rudyhuyn authored and EriWong committed Dec 7, 2019
    Configuration menu
    Copy the full SHA
    5209084 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2019

  1. Add keyboard UI (microsoft#855)

    joseartrivera authored and EriWong committed Dec 9, 2019
    Configuration menu
    Copy the full SHA
    c6d3132 View commit details
    Browse the repository at this point in the history
  2. Add context menu to rich edit to allow for keyboard support (microsof…

    …t#854)
    
    * Add context menu to rich edit to allow for keyboard support
    
    * Update src/Calculator/Controls/EquationTextBox.cpp
    
    Co-Authored-By: Pepe Rivera <joseartrivera@gmail.com>
    
    * Check for focus before triggering submit
    EriWong committed Dec 9, 2019
    Configuration menu
    Copy the full SHA
    4bb5c39 View commit details
    Browse the repository at this point in the history
  3. Fix graph rendering of inequalities (microsoft#856)

    * fix inequality rendering
    
    * Add comment
    joseartrivera committed Dec 9, 2019
    Configuration menu
    Copy the full SHA
    f1bf335 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2019

  1. [Graph] Replace the Add button by a EquationTextBlock (microsoft#826)

    * init
    
    * Replace the Add equation button by an EquationTextBox
    
    * Move automatically the focus to the next textbox when users press Enter
    
    * nit
    
    * localize the placeholder
    
    * rebase
    
    * rebased and disable remove context menu when the equation is the last one
    
    * replace storyboards by setters in visual states
    rudyhuyn authored and joseartrivera committed Dec 10, 2019
    Configuration menu
    Copy the full SHA
    07d012c View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2019

  1. Update GraphingCalculator Projects to allow official builds (microsof…

    …t#852)
    
    * renamed MockGraphingImpl to GraphingImpl, updated the nuget.config to include the WindowsApps feed
    
    * Revert nuget.config change
    
    * Updated vcxproj files to output to the same directory regardless of configuration
    
    * Removed outder used GenerateProjectSpecificOutputfolder instead
    
    * revert commenting out the temporary.pfx cert in the calculator.vcxproj file
    sanderl committed Dec 11, 2019
    Configuration menu
    Copy the full SHA
    f593c62 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2019

  1. Redesign graph buttons + replace ActiveTracing button by a ToggleButt…

    …on (microsoft#864)
    
    * redesign graph buttons
    
    * fix high-contrast and focus
    rudyhuyn authored and joseartrivera committed Dec 12, 2019
    Configuration menu
    Copy the full SHA
    f282605 View commit details
    Browse the repository at this point in the history
  2. Fix some UI bugs in graph mode (microsoft#862)

    * Address issues with error states
    
    * Add various fixes
    
    * Add back initial tooltip
    
    * PR comments
    joseartrivera committed Dec 12, 2019
    Configuration menu
    Copy the full SHA
    2a0637e View commit details
    Browse the repository at this point in the history
  3. Move variables to the right column (microsoft#859)

    * move variable editor
    
    * support high contrast and tab navigation
    
    * Remove obsolete resources
    
    * take feedback into account
    
    * Fix focus when virtualization recycle a EquationTextBox
    
    * formatting
    rudyhuyn authored and joseartrivera committed Dec 12, 2019
    Configuration menu
    Copy the full SHA
    da38b5a View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2019

  1. GraphControl: refactoring and optimizations (microsoft#831)

    * GraphControl cleaning
    
    * replace textbox value after submission
    
    * rebase
    
    * rebase
    
    * rebase
    
    * Add filters
    
    * rebase!
    
    * rebase
    rudyhuyn authored and EriWong committed Dec 14, 2019
    Configuration menu
    Copy the full SHA
    534139d View commit details
    Browse the repository at this point in the history
  2. Save and restore the value of EquationInputArea when users scroll (mi…

    …crosoft#866)
    
    * Save and restore the value of EquationInputArea when users scroll
    
    * clean up
    
    * replace ->Focus(..) by FocusManager::TryFocus(...)
    rudyhuyn authored and EriWong committed Dec 14, 2019
    Configuration menu
    Copy the full SHA
    dbddc7b View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2019

  1. Fix focus issues (microsoft#868)

    rudyhuyn authored and EriWong committed Dec 16, 2019
    Configuration menu
    Copy the full SHA
    eb2fa6d View commit details
    Browse the repository at this point in the history
  2. Update graph tooltip design and content (microsoft#867)

    * update graph tooltip
    
    * modify font size
    rudyhuyn authored and EriWong committed Dec 16, 2019
    Configuration menu
    Copy the full SHA
    fe599e3 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2019

  1. Remove EquationTextBox from KeyGraphFeaturesPanel (microsoft#833)

    * remove EquationBox from KFG
    
    * polish
    
    * improve templates
    
    * fix issue with dark theme and MathRichEditBox
    rudyhuyn authored and grochocki committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    dc79ec6 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2019

  1. Configuration menu
    Copy the full SHA
    38da8d7 View commit details
    Browse the repository at this point in the history
  2. Wire up keyboard in graphing calculator (microsoft#863)

    * Wire up graphing calculator keyboard with math rich edit control
    
    * CR feedback
    
    * Handle focus bug in flyout
    EriWong authored and joseartrivera committed Dec 19, 2019
    Configuration menu
    Copy the full SHA
    13e3179 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2019

  1. High Contrast support for Graphing Calculator (microsoft#878)

    * Equation Control - High contrast
    
    * tweak
    
    * Update graph colors when users switch from one high contrast mode to another
    
    * decrease opacity of reveal borders
    rudyhuyn authored and EriWong committed Dec 20, 2019
    Configuration menu
    Copy the full SHA
    3942662 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2020

  1. Minor changes to share output (microsoft#886)

    * Make some tweaks to share output
    
    * adjust strings
    
    * one more tweak
    
    * Remove unneeded span
    joseartrivera authored and EriWong committed Jan 3, 2020
    Configuration menu
    Copy the full SHA
    3b916dc View commit details
    Browse the repository at this point in the history
  2. Change active tracing to use correct glyph instead of dot (microsoft#890

    )
    
    * Change active tracing to use correct glyph instead of dot
    
    * make the pointer on the glyph line up correctly
    EriWong committed Jan 3, 2020
    Configuration menu
    Copy the full SHA
    234ac8d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8357f5d View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2020

  1. Prevent the graph to pan/zoom in some cases (microsoft#897)

    * prevent the graph to change ranges when hide/show an equation or change the trig unit
    
    * make sure to not zoom/pan when we hide the last visible equation
    rudyhuyn authored and joseartrivera committed Jan 6, 2020
    Configuration menu
    Copy the full SHA
    7aaeee9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3592b3d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d2b2853 View commit details
    Browse the repository at this point in the history
  4. Fix filters from bad merge

    EriWong committed Jan 6, 2020
    Configuration menu
    Copy the full SHA
    78c6c2f View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2020

  1. Configuration menu
    Copy the full SHA
    40cadcd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    967b2a1 View commit details
    Browse the repository at this point in the history
  3. One more unit test fix

    EriWong committed Jan 7, 2020
    Configuration menu
    Copy the full SHA
    d087404 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    aad968f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    09926e4 View commit details
    Browse the repository at this point in the history