Jens, I believe the correct way is git format-patch and then attach to the ticket.
So from a clean start git clone... cd shotwell git branch mybranch git checkout mybranch <make your edits> git commit -a <write the commit log> git format-patch --stdout master > <filepath to patch> Hope that helps, -Joe On 01/24/2013 06:31 PM, Jens B. wrote:
This should be fixed in: src/util/ui.vala This shoud be the correct enum, sorry I don't know how to properly send this in. < return Spit.Transitions.Direction.FORWARD; ---return Spit.Transitions.Direction.BACKWARD;public enum Direction { FORWARD, BACKWARD; public Spit.Transitions.Direction to_transition_direction() { switch (this) { case FORWARD: return Spit.Transitions.Direction.FORWARD; case BACKWARD: return Spit.Transitions.Direction.BACKWARD; default: error("Unknown Direction %s", this.to_string()); } } } _______________________________________________ Shotwell mailing list [email protected] http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell
_______________________________________________ Shotwell mailing list [email protected] http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell
