Mathieu Virbel
290c187e87
Merge pull request #1075 from smishlayev/patch-2
...
Update app.py
2013-03-31 11:02:28 -07:00
Mathieu Virbel
38069971ec
Merge pull request #1071 from kivy/core-lazy-texture
...
Lazy texture uploading
2013-03-31 11:01:52 -07:00
Mathieu Virbel
20d594dfdd
lang: pack all the canvas expression execution to be executed after dispatching input, and before drawing the frame if the frame need to be drawed.
2013-03-31 20:02:21 +02:00
Alexey Smishlayev
4cbc5e113c
Update app.py
...
Handle situation when Window is None (e.g. when App's build() returned nothing). Error message could be better, but it does the job.
2013-03-31 17:08:25 +03:00
Mathieu Virbel
c52a39c309
uix: fix switch and checkbox for dpi
2013-03-31 12:30:47 +02:00
Mathieu Virbel
7ce2cdf590
setup.py: normalize c_options for x11 and mesagl. closes #1074
2013-03-31 12:26:23 +02:00
Mathieu Virbel
e36637d860
Merge branch 'master' of ssh://github.com/kivy/kivy
2013-03-31 12:20:54 +02:00
Mathieu Virbel
23a2a0e9d6
pep8 fixes, closes #1072
2013-03-31 12:20:47 +02:00
Mathieu Virbel
577277f87c
Merge pull request #812 from kivy/lang_id
...
Lang: set id name as attribute of root widget
2013-03-31 03:00:04 -07:00
Mathieu Virbel
ac6df9e704
Merge branch 'master' of ssh://github.com/kivy/kivy
2013-03-31 12:00:01 +02:00
Mathieu Virbel
fe788691d9
fix kivycatalog
2013-03-31 11:59:37 +02:00
Mathieu Virbel
c41be5d3f6
Merge branch 'padding' of https://github.com/Ian-Foote/kivy into Ian-Foote-padding
2013-03-31 11:42:57 +02:00
Mathieu Virbel
fe46147dd6
Merge pull request #1055 from Zen-CODE/Doc_English_Improvements_17
...
Revisions to packaging-ios.rst
2013-03-31 02:39:19 -07:00
Mathieu Virbel
775c2d67a7
Merge pull request #1069 from kivy/textinput_improvements
...
uix: TextInput improve visual polish and mninor performance improvements
2013-03-31 02:37:39 -07:00
Mathieu Virbel
3082cc7c39
texture: introduce lazy texture, where the texture data is really gathered from a callback and uploaded to GPU only when bind().
2013-03-31 08:01:32 +02:00
Mathieu Virbel
f2e3f259d9
Merge branch 'master' of ssh://github.com/kivy/kivy
2013-03-31 05:22:05 +02:00
Mathieu Virbel
3e9e8109c9
clock: improve accuracy of the clock scheduler. Animatino of 1/60 fps run without dropping any frames.
2013-03-30 22:09:30 +01:00
qua-non
983df6c3be
uix: TextInput improve visual polish and mninor performance improvements
...
- Use `sp` conversion to set size for bubble closes #1065
- Add animation to sut copy paste dialogue
- position `cut copy paste`bubble so that it appears above/below the
finger not obscured by it.
- add `selectall` option to paste bubble.
- minor speed improvements for cursor movements.
- use unique cid for text_width(no body noticed a issue with this?)
2013-03-31 00:10:28 +05:30
Mathieu Virbel
8478df5dc4
Merge branch 'master' of ssh://github.com/kivy/kivy
2013-03-30 16:55:39 +01:00
Mathieu Virbel
29252e063f
Merge pull request #1050 from krivar/patch-1
...
fix Issue #1038 - sound.seek()
2013-03-30 04:11:02 -07:00
qua-non
4ea59cfec7
doc: Add a few examples to layout's section of guide
2013-03-30 03:07:30 +05:30
qua-non
71fe0d2ac2
uix:Carousel fix ref to slide container reflecting changes in RelativeLayout
2013-03-29 21:21:30 +05:30
qua-non
555d7b30aa
Merge pull request #1064 from JonasGroeger/master
...
Fixed example app not launching
2013-03-29 04:35:04 -07:00
Jonas Groeger
299932afdf
Added missing indentation
2013-03-29 11:31:36 +01:00
qua-non
cefee48e67
Merge pull request #1063 from Zen-CODE/Doc_English_Improvements_20
...
Revisions to /guide/readingdoc.rst
2013-03-29 02:45:40 -07:00
Zen-CODE
44d88fc834
Revisions to /guide/readingdoc.rst
2013-03-29 03:38:47 -05:00
Mathieu Virbel
ac955d4b08
merge master
2013-03-29 03:23:05 -05:00
Mathieu Virbel
c6e0e8fb3d
events: add __events__ discovery, no need to register_event_type() anymore.
2013-03-28 22:35:56 -05:00
Mathieu Virbel
797e76ea00
lang: use a specific cython class for storing all the data of a properties, instead of a dict. (Benchmark on the macbook reduced from 38.39 to 36.53. Note that the benchmark bench only the widget creation, and not really animation / layout / etc. So properties are not really stressed.)
2013-03-28 21:47:29 -05:00
Mathieu Virbel
0e6a4938d6
lang: avoid usage of Clear instruction specific to kv language, instead, introduce a "-" for avoiding to apply any previous rules. And use it for Button and ToggleButton. Benchmark show improvement of 11.10s to 8.77s for 10000 creation.
2013-03-28 19:30:02 -05:00
Mathieu Virbel
d01084729f
lang: new dynamic classes, that deprecated templates.
2013-03-28 19:00:55 -05:00
Mathieu Virbel
449975e57a
Merge pull request #1047 from kivy/sub_superscript
...
core: markup add subscript and superscript support closes #922
2013-03-28 15:41:18 -07:00
Mathieu Virbel
33c81e63fa
Merge pull request #1052 from kivy/text_input_ctrl_c
...
uix:TextInput allow keyboard shortcuts like ctrl+c to work in readonly
2013-03-28 15:31:52 -07:00
Mathieu Virbel
9be6198fe9
Merge pull request #1057 from Zen-CODE/Doc_English_Improvements_18
...
Revisions to /guide/packaging-macosx.html
2013-03-28 15:30:45 -07:00
Mathieu Virbel
48ce3e7ceb
Merge pull request #1059 from brousch/patch-1
...
Added python-for-android disambiguation section
2013-03-28 15:29:51 -07:00
Ben Rousch
21c503a3cb
Added python-for-android disambiguation section
2013-03-28 12:38:02 -03:00
qua-non
53293dde5c
core: markup pep8 fixes and better sub/superscript positioning
2013-03-28 18:00:46 +05:30
Thomas-Karl Pietrowski
bc2017b59b
Fixing typing error in the docs
...
changed "beeing" to "being" line 176.
2013-03-28 00:15:31 +01:00
Mathieu Virbel
78f87464bc
fix scatterlayout
2013-03-27 17:26:17 -05:00
Mathieu Virbel
af1aff8186
clock: fix invalid elf header for the clock
2013-03-27 17:12:21 -05:00
Mathieu Virbel
da4d139a82
clock: enhance clock sleep, using the same approach as pyglet internals. no busy-wait yet.
2013-03-27 16:56:23 -05:00
Mathieu Virbel
1761f7dde9
graphics: avoid reallocating the memory block if the size is the wanted size
2013-03-27 15:03:09 -05:00
Mathieu Virbel
10e8df8508
add missing scatterlayout in the factory registers
2013-03-27 13:06:47 -05:00
Mathieu Virbel
1dd4fb64f6
merge master
2013-03-27 13:05:53 -05:00
Thomas Hansen
8d72f61a11
Merge branch 'master' of github.com:kivy/kivy
...
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
2013-03-27 12:53:19 -05:00
Thomas Hansen
e0a99805c0
layout: remove duplicate binding of _triggerlayout
2013-03-27 12:51:14 -05:00
Thomas Hansen
1734cf4c7b
add missing file
2013-03-27 12:48:33 -05:00
Thomas Hansen
ce2b87cb93
make relativelayout not inherit from scatter, but use just a translation for optimization
...
old relativelayout is now ScatterLayout
2013-03-27 12:47:34 -05:00
qua-non
62ab68babf
Merge pull request #1048 from Zen-CODE/Doc_English_Improvements_16
...
Revisions to the the guide
2013-03-26 06:39:13 -07:00
qua-non
2ac156a67c
uix:TextInput allow keyboard shortcuts like ctrl+c to work in readonly
...
TextInput on desktop os's if keyboard_mode == "system"
2013-03-26 16:53:56 +05:30