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

MouseMotionEventProvider: Update doc of disable_hover property #7644

Merged

Conversation

pythonic64
Copy link
Contributor

Maintainer merge checklist

  • Title is descriptive/clear for inclusion in release notes.
  • Applied a Component: xxx label.
  • Applied the api-deprecation or api-break label.
  • Applied the release-highlight label to be highlighted in release notes.
  • Added to the milestone version it was merged into.
  • Unittests are included in PR.
  • Properly documented, including versionadded, versionchanged as needed.

@pythonic64 pythonic64 added the Component: input kivy/input label Sep 30, 2021
@pythonic64 pythonic64 added this to the 2.1.0 milestone Sep 30, 2021
@pythonic64 pythonic64 force-pushed the update-doc_of_disable_hover_property branch from 97839f0 to 0648f7f Compare September 30, 2021 15:14
@pythonic64 pythonic64 force-pushed the update-doc_of_disable_hover_property branch from 0648f7f to 0e485fb Compare September 30, 2021 15:18
Copy link
Member

@Zen-CODE Zen-CODE left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice. Thanks.

@Zen-CODE Zen-CODE merged commit 3223583 into kivy:master Oct 4, 2021
DexerBR added a commit to DexerBR/kivy that referenced this pull request Jan 16, 2022
commit 3324556
Merge: 043c5a4 fbf561f
Author: Dexer <73297572+DexerBR@users.noreply.github.com>
Date:   Sat Jan 15 22:11:10 2022 -0300

    Merge branch 'kivy:master' into textinput-feature1

commit fbf561f
Author: Gabriel Pettier <gabriel.pettier@gmail.com>
Date:   Wed Jan 12 18:26:20 2022 +0100

    Add python3.10 in the ci configuration [build wheel linux] [build wheel osx] [build wheel win] (kivy#7663)

    * Add python3.10 in the ci configuration

    * Update setup.cfg and setup.py for python3.10

    * also update pyproject.toml to allow using latest cython

    * update kivy-deps.sdl2 required version in setup.cfg

    * bump kivy-deps.sdl2 version

    * use develop version of pyinstaller for python3.10 support

    * osx try simplified build

    * force usage of next funcparserlib release that doesnt use 2to3 in setup.py

    * 3.6 reached EOL on 2021-12-23

    * macOS: add cp310-macosx_universal2

    * We don't install anymore the full version. So ffmpeg dependency is not needed anymore. I expect to have a universal2 whl for ffpyplayer when we will switch back to full,dev

    * manylinux2010 --> manylinux2014 (via cibuildwheel)

    * Remove dependencies, so we can check delocating. Installs dev version cause support for 3.10 in ffpyplayer is missing

    * Update manylinux sdl2 version and max cython version.

    * Bump win deps.

    Co-authored-by: Mirko Galimberti <me@mirkogalimberti.com>
    Co-authored-by: Matt Einhorn <moiein2000@gmail.com>
    Co-authored-by: Matthew Einhorn <matt@einhorn.dev>

commit 4320c72
Author: Alspb <73047043+Alspb@users.noreply.github.com>
Date:   Tue Jan 11 18:08:30 2022 +0000

    Textinput on double tap improvement (kivy#7636)

    * Improved on_double_tap in textinput - words are selected considering commas, brackets, etc.

    * Created separate method for word selection

    * Minor refactoring

commit 25c00cc
Author: Alspb <73047043+Alspb@users.noreply.github.com>
Date:   Sat Jan 8 10:02:20 2022 +0000

    CodeInput: fixed disappearing lines after inserting text (kivy#7737)

commit 7d12150
Author: Mirko Galimberti <me@mirkogalimberti.com>
Date:   Tue Jan 4 19:12:39 2022 +0100

    Add support for Apple Silicon on CI/CD [build wheel osx] [build app osx] (kivy#7678)

    * Added support for universal2 wheels, and adds unit testing on our self-hosted Apple Silicon M1 runner

    * Improve job name readability

commit b692b22
Author: Gabriel Pettier <gabriel.pettier@gmail.com>
Date:   Sat Dec 25 17:44:00 2021 +0100

    Enable pressure for touches in android (and ios?) (kivy#7684)

    * enable pressure four touches in android (and some ios devices)

    * style fixes

commit 7206762
Author: Alspb <73047043+Alspb@users.noreply.github.com>
Date:   Mon Dec 20 00:04:23 2021 +0000

    Textinput:  Fixes issues kivy#7165, kivy#7236, kivy#7235 (kivy#7641)

    * Fixed kivy#7165

    * Fixed kivy#7236

    * Fixed kivy#7235

    * Minor refactoring

commit 64dd093
Author: Filip Radović <pythonic64@gmail.com>
Date:   Tue Dec 14 12:01:16 2021 +0100

    MotionEvent: Fix docstring in dispatch_done method to reference post_dispatch_input. (kivy#7717)

commit c27fb31
Author: 水戸う納豆齋(Nattōsai Mitō) <flow4re2c@gmail.com>
Date:   Sat Dec 11 23:10:38 2021 +0900

    deprecate 'kivy.utils.SafeList' (kivy#7701)

    * deprecate SafeList

commit 66458a9
Author: Filip Radović <pythonic64@gmail.com>
Date:   Sat Dec 11 15:09:37 2021 +0100

    MouseMotionEventProvider: Update simulated touch position on window reisze or rotate. (kivy#7714)

commit a1c1bcb
Author: Filip Radović <pythonic64@gmail.com>
Date:   Fri Dec 10 18:17:10 2021 +0100

    MotionEvent: Fixed calculation of z values in scale_for_screen when p is None. (kivy#7679)

commit 15e093a
Author: Filip Radović <pythonic64@gmail.com>
Date:   Fri Dec 10 18:13:10 2021 +0100

    MotionEvent: Fix keeping of the previous normalized position (kivy#7691)

    * MotionEvent: Fix keeping of the previous normalized position.
    * MotionEvent: Synchronizing normalizied opos, ppos and pos until the first dispatch.
    * MotionEvent: Renamed attribute keep_first_prev_pos to sync_with_dispatch.
    * MotionEvent: Fixed synchronization of normalized positions until the first dispatch.
    * EventLoopBase: Moved me.dispatch_done call to post_dispatch_input method.
    * MotionEvent: Moved synchronization until the first dispatch from move to depack method.
    * MotionEvent: Fixed commend in depack method.
    * MotionEvent: Fixed docstring of method "move".

commit 9a7f521
Author: Alexander Wolf <AWolf2904@gmail.com>
Date:   Thu Dec 9 20:58:10 2021 +0100

    change method name to get_color_from_hex (kivy#7706)

commit 6475495
Author: Mirko Galimberti <me@mirkogalimberti.com>
Date:   Thu Dec 9 18:15:25 2021 +0100

    Add an option  to force a custom search path for SDL2 frameworks + fixes ARCHFLAGS (kivy#7711)

    * Allow to force a custom search path for SDL2 frameworks + fixes ARCHFLAGS

    * Removes additional flags that were preventing to build a universal2 wheel.

commit 6fcf417
Author: 水戸う納豆齋(Nattōsai Mitō) <flow4re2c@gmail.com>
Date:   Tue Nov 23 21:52:10 2021 +0900

    [WIP] refactor kivy.lang (kivy#7703)

    * remove unnecessary list creations
    * remove unnecessary 'len()' calls
    * remove unused import statements
    * use dict.items() instead of dict.keys()
    * replace deprecated stuffs with not-deprecated ones
    * remove unnecessary list creation
    * explicitly specify file encoding

commit 43dc1ce
Author: Mirko Galimberti <me@mirkogalimberti.com>
Date:   Fri Nov 19 13:34:39 2021 +0100

    Moved support-request to v2. v1 has been shut down. (kivy#7676)

commit 74057b9
Author: Stanislav Syekirin <Zabolekar@users.noreply.github.com>
Date:   Tue Nov 16 23:06:25 2021 +0100

    Remove wording and functions specific to Python 2 (kivy#7693)

commit f0db812
Author: Gabriel Pettier <gabriel.pettier@gmail.com>
Date:   Sat Nov 13 17:28:52 2021 +0100

    Fix dds header comparison (kivy#7688)

commit e872599
Author: Filip Radović <pythonic64@gmail.com>
Date:   Sun Oct 31 18:54:54 2021 +0100

    MotionEvent: Fix scale_for_screen method (kivy#7659)

    * Fixed scale_for_screen to compute all absolute coords from normalized coords.
    * Updating dz only if argument p is passed.
    * Updated doc of to_absolute_pos method.
    * Renamed arguments of to_absolute_pos method.
    * Removed default value for rotation in to_absolute_pos method.
    * Minor updated in scale_for_scren and doc update in to_absolute_pos method.
    * Minor updated in scale_for_scren and doc update in to_absolute_pos method.I
    * Fixed to_absolute_pos for case when rotation is 270 degrees.
    * Simplified offset calculation for "scale" keyboard mode in scale_for_screen method.
    * Added test_motion_event.py module.
      * Fixed assert message in test_to_absolute_pos method.
      * Added create_dummy_motion_event method.

commit f40dd28
Author: Gabriel Pettier <gabriel.pettier@gmail.com>
Date:   Sun Oct 31 00:30:05 2021 +0200

    temporary force python3.9 use in the ci (kivy#7674)

commit a7a0310
Author: 水戸う納豆齋(Nattōsai Mitō) <flow4re2c@gmail.com>
Date:   Sat Oct 30 21:12:27 2021 +0900

    fix various docs (kivy#7672)

    * fix kivy/effects/*.py docs
    * add 'kivy.clock.triggered' to the doc

commit 8ae4378
Author: Filip Radović <pythonic64@gmail.com>
Date:   Thu Oct 28 22:36:03 2021 +0200

    WindowBase: Add transform_motion_event_2d method (kivy#7648)

    * WindowBase: Added transform_motion_event_2d method.

commit 6430e13
Author: Gabriel Pettier <gabriel.pettier@gmail.com>
Date:   Fri Oct 8 14:05:42 2021 +0200

    Rebase pr 2212 (kivy#4546)

    * added new type color for a colorpicker setting.

    * removed not used textinput property in SettingColor

    * added text_size to the color label to allow word wrapping. Looks nicer on smaller screens e.g. 320x480

    * change white background rectangle of selected color to a white border.

    * Added vesionadded.

    * Corrected PEP8.

    * Added Type color to doc string.

    * ColorSetting: Update versionadded, fix demo config key

    * Update kivy/uix/settings.py

    update versionadded

    * don't import kivy utils from style.kv

    as it prevents tests from passing

    * pep8 remove duplicate import

    Co-authored-by: Alexander Wolf <awolf2904@gmail.com>

commit 9a1794e
Merge: 7e2a2c7 32a7127
Author: Richard Larkin <zenkey.zencode@gmail.com>
Date:   Tue Oct 5 19:35:42 2021 +0200

    Merge pull request kivy#7614 from wxllow/patch-1

    Fix install command for zsh

commit 7e2a2c7
Merge: 3223583 a2a5078
Author: Richard Larkin <zenkey.zencode@gmail.com>
Date:   Tue Oct 5 00:47:30 2021 +0200

    Merge pull request kivy#7620 from p0lygun/patch-3

    removed print and added logging to flipVert

commit 3223583
Merge: 6a20b0d 0e485fb
Author: Richard Larkin <zenkey.zencode@gmail.com>
Date:   Tue Oct 5 00:43:59 2021 +0200

    Merge pull request kivy#7644 from pythonic64/update-doc_of_disable_hover_property

    MouseMotionEventProvider: Update doc of disable_hover property

commit 6a20b0d
Author: Filip Radović <pythonic64@gmail.com>
Date:   Sat Oct 2 15:43:17 2021 +0200

    WindowBase: Change type of clearcolor property to ColorProperty. (kivy#7647)

commit c11125e
Author: Dexer <73297572+DexerBR@users.noreply.github.com>
Date:   Sat Oct 2 10:40:55 2021 -0300

    Added scroll from swipe feature in TextInput (kivy#7610)

    Textinput updated to allow scroll from swipe

    * Improve consistency of scroll feature when text input is multiline
    * Removing unnecessary calculation in minimum_width variable
      I believe it is unnecessary to perform the calculation using the
    ` _get_text_width` method, when `self._lines_rects[-1].texture.size[0] `
      already provides the calculated value.
    * allows scrolling while text is selected and more...
    * bug fixes in the middle handle (which comes out of the text input bounding
      box when scrolling from the swipe) and in the display balloon (which was
      never displayed when using double/triple tap).
    * Added descriptive names and comments to explain logic

    Co-authored-by: Gabriel Pettier <gabriel.pettier@gmail.com>

commit 0e485fb
Author: pythonic64 <pythonic64@gmail.com>
Date:   Thu Sep 30 16:34:09 2021 +0200

    MouseMotionEventProvider: Updated doc of disable_hover property.

commit d526ade
Author: Vibhakar Solanki <solankivibhakar82@gmail.com>
Date:   Wed Sep 29 01:30:36 2021 +0530

    Added Custom titlebar support (kivy#7637)

    * added SDL_SetWindowHitTest function definitions, and data types
    * Added custom_titlebar, custom_titlebar_handler_callback to handle titlebar and resize logic
    * added custom_titlebar function
    * removed SDL_WINDOWEVENT_HIT_TEST from WindowEventID
    * made SDL_HITTEST_DRAGGABLE conditional
    * added custom_titlebar in graphics section
    * added custom_titlebar as WindowBase propetry
    * added custom_titlebar in setup_window
    * added custom_titlebar to setup_screen and post init set_border_state
    * changed default_language_version to python3
    * Implemented Window specific API to Support Aero Snapping
    * when custom_title, set borderless state according to platform
    * Added conditionl calling of in_drag_function; check for propretry draggable
    * Set borderless state depending on platform
    * add condition to compile windows specific code on windows only
    * group windows code together
    * fix resize issue after first drag of window (on windows platform)
    * Made use of class _WindowsSysDPIWatch to set WM_NCCALCSIZE
    * added variable WM_NCCALCSIZE
    * moved the winproc hook code to window_sdl.py
    * added handling when custom_titlebar is false on windows
    * set_custom_titlebar returns True on 0
    * added example for set_custom_titlebar
    * changed checking conditions in set_custom_titlebar
    * added custom_titlebar_border; bump up config version
    * fixed Win32 patform test
    * check for resizeable when using custom_titlebar

    closes kivy#5279

commit a2a5078
Author: Vibhakar Solanki <solankivibhakar82@gmail.com>
Date:   Sun Sep 12 22:56:54 2021 +0530

    removed print and added logging to flipVert

    Removed unnecessary print statement and made use of Logger

commit 32a7127
Author: willow <willowjl1117@gmail.com>
Date:   Sun Sep 5 12:21:39 2021 -0400

    Fix install command for zsh

    `python -m pip install kivy[base] kivy_examples --no-binary kivy` throws the error `zsh: no matches found: kivy[base]`, you need to use `python -m pip install "kivy[base]" kivy_examples --no-binary kivy` instead
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants