{5} Assigned, Active Tickets by Owner (Full Description) (6 matches)
List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.
jorrit (3 matches)
| Ticket | Summary | Component | Milestone | Type | Created | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #935 | png image writing seems broken, green channel missing | other plugins | defect | 2011-12-16 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
It appears as if the green channel is missing while writing out png images. This is easy to test in bugplug. I can confirm it is only with png because changing bugplug (in bugplug.cfg) to write 'jpg' files doesn't have the issue. Attached screenshot shows a screenshot of the default castle level. I haven't tried this bug in 2.0 but it could be present there too. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #151 | remove emit particle system | other plugins | Version 2.0 pre1 | task | 2006-09-27 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
remove the deprecated emit system after porting of all particle systems was done for 1.0RC1: #3 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #115 | Break apart stdrep | other plugins | enhancement | 2006-09-13 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Migrated from SFfeat:975687.
Original description: Unfortunately, stdrep and the iStandardReporterListener interface severely obscure this benefit by trying to do everything at once which anyone might ever want it to do. This makes it overly complex and very inflexible, and does not lend itself to re-use. A much better approach would be to break down stdrep into several simple, single purpose, very focused components, each of which knows how to do just one thing, and how to do it well. This will allow clients to pick-and-choose properly the components which they want to use (possibly multiple instances of the same component type configured differently). Obvious standard listener components which should be offered from the decomposition of stdrep include: - iConsoleOutput emitter - FILE* emitter (can be used for stdout, stderr, or any real file) - iFile* emitter - iNativeWindowManager* emitter (for displaying messages in a native alert panel) - Jorrit's-Yellow-Box iGraphics2D emitter (for the "yellow box of messages" feature of stdrep) Of course, clients are free to implement their own iReporterListeners if these standard components do not entirely fulfill their needs. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
res (1 match)
| Ticket | Summary | Component | Milestone | Type | Created | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #899 | Problem with the rotation component of the transform of a composed mesh in the mesh generator | engine | defect | 2011-03-26 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
In r36007, the tree is made of a null mesh with two child meshes. These child meshes have both a transform with a rotation component. When you move around with the camera, the first child mesh seems positionned correctly, while the second doesn't move like it should. This behaviour disappear if you remove the rotation part of the second child mesh in source:CS/trunk/data/island/factories/tree.cslib@36007#L1496 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sunshine (2 matches)
| Ticket | Summary | Component | Milestone | Type | Created | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #670 | CS OSX Client Memory Management | general | defect | 2009-07-09 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
With the latest version of osx, 10.5.7, the stable static client for PlaneShift has become unusable. Upon investigation, I found that the memory leaks generated by the stable mac client had increased since the previous OS version. For this reason, I have decided to go back to the CS osx files and update them. The first change I would like to make is to have the main thread's autorelease pool owned by the OSXDelegate class (as opposed to the global autorelease pool currently in place). While the global release pool looks like a good idea theoretically, I believe that the pool is being prematurely released and causing a slew of memory leaks. After making the change in the attached .diff file, I noticed the decrease of a significant number of memory leaks in the PS trunk. The only disadvantage to this change is that our instance of the OSXDelegate will no longer be controlled by an autorelease pool. If you approve of this change, I will commit it. More suggested updates to follow in the next few days. ~Don Mac |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #120 | Unify vfs.cfg + vfs/vfs.cfg.template | build system | enhancement | 2006-09-13 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Migrated from SFfeat:1033230. Original DescriptionPresently, there are two versions of vfs.cfg in CS. One resides at CS/vfs.cfg, and the other at CS/plugins/filesys/vfs/vfs.cfg.template. The template is used by the Jam build system to construct a vfs.cfg on-the-fly at install time. The other is used by developers running CS from the source tree (and by MSVC users). Having two distinct copies of this resources is a maintenance headache and constantly results in synchronization problems since people always forget to apply modifications to both sources. Figure out some way to resolve this issue by unifying the files into a single resource. Response
Date: 2004-09-23 15:48 Maybe generate CS/vfs.cfg from the template? Furthermore, vfs.cfg generation would be predestined to be run by the daily jobber. Response
Date: 2006-05-18 14:47 One issue with having jobber.pl generate vfs.cfg from the template daily is that it would not solve the problem of people forgetting / neglecting to edit vfs.cfg.template, and instead only editing vfs.cfg; ultimately leading to loss of those changes. A more robust unification would be to have just a single file. Ideally, we should be able to come up with a format which works both in the source-tree development environment, and also which can be customized automatically at jam install time for the installed environment. This way, we could have just a single CS/vfs.cfg file and ditch CS/plugins/filesys/vfs/vfs.cfg.template. The primary difference between the two files is that vfs.cfg.template uses extra indirection by replacing the hard-coded $@, $*, etc. references with variables such as CS_DATADIR, CS_MAPDIR, etc., whose values are set at jam install time. One possible solution is to apply this approach to CS/vfs.cfg and have default values for CS_DATADIR, CS_MAPDIR, etc. which work in the development environment. Then, have jam install customize the assignment of those variables at installation time. For instance, by default CS/vfs.cfg might contain something like this: VFS.Mount.MyDir = $(CS_DATADIR)/mydir.zip CS_DATADIR = $@ At jam install time, the installed vfs.cfg would be customized to: VFS.Mount.MyDir = $(CS_DATADIR)/mydir.zip CS_DATADIR = /usr/local/share/crystal # (or whatever) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
