date | project | content | link |
|---|
| 11:58 on May 12 | haiku | Commit by stippi on master :: r hrev44148 haiku/: ( link) Fixed dropping color on "current color" swatch [3 commits]
* When the color of the "current color" swatch view
(the bigger one) changes because of a color drop, adopt the
new color just like when changing the color via other means. | # |
| 14:50 on May 06 | haiku | Commit by stippi on master :: r hrev44117 haiku/: ( link) Implemented drag&drop of shape items between I-O-M windows. [3 commits]
* The ShapeListView also knows the PathContainer and StyleContainer
* When constructing the drag message, also include a complete archive
of the dragged shapes, bundled with archives for each included path
and the style.
* When handling the drop, and it came from another I-O-M window,
exract the Shape archive bundle from the drag message. For the
Style and the included Paths, try to find an existing Style and
existing Paths and reference those in the added Shape(s) instead
of adding duplicates. | # |
| 15:14 on May 05 | haiku | Commit by stippi on master :: r hrev44111 haiku/: ( link) Made it possible to drag paths from one I-O-M window to another. [2 commits]
* Put archived versions of the selected paths into the drag message.
* If the base class version HandleDropMessage() failed, it means the
drag message came from another window. Reconstruct the paths and
add them via the AddPathsCommand. | # |
| 14:42 on May 05 | haiku | Commit by stippi on master :: r hrev44110 haiku/: ( link) Accept dropping Styles from another I-O-M window. [5 commits]
* Add archived versions of the selected Styles to the drag message.
* If the base class didn't handle the drop message, try to unarchive
Styles and add them via AddStylesCommand. | # |
| 13:32 on Mar 04 | haiku | Commit by stippi on master :: r hrev43821 haiku/: ( link) Fixed wrong assert and locking when using Workspace objects.
- The assert in the Workspace constructor was definitely for the wrong lock. One should be holding the all window lock either in read or write mode. The Desktop message loop lock should be unrelated.
- Added boolean to the constructor which controls the assert.
- Added documentation to Workspace class, since it's not at all obvious how this is intended to be used.
- Fixed ServerApp to lock the Desktop correctly when using Workspace desktop colors.
| # |
| 09:46 on Feb 26 | haiku | Commit by stippi on master :: r hrev43796 haiku/: ( link) Removed Fonts preflet from the image. [3 commits] | # |
| 16:33 on Feb 25 | haiku | Commit by stippi on master :: r hrev43784 haiku/: ( link) Updated Clockwerk optional packages for gcc2 and gcc4.
* Changes to the layout API broke the old packages.
* The update to GCC4.6 broke compiling. | # |
| 21:13 on Dec 04, 2011 | haiku | Commit by stippi on master :: r hrev43406 haiku/: ( link) Fall back to running test_registrar from the same directory.
As a last fall-back, try to launch the test_registrar from the same directory as run_test_registrar. This makes launching the app_server test environment from a volume without Query support work. | # |
| 13:51 on Dec 04, 2011 | haiku | Commit by stippi on master :: r hrev43401 haiku/: ( link) Replaced mention of "SVN" with "version control system". | # |
| 21:57 on Oct 29, 2011 | OpenBeOS | Commit by stippi :: r42975 /haiku/trunk/src/apps/launchbox/ (6 files): Place the button description window near the mouse and to the side of the pad window that has enough room (preferring right/bottom side of pad). The algorithm doesn't strictly prevent the window to be placed outside of the screen in any and all situations, but it should work pretty well in practice. | # |
| 18:26 on Oct 29, 2011 | OpenBeOS | Commit by stippi :: r42963 /haiku/trunk/src/apps/launchbox/support.cpp: Some coding style fixes. | # |
| 18:17 on Oct 29, 2011 | OpenBeOS | Commit by stippi :: r42961 /haiku/trunk/headers/os/drivers/ (ISA.h PCI.h): Reverted r42958 as it is broken and I completely forgot to compile before I commited... need to get back into the habbit, sorry for the noise. | # |
| 18:04 on Oct 29, 2011 | OpenBeOS | Commit by stippi :: r42958 /haiku/trunk/headers/os/ (4 files in 2 dirs): Applied slightly reworked and updated patch from ticket #1576 by "jarz" to rewrite the last remaining (?) headers in order to get rid of the Be copyright. Thanks a lot and sorry for the long delay. | # |
| 22:05 on Sep 19, 2011 | OpenBeOS | Commit by stippi :: r42759 /haiku/trunk/src/apps/drivesetup/ (4 files): Patch by "jwlh172": Added a text control to the partition creation panel of DriveSetup, to enter the partition size manually. Closes ticket #7991. Changes by myself: I've refactored updating the text control from the size slider and used that method also when the user somehow entered invalid input into the text control (untested). | # |
| 12:21 on Aug 26, 2011 | OpenBeOS | Commit by stippi :: r42690 /haiku/trunk/ (2 files in 2 dirs): Patch by John Scipione: Added cbrt() function to the supported functions and factrorial expression support. Closes ticket #7945, thanks a bunch! | # |
| 13:00 on Jun 07, 2011 | OpenBeOS | Commit by stippi :: r42004 /haiku/trunk/ (3 files in 2 dirs): Applied patch by Pete Goodeve from ticket #7182. It improves keyboard navigation/tracking of BMenus and BMenuBars, although many issues remain. Should not yet go into alpha, since there is one issue which I am not sure if it's not a regression. The issue is that invoking a menu item with Enter for the first time seems to have no effect, while invoking it subsequently works as expected. I don't know, yet, if that's a regression of this patch. In any case, it's better than before, thanks, Pete! | # |
| 15:51 on Jun 03, 2011 | OpenBeOS | Commit by stippi :: r41881 /haiku/trunk/src/kits/interface/ (ControlLook.cpp Slider.cpp): Applied patch by Pete Goodeve (with small coding style corrections) which fixes vertical BSliders. (ticket #7548) Thanks a bunch! +alpha | # |
| 07:22 on May 20, 2011 | OpenBeOS | Commit by stippi :: r41602 /haiku/trunk/src/kits/interface/DecorInfo.cpp: When cleaning up the patch, I accidentally removed some functionality which I misunderstood. setdecor can now refer to decorators by their short (i.e. file system) name as well. | # |
| 15:29 on May 19, 2011 | OpenBeOS | Commit by stippi :: r41581 /haiku/trunk/ (32 files in 9 dirs): Applied patch by Joseph "looncraz" Groover from ticket #7445. This changes how Decorators are managed and applied. The app_server no longer scans and maintains the available ones himself, but is simply asked to load a Decorator add-on from a provided path. The Decorator scanning is moved into DecorInfo and DecorInfoUtil, private classes in the InterfaceKit. The bin command 'setdecor' uses those. I cleaned up all the coding style violations that I could find, removed chunks of code which didn't make sense (if you never put a NULL pointer into a list, you don't need to check for this and so on) and also cleaned up other passages for improved clarity and simplicity. I also tested the functionality and it works fine. Would even be Ok to include in Alpha 3, IMHO. Thanks for the patch! | # |
| 21:54 on May 02, 2011 | OpenBeOS | Commit by stippi :: r41305 /haiku/trunk/data/artwork/GET HAIKU - download box 2: Pixel aligned the arrow. Would be nice if someone uploaded this to the website and replaced the current download background graphics with this. | # |