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

Removed hard-coded path of VTK_BINARY_DIR #7

Open
wants to merge 45 commits into
base: master
Choose a base branch
from

Commits on Dec 9, 2015

  1. Tune FlatTreeView sizing

    When running ParaView on HiDPI screens, where the IndentWidth may be
    smaller than the font height, lines in the Pipeline browser
    may get squashed together.
    
    Fix this by defaulting to a preferredHeight for FlatTreeView items which
    is the maximum between the font height and the IndentWidth, and only
    adjusting upwards for items with a larger font.
    Oblomov committed Dec 9, 2015
    Configuration menu
    Copy the full SHA
    55c706d View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2016

  1. Added support for reading NFACE_n and NGON_n CGNS files

    Menno Deij - van Rijswijk committed Feb 22, 2016
    Configuration menu
    Copy the full SHA
    a915c5e View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2016

  1. working on testing

    Menno Deij - van Rijswijk committed Mar 1, 2016
    Configuration menu
    Copy the full SHA
    90f5fc5 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin' into NFACE_n-NGON_n-CGNSReader

    Menno Deij - van Rijswijk committed Mar 1, 2016
    Configuration menu
    Copy the full SHA
    7801712 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2016

  1. added tests

    Menno Deij - van Rijswijk committed Mar 2, 2016
    Configuration menu
    Copy the full SHA
    1790933 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2016

  1. vtkProcessModule: store the current directory of the executable

    Other ParaView client applications may have other paths they would like
    to derive from this path, so store it and make it available from the
    vtkProcessModule class.
    mathstuf committed Mar 3, 2016
    Configuration menu
    Copy the full SHA
    d50b302 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2016

  1. Merge branch 'master' of https://gitlab.kitware.com/paraview/paraview

    …into NFACE_n-NGON_n-CGNSReader
    Menno Deij - van Rijswijk committed Mar 7, 2016
    Configuration menu
    Copy the full SHA
    a9f4a8f View commit details
    Browse the repository at this point in the history
  2. Cleanup testing code.

    Signed-off-by: Menno Deij - van Rijswijk <[email protected]>
    utkarshayachit authored and Menno Deij - van Rijswijk committed Mar 7, 2016
    Configuration menu
    Copy the full SHA
    edbab0d View commit details
    Browse the repository at this point in the history
  3. Remove CGNS headers from vtkCGNSReader.h.

    Signed-off-by: Menno Deij - van Rijswijk <[email protected]>
    utkarshayachit authored and Menno Deij - van Rijswijk committed Mar 7, 2016
    Configuration menu
    Copy the full SHA
    589f5b1 View commit details
    Browse the repository at this point in the history
  4. Added CGNS_ENUMV(NGON_n). Applied diffs from code review.

    Menno Deij - van Rijswijk committed Mar 7, 2016
    Configuration menu
    Copy the full SHA
    0de03c4 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2016

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

Commits on Mar 9, 2016

  1. Merge topic 'expose-self-dir'

    d50b302 vtkProcessModule: store the current directory of the executable
    
    Acked-by: Kitware Robot <[email protected]>
    Reviewed-by: Utkarsh Ayachit <[email protected]>
    Merge-request: !631
    mathstuf authored and kwrobot committed Mar 9, 2016
    Configuration menu
    Copy the full SHA
    a480a24 View commit details
    Browse the repository at this point in the history
  2. Use vtk_module_link_libraries for modules.

    This ensures that the linked libraries work as expected when Kits are
    enabled.
    utkarshayachit committed Mar 9, 2016
    Configuration menu
    Copy the full SHA
    0284bf3 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2016

  1. BUG #16020: restore defaults for repeatable vector properties

    Repeatable vector properties were not being restored when
    vtkSMProperty::RestoreToXMLDefaults() was called because no defaults
    for such properties are typically defined in the proxy XML. This patch
    handles this case by clearing out the vector elements, setting the
    size to zero.
    cquammen committed Mar 10, 2016
    Configuration menu
    Copy the full SHA
    743036c View commit details
    Browse the repository at this point in the history
  2. Merge topic 'fix_cgns_kits'

    0284bf3 Use `vtk_module_link_libraries` for modules.
    
    Acked-by: Kitware Robot <[email protected]>
    Merge-request: !680
    utkarshayachit authored and kwrobot committed Mar 10, 2016
    Configuration menu
    Copy the full SHA
    1b038f2 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2016

  1. Merge remote-tracking branch 'origin' into NFACE_n-NGON_n-CGNSReader

    Menno Deij - van Rijswijk committed Mar 11, 2016
    Configuration menu
    Copy the full SHA
    d374b02 View commit details
    Browse the repository at this point in the history
  2. Added another acceptable condition for setting property elements

    Make setting of vtkSMDoubleVectorProperty elements consistent with
    setting of vtkSMIntVectorProperties when the property is
    repeatable. This fixes a bug that made it impossible to change double
    vector properties to zero elements, e.g., clearing out the Isosurface
    values in the Contour filter.
    cquammen committed Mar 11, 2016
    Configuration menu
    Copy the full SHA
    ac4f824 View commit details
    Browse the repository at this point in the history
  3. When resetting values, reset to default rather than XML default

    This causes properties with domain defaults to be reset to the
    domain default. If no domain default is available, it uses the
    XML default.
    cquammen committed Mar 11, 2016
    Configuration menu
    Copy the full SHA
    e50f934 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2016

  1. Merge topic '16020_restore_repeatable_defaults'

    e50f934 When resetting values, reset to default rather than XML default
    ac4f824 Added another acceptable condition for setting property elements
    743036c BUG #16020: restore defaults for repeatable vector properties
    
    Acked-by: Kitware Robot <[email protected]>
    Reviewed-by: Utkarsh Ayachit <[email protected]>
    Merge-request: !676
    cquammen authored and kwrobot committed Mar 12, 2016
    Configuration menu
    Copy the full SHA
    b837301 View commit details
    Browse the repository at this point in the history
  2. Merge topic 'pipeline-browser-dpi-fix'

    55c706d Tune FlatTreeView sizing
    
    Acked-by: Kitware Robot <[email protected]>
    Reviewed-by: Utkarsh Ayachit <[email protected]>
    Merge-request: !493
    utkarshayachit authored and kwrobot committed Mar 12, 2016
    Configuration menu
    Copy the full SHA
    7cf0e4c View commit details
    Browse the repository at this point in the history
  3. Merge topic 'NFACE_n-NGON_n-CGNSReader'

    d374b02 Merge remote-tracking branch 'origin' into NFACE_n-NGON_n-CGNSReader
    0de03c4 Added CGNS_ENUMV(NGON_n). Applied diffs from code review.
    589f5b1 Remove CGNS headers from vtkCGNSReader.h.
    edbab0d Cleanup testing code.
    a9f4a8f Merge branch 'master' of https://gitlab.kitware.com/paraview/paraview into NFACE_n-NGON_n-CGNSReader
    1790933 added tests
    7801712 Merge remote-tracking branch 'origin' into NFACE_n-NGON_n-CGNSReader
    90f5fc5 working on testing
    ...
    
    Acked-by: Kitware Robot <[email protected]>
    Reviewed-by: Utkarsh Ayachit <[email protected]>
    Merge-request: !639
    utkarshayachit authored and kwrobot committed Mar 12, 2016
    Configuration menu
    Copy the full SHA
    16385fa View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2016

  1. Remove unused header.

    utkarshayachit committed Mar 13, 2016
    Configuration menu
    Copy the full SHA
    fcd0436 View commit details
    Browse the repository at this point in the history
  2. vtkCleanArrays now support cleaning composite datasets.

    vtkCleanArrays now allows removing/filling of partial arrays for
    composite datasets as well. That way, the filter can now be used to sycn
    arrays on composite datasets locally or in parallel along with
    non-composite datasets in parallel.
    
    Added a new test "TestCleanArrays" to test this filter.
    utkarshayachit committed Mar 13, 2016
    Configuration menu
    Copy the full SHA
    080622a View commit details
    Browse the repository at this point in the history
  3. BUG #15167: Show multiple blocks in spreadsheet view.

    Spreadsheet representation now allows the user to choose multiple blocks
    from a composite dataset to be shown in the view. Multiple blocks are
    merged and hence will loose partial arrays, if any.
    
    To still support picking the default value as the first non-empty leaf
    node for Spreadsheet representation, added a mechanism to
    vtkSMCompositeTreeDomain to select a default mode.
    utkarshayachit committed Mar 13, 2016
    Configuration menu
    Copy the full SHA
    f136c67 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5f60463 View commit details
    Browse the repository at this point in the history
  5. Merge topic 'axes-grid-15672'

    3f4dc4a BUG #15672: Axes Grid dissapears in parallel projection.
    utkarshayachit committed Mar 13, 2016
    Configuration menu
    Copy the full SHA
    a1e085d View commit details
    Browse the repository at this point in the history
  6. Update VTK.

    Brings in fix for the EnsightGold reader failing to stat() large files
    on windows.
    utkarshayachit committed Mar 13, 2016
    Configuration menu
    Copy the full SHA
    03e7e55 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2016

  1. Merge topic '0015167_multiple_blocks_in_spreadsheet_view'

    5f60463 Adding test for testing spreadsheet with multiblock
    f136c67 BUG #15167: Show multiple blocks in spreadsheet view.
    080622a vtkCleanArrays now support cleaning composite datasets.
    fcd0436 Remove unused header.
    
    Acked-by: Kitware Robot <[email protected]>
    Reviewed-by: Cory Quammen <[email protected]>
    Merge-request: !678
    utkarshayachit authored and kwrobot committed Mar 14, 2016
    Configuration menu
    Copy the full SHA
    20c10b9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d13f75 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7a35f41 View commit details
    Browse the repository at this point in the history
  4. Python: import the API module, not the Python library

    When building with Kits, the libraries listed here don't exist.
    mathstuf authored and utkarshayachit committed Mar 14, 2016
    Configuration menu
    Copy the full SHA
    85c8699 View commit details
    Browse the repository at this point in the history
  5. eigen: add a space between strings

    GCC6 is detecting this as a literal constructor (operator ""X) instead
    of doing literal string concatenation. A space removes the ambiguity.
    mathstuf committed Mar 14, 2016
    Configuration menu
    Copy the full SHA
    f60c8e7 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2016

  1. Cleanup ParaView's python package generation.

    Avoiding configure time file copying and adding dependencies on source
    *.py to have them copied and compiled.
    utkarshayachit committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    4c46737 View commit details
    Browse the repository at this point in the history
  2. Python: import the API module, not the Python library

    When building with Kits, the libraries listed here don't exist.
    msmolens authored and utkarshayachit committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    d179bff View commit details
    Browse the repository at this point in the history
  3. Merge topic 'gcc6-support'

    f60c8e7 eigen: add a space between strings
    
    Acked-by: Kitware Robot <[email protected]>
    Reviewed-by: Brad King <[email protected]>
    Merge-request: !683
    mathstuf authored and kwrobot committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    ed854cd View commit details
    Browse the repository at this point in the history
  4. Prefer vtk package from paraview.

    Using paraview.vtk instead of vtk avoid importing all of VTK's Python
    wrapped modules which is huge benefit when dealing with slow file
    systems, often encountered in ParaView use-cases.
    utkarshayachit committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    aadfe86 View commit details
    Browse the repository at this point in the history
  5. Fix incorrect imports.

    utkarshayachit committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    30de5e1 View commit details
    Browse the repository at this point in the history
  6. Making PythonSelection test more robust.

    This circumvents rendering issues with rendering selection wireframe on
    certain systems.
    utkarshayachit committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    10f61cf View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    fd0e9d4 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2016

  1. Merge topic 'update_vtk'

    fd0e9d4 Update VTK to bring kits+static+python fixes.
    10f61cf Making PythonSelection test more robust.
    30de5e1 Fix incorrect imports.
    aadfe86 Prefer `vtk` package from `paraview`.
    d179bff Python: import the API module, not the Python library
    4c46737 Cleanup ParaView's python package generation.
    85c8699 Python: import the API module, not the Python library
    7a35f41 Update vtk_add_python_wrapping calls to use new signatures
    ...
    
    Acked-by: Kitware Robot <[email protected]>
    Merge-request: !685
    utkarshayachit authored and kwrobot committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    763c25f View commit details
    Browse the repository at this point in the history
  2. Merge topic 'vtk_for_pv_5.0.1'

    03e7e55 Update VTK.
    a1e085d Merge topic 'axes-grid-15672'
    
    Acked-by: Kitware Robot <[email protected]>
    Merge-request: !682
    utkarshayachit authored and kwrobot committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    5483620 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'vtk_for_pv_5.0.1' into release

    * vtk_for_pv_5.0.1:
      Update VTK.
    utkarshayachit committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    9e856f7 View commit details
    Browse the repository at this point in the history
  4. Merge topic 'release'

    9e856f7 Merge branch 'vtk_for_pv_5.0.1' into release
    
    Acked-by: Kitware Robot <[email protected]>
    Merge-request: !687
    utkarshayachit authored and kwrobot committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    9b8a714 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    efb2fb7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0ba2b42 View commit details
    Browse the repository at this point in the history