Commit Graph

2598 Commits

Author SHA1 Message Date
Waldo Bronchart 57808f4357 Fixed bug with Camera widget in .kv file
The resolution property is not initialized before _on_index() is called.
So the app crashes because [-1, -1] is not a supported resolution.

...
Camera:
    resolution: (640, 480)
    index: 0
2012-08-30 23:50:12 +02:00
Qua-non a6a7eaaa97 UIX: TextInput, attempt to make handeling of large data smoother than
before
2012-08-31 02:30:06 +05:30
Edwin Marshall (aspidites) 28c543f0e9 - return text if already unicode 2012-08-28 11:17:50 -04:00
Edwin Marshall (aspidites) dc70c6d359 - fixes issue #649, simpler alternative to pull request # 651 2012-08-28 01:31:23 -04:00
Thomas Hansen c3a0f48828 fix issue #648:
uix.screenmanager: dont propagate touch event sduriong transition
2012-08-23 12:02:49 -05:00
Thomas Hansen 8429c70677 fix issue #647
uix.screenmanager: add remove_widget function to remove screens added with add_widget
2012-08-23 11:56:28 -05:00
Thomas Hansen 678567051b Merge pull request #626 from hansent/uix-carousel
fix Issue #607: add carousel widget
2012-08-19 07:52:10 -07:00
Gabriel Pettier f6d7bbc7a9 Merge pull request #644 from geojeff/properties_docs
Properties docs
2012-08-18 09:44:19 -07:00
Jeff Pittman e955474cb5 Fixed docs for bind argument in AliasProperty -- property name strings are required, because they are used with gettatr in the code. 2012-08-18 11:29:03 -05:00
Jeff Pittman 7c83d030c0 Pep8 fixes. 2012-08-18 11:26:43 -05:00
Jeff Pittman 872bc4c80e Made grammar and punctuation fixes. 2012-08-18 11:23:37 -05:00
Mathieu Virbel daeb1885cc include getting started only for html output (avoid it for pdf.) 2012-08-17 12:53:39 +02:00
Mathieu Virbel f76213090c Merge pull request #642 from kivy/smb
Smb support for Loader using PySMB
2012-08-16 18:42:31 -07:00
Qua-non fd9b0d446f Doc: getting started fix links in the packaging section. 2012-08-17 05:49:14 +05:30
Qua-non 8a6a200b33 Loader: remove unneeded `self._smb_initialized` variable 2012-08-17 02:34:32 +05:30
Mathieu Virbel 65c9515a37 activate gettingstarted in documentation + fix navigation from the menu. 2012-08-16 18:23:52 +02:00
Mathieu Virbel 081ecf500b doc fixes to remove the hidden toctree 2012-08-16 16:54:52 +02:00
Qua-non 3f1aa3f0fb Doc: Loader add note: about SMBHandler 2012-08-16 20:19:50 +05:30
Thomas Hansen f556163af9 Merge branch 'master' into uix-carousel 2012-08-14 14:40:26 -05:00
Thomas Hansen 89876fb95b uix.carousel:
* remove orientation property in favor of direction property,
   which can be (right, left, top, or bottom).
2012-08-14 14:10:49 -05:00
Qua-non 75781d485b Loader, Async: add support for `smb://` protocol 2012-08-13 20:21:10 +05:30
Thomas Hansen 7629e4174e uix.carousel:
* fix pep8 formatting and other minor code edits
2012-08-12 02:29:09 -05:00
Thomas Hansen 5bee74d38a animation:
* add missing documentation for new cancel_property and cancel_all methods
2012-08-12 02:27:54 -05:00
Mathieu Virbel 5d50999c67 update pep8 contrib, and fix all the last warning from "make style". 2012-08-11 16:20:16 +02:00
Mathieu Virbel 8aeab85c2d motionevent: cache the pos attribute, surely the most used within kivy.
Collision test perfs with @property: [0.24933314323425293, 0.24625396728515625, 0.2477419376373291]
Collision test perfs with cached pos: [0.12134003639221191, 0.10923004150390625, 0.10919404029846191]
2012-08-11 12:34:25 +02:00
Thomas Hansen 6c91e86ef0 uix.carousel:
* use properties for everything
    * correct handling of multiple / simultaneous/ quick successive touches
    * formatting to comply with style guide
2012-08-10 12:21:52 -05:00
Thomas Hansen c54be9ae8d animation.py: add cancel_property and cancel_all methods. works just like stop, but will cancel, instead of stop (so no on_complete event fired) 2012-08-10 12:01:59 -05:00
Mathieu Virbel 42418aaba3 properties: add "cache" parameters to AliasProperty, when activated, the __get__ will be called only if one of the dependency is updated. 2012-08-10 18:46:14 +02:00
Mathieu Virbel bdc4c13119 screenmanager: raise exception if start() is called twice. closes #618 2012-08-10 12:10:41 +02:00
Mathieu Virbel b3999f3a11 app: fix invalid configuration filename >_< 2012-08-10 11:31:14 +02:00
Mathieu Virbel e02fd0dba5 Merge branch 'master' of ssh://github.com/kivy/kivy 2012-08-10 11:18:06 +02:00
Mathieu Virbel f747e0d6cb mouse: fix ghost touch that can appear on window (due to a race condition between mousemotion / mouserelease). closes #621 2012-08-10 11:17:54 +02:00
Mathieu Virbel 35b83b0bfc Merge pull request #636 from hansent/screenmanager_names
uix.screenmanager.ScreenManager:
2012-08-10 01:19:03 -07:00
Thomas Hansen d0cdce6cc0 uix.screenmanager.ScreenManager:
* this fixes issue #634
   * remove exception when new screen with same name as existing is added
   * instead warn when switching to a screen by name, and there are multiple
   * adds `screen_names` property, to get list of all screen names
2012-08-09 13:52:46 -05:00
Mathieu Virbel dac07bb5ad Merge pull request #632 from dekoza/master
Cosmetic changes to docs
2012-08-09 06:52:12 -07:00
Mathieu Virbel 5d6b2166fb Merge pull request #633 from kivy/attribute_keep_data
Core: Image: skip keep_data check for images created from texture
2012-08-09 06:48:23 -07:00
Qua-non 735299d28c Pep8 Fixes: as per suggestions by tshirtman and aspidites 2012-08-09 18:18:11 +05:30
Qua-non 82ee2b49d4 Core: Image: skip keep_data check for images created from texture
should fix #631 and #629
2012-08-09 17:23:03 +05:30
Dominik Kozaczko d1eefab851 more corrections to docs 2012-08-09 13:50:05 +02:00
Mathieu Virbel 5e69db5a25 Merge pull request #630 from kivy/text_markup
Core: markup and text allow for blanks lines when using \n for empty
2012-08-09 04:31:58 -07:00
Dominik Kozaczko e68d68d1ac README links to correct API doc location 2012-08-09 13:20:14 +02:00
Dominik Kozaczko d178f02c5b small corrections to docs 2012-08-09 13:07:07 +02:00
Mathieu Virbel 2c2f8a6813 Merge pull request #623 from kivy/refactor-kivy.input.recorder
Recorder Module Refactor
2012-08-09 03:40:23 -07:00
Mathieu Virbel 63db7bfc8c Merge pull request #620 from revolunet/imagefix
fix url loader bug with querysrtings #547
2012-08-09 03:38:32 -07:00
qua-non a7e838ee45 Merge pull request #628 from revolunet/docfix
Docfixes by revolunet
2012-08-08 20:12:26 -07:00
Qua-non 3faa7231bb Core: markup and text allow for blanks lines when using \n for empty
lines
should fix issue #619
2012-08-09 05:08:00 +05:30
Julien Bouquillon d94ef8a60c some more doc fixes 2012-08-09 01:10:17 +02:00
Julien Bouquillon 60927a5aca typos and pep8. fix some of #175 2012-08-09 00:50:18 +02:00
Julien Bouquillon 3d60b4436e add events docs + PEP8 fixes 2012-08-09 00:27:23 +02:00
Julien Bouquillon c75f92ecfc add info about compiling docs 2012-08-09 00:20:10 +02:00