Martin Carlberg and GitHub
0aeccbb02c
Merge pull request #2462 from daboe01/pasteboard-type-fix
...
fixed: cappuccino pasteboad is always clobbered by system pasteboard
2016-09-26 09:49:41 +02:00
Alexandre Wilhelm and GitHub
5059028e8a
Merge pull request #2484 from daboe01/fixed--documentation-of-autoscroll--was-missing
...
Fixed: documentation of autoscroll: was missing
2016-09-25 13:00:21 -07:00
daboe01
070e6cf848
fixed: documentation of autoscroll: was missing
2016-09-24 17:04:12 +02:00
daboe01
4187fe7261
Merge remote-tracking branch 'cappuccino/master'
2016-09-17 17:07:44 +02:00
cacaodev and GitHub
dd62c08b09
FIXED: Fix a build error in XcodeCapp ( #2480 )
2016-09-09 21:03:17 +02:00
cacaodev and GitHub
6061323c36
Test CPSegmentedControl enabled state ( #2481 )
2016-09-07 20:56:49 +02:00
Martin Carlberg and GitHub
1360caaa81
Merge pull request #2467 from daboe01/tableview-cell-editing-fix-2-take
...
Fixed: tableview corruption when clicking on a cell-based control during an editing session
2016-09-01 06:08:14 +02:00
Alexandre Wilhelm and GitHub
315a7b9e6a
Merge pull request #2476 from daboe01/New-CGContextText
...
fixed: CoreGraphics does not have basic text drawing support
2016-08-30 17:43:55 -06:00
Alexander Ljungberg
4395c07648
Merge branch 'fix-mobile-text-entry'
2016-08-25 13:28:29 +01:00
Martin Carlberg and GitHub
f9cc77382a
Merge pull request #2475 from daboe01/daboe01-readme-fix
...
Fixed: missing requirements for developers...
2016-08-24 16:45:19 +02:00
Martin Carlberg and GitHub
e4fce08eff
Merge pull request #2477 from daboe01/setTimeout-scrolling-fix
...
fixed: scrolling events are missed on slower maschines in chrome 52
2016-08-24 16:23:56 +02:00
Alexander Ljungberg
47196cbc55
Typos.
2016-08-19 14:57:57 +01:00
Alexander Ljungberg
c0bf301434
Test: full manual test for the iOS hit test bug.
2016-08-19 14:35:44 +01:00
Alexander Ljungberg
f6671f8561
Fixed: iOS virtual keyboard broke hit tests.
...
Without this fix, tapping on the screen while the virtual keyboard of iOS was open, and it had forced scrolling (due to the input being low on the screen), would cause incorrect mouse event locations. So you might tap on a text field below your current field to edit it and something entirely different would get selected.
2016-08-19 14:35:19 +01:00
Alexander Ljungberg
26aab2961b
New: iOS Safari virtual keyboard "Done" button support.
...
Without this change, clicking the done button in iOS Safari would dismiss the virtual keyboard but then it would immediately come back (as we forced a refocus).
The fix is to no longer force a refocus since it turns out we don't need to anymore given another previous fix.
2016-08-19 13:07:43 +01:00
Alexander Ljungberg
c233abe3a4
New: -CPEvent subtype.
2016-08-19 12:45:41 +01:00
Alexander Ljungberg
beb3646bef
New: test which demonstrates a hit test bug in iOS Safari.
2016-08-19 01:15:12 +01:00
Alexander Ljungberg
eb8330a420
New: test which demonstrates an iOS virtual keyboard bug.
2016-08-18 23:53:25 +01:00
Alexander Ljungberg
7f3c2176f8
Fix typos.
2016-08-18 23:52:10 +01:00
Alexander Ljungberg
1d0fdd68f4
Formatting.
2016-08-18 23:51:35 +01:00
daboe01
b26c78828e
make manual test more explicit
2016-08-17 21:16:16 +02:00
daboe01
85648c7f11
fixed: manual test was missing
2016-08-17 20:10:02 +02:00
daboe01
86e2e0a2c3
minor rewording
2016-08-17 19:06:20 +02:00
daboe01
e2349019a3
minor rewording
2016-08-17 19:05:04 +02:00
daboe01
e485044cfb
remove mentioning of gcc and clang dependencies
2016-08-17 19:02:34 +02:00
daboe01
72d80e2857
fixed: scrolling events were missed on slower maschines in chrome 52
2016-08-16 20:53:49 +02:00
daboe01
79a4733698
fixed: CoreGraphics does not have basic text drawing support
2016-08-16 20:30:42 +02:00
daboe01
c64e1daa99
minor rewording
2016-08-15 21:21:53 +02:00
daboe01
d6b4933b05
Merge remote-tracking branch 'origin/daboe01-readme-fix' into daboe01-readme-fix
...
# Conflicts:
# README.markdown
2016-08-15 21:20:48 +02:00
daboe01
bcf9cee0f8
more details and compiler dependencies
2016-08-15 21:20:19 +02:00
Alexander Ljungberg
a2960a7997
Merge pull request #2463 from daboe01/cppasteboad-cleanup
...
CPPasteboad.j removal of dead code
2016-08-15 14:50:04 +01:00
daboe01 and GitHub
dac9874895
minor rewording
2016-08-12 17:16:52 +02:00
daboe01 and GitHub
a4d374ecb6
Fixed: missing requirements for developers...
...
... in README.markdown
2016-08-12 16:43:42 +02:00
Alexander Ljungberg
3e56c8ed8b
Fixed: XcodeCapp nib2cib incorrect vs jake release.
...
This bug is similar to the previous one in that the effect was the same. If XcodeCapp was used to `nib2cib`, the `NSClasses` setting would be ignored.
The reason for this, apart from the previous bug, was that `nib2cib` needs to be run from the project folder in order to find the main `Info.plist` file.
The fix is to change the CWD to the project folder before building.
2016-08-10 13:23:01 +01:00
Alexander Ljungberg
f4c11d14e7
Fixed: nib2cib'ed files different with jake release and jake deploy.
...
Without this fix, if you ran `nib2cib` on its own on your UI files you could get a different result than what `jake release` or `jake deploy` would produce. In particular the `NSClasses` setting would be ignored unless `jake release` was used.
The reason for this bug was that the main bundle was never loaded and so the `Info.plist` was not read. But when using `jake release` (and deploy) the main bundle and the `Info.plist` gets baked in so it's always automatically loaded.
The fix is to load the main bundle before checking its settings.
2016-08-10 13:22:04 +01:00
Alexander Ljungberg
dde805931d
New: show successfully loaded NSClasses in nib2cib verbose.
...
It's helpful to see which ones are loaded when troubleshooting nib2cib.
2016-08-10 13:22:04 +01:00
Alexandre Wilhelm and GitHub
fedc721432
Merge pull request #2439 from cacaodev/CPView-viewDidAppear
...
NEW: CPViewController -viewWill/DidAppear & viewWill/didDisappear
2016-08-09 23:06:10 -07:00
Alexandre Wilhelm and GitHub
b09cb24804
Merge pull request #2473 from enquora/capp
...
Move XcodeCapp 'Preferences' menuItem to standard position
2016-08-09 22:54:39 -07:00
Alexandre Wilhelm and GitHub
80bfeb1a29
Merge pull request #2470 from daboe01/remove-rakefile
...
Fixed: obsolete file in root directory
2016-08-09 22:54:00 -07:00
David Richardson
63ad51a637
Move XcodeCapp 'Preferences' menuItem to standard position
2016-08-09 11:33:45 -06:00
daboe01
5ee6232bfc
fixed: unused file in the root directory
2016-08-05 12:47:49 +02:00
daboe01
bb2a9fe180
formatting
2016-07-24 17:45:26 +02:00
daboe01
e9c7c7ee4c
fixed: editing state was deleted after committing a non-text-control
2016-07-24 17:43:45 +02:00
daboe01
ff7d4f237a
fixed: hitTest: had side effects
2016-07-24 17:03:00 +02:00
daboe01
8bf9f8057e
Merge remote-tracking branch 'cappuccino/master'
2016-07-24 16:44:00 +02:00
daboe01
95e7a7c8eb
fixed: wrong comparison (for proper null handling)
2016-07-17 07:53:53 +02:00
daboe01
bbc2f4766e
fixed: one other reference to _stateUID
2016-07-17 07:33:21 +02:00
Alexandre Wilhelm and GitHub
12dde5154f
Merge pull request #2461 from cacaodev/CPView-viewDidHide
...
FIXED: CPView received multiple -viewDidHide/Unhide messages
2016-07-11 07:46:16 -07:00
Alexandre Wilhelm and GitHub
5bc3609ad7
Merge pull request #2464 from daboe01/remove-nativehost
...
Remove nativehost
2016-07-09 19:14:29 -07:00
daboe01
5c1cdea3c6
Removed: Obsoleted Nativehost stuff
2016-07-08 21:34:14 +02:00