forked from schacon/ticgit
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CHANGELOG
788 lines (398 loc) · 25.3 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
[7f8665b | 2009-05-20 11:49:09 UTC] Michael Fellinger <[email protected]>
* Adding AUTHORS
[c2898cc | 2009-05-20 11:48:48 UTC] Michael Fellinger <[email protected]>
* Improve Rakefile and add some rake tasks
[6a13fe2 | 2009-05-20 11:19:31 UTC] Michael Fellinger <[email protected]>
* Minor cleanup in TicGit::Base
[e17017b | 2009-05-20 11:19:02 UTC] Michael Fellinger <[email protected]>
* Port all the cucumber and rspec specs to bacon
[a3d385e | 2009-05-20 10:40:56 UTC] Michael Fellinger <[email protected]>
* Fix wrong order in `ti points`
[913127a | 2009-05-20 10:40:38 UTC] Michael Fellinger <[email protected]>
* ti new shouldn't fail
[de64e48 | 2009-05-20 10:40:23 UTC] Michael Fellinger <[email protected]>
* Only show 'Options for xxx command' when there's actually a command and options
[8d430f0 | 2009-05-20 10:39:53 UTC] Michael Fellinger <[email protected]>
* Don't raise if we're not on windows, just apply default lines/cols (for example when executing inside an editor term
[e8ef2a6 | 2009-05-20 10:39:10 UTC] Michael Fellinger <[email protected]>
* Allow setting different IO for puts inside CLI
[ed21212 | 2009-05-20 10:38:37 UTC] Michael Fellinger <[email protected]>
* Minor cleanup in TicGit::Base
[4fc5500 | 2009-05-20 10:38:10 UTC] Michael Fellinger <[email protected]>
* Make sure that @last_tickets is always there, even if empty
[6a97395 | 2009-05-20 10:37:20 UTC] Michael Fellinger <[email protected]>
* Remove the cucumber specs
[b2655f3 | 2009-05-20 09:59:03 UTC] Michael Fellinger <[email protected]>
* Spec for `ti new`, add sorting by title
[756cc64 | 2009-05-19 07:29:37 UTC] Michael Fellinger <[email protected]>
* Make CLI#just character-aware
[06e1ed7 | 2009-05-18 09:32:07 UTC] Michael Fellinger <[email protected]>
* New OptionParser based structure, give every command basic usage and the ability to hook banner and options into the parser in a good-looking manner
[5f50e87 | 2009-05-18 09:30:38 UTC] Michael Fellinger <[email protected]>
* Add TicGit::VERSION and autoload for less used parts to speed up the execution
[4466cb5 | 2009-05-18 08:39:28 UTC] Michael Fellinger <[email protected]>
* Minor cleanup
[16e00d8 | 2009-05-18 08:05:11 UTC] Michael Fellinger <[email protected]>
* Move requires into ticgit.rb
[6424486 | 2009-05-18 06:58:56 UTC] Michael Fellinger <[email protected]>
* Split cli.rb into a module per command and autoload them when needed
[dfab2ee | 2009-05-18 06:56:54 UTC] Michael Fellinger <[email protected]>
* Make ticket_revparse more robust
[85c572a | 2009-05-18 06:56:30 UTC] Michael Fellinger <[email protected]>
* Prepare for CLI restructure, add custom OpenStruct subclass
[d5a3760 | 2009-05-18 06:13:28 UTC] Michael Fellinger <[email protected]>
* Remove the deprecated Gem::manage_gems call from the rakefile
[31ef06a | 2009-05-18 05:44:10 UTC] Michael Fellinger <[email protected]>
* Remove unused CLI::window_width
[b75f58c | 2009-05-18 02:55:15 UTC] Michael Fellinger <[email protected]>
* Outch, forgot something...
[c7adc2c | 2009-05-18 01:53:08 UTC] Michael Fellinger <[email protected]>
* Clean up some code, give commands -h/--help
[afe9086 | 2009-05-16 13:55:13 UTC] Michael Fellinger <[email protected]>
* Don't fail with an exception when checking out a ticket without argument
[628360c | 2009-05-16 06:51:10 UTC] Michael Fellinger <[email protected]>
* Get rid of trailing whitespace
[3036e14 | 2009-05-16 06:49:59 UTC] Michael Fellinger <[email protected]>
* Compatibility with 1.9
[d1b0792 | 2009-05-16 06:49:02 UTC] Michael Fellinger <[email protected]>
* bin/ti should work even if it's symlinked
[fe8dd66 | 2009-03-18 12:39:29 UTC] Aaron VonderHaar <[email protected]>
* Updated feature Ticgit help/List of ti commands: cover all the existing commands.
[a27b9d6 | 2009-03-18 08:12:45 UTC] Aaron VonderHaar <[email protected]>
* New feature for displaying ticgit help.
[5ce33a2 | 2009-03-18 08:05:52 UTC] Aaron VonderHaar <[email protected]>
* Features pass: Ticket points/Entering points, Ticket points/Default points.
[2692583 | 2009-03-18 07:15:27 UTC] Aaron VonderHaar <[email protected]>
* Implement storing points in the ticket.
[7a130e1 | 2009-03-18 07:06:53 UTC] Aaron VonderHaar <[email protected]>
* Add nested describe blocks to base_spec so that the long spec is better organized.
[8b60b14 | 2009-03-18 07:01:10 UTC] Aaron VonderHaar <[email protected]>
* Finish refactoring base_spec so that tests do not depend on one another.
[1f69cea | 2009-03-18 07:00:05 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[db64468 | 2009-03-18 06:58:53 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[39ad507 | 2009-03-18 06:56:56 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[6f87d52 | 2009-03-18 06:56:42 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[7570dcc | 2009-03-18 06:55:52 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[38e391f | 2009-03-18 06:54:27 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[fdf8e33 | 2009-03-18 06:53:27 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[0827c57 | 2009-03-18 06:52:35 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[d510f3b | 2009-03-18 06:51:38 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[6a4464f | 2009-03-18 06:49:16 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[fe0c979 | 2009-03-18 06:47:14 UTC] Aaron VonderHaar <[email protected]>
* Continue refactoring base_spec so that tests are not dependent on one another.
[90eea2d | 2009-03-18 06:45:49 UTC] Aaron VonderHaar <[email protected]>
* Start refactoring base_spec so that tests are not dependent on one another.
[ac6be10 | 2009-03-18 06:29:08 UTC] Aaron VonderHaar <[email protected]>
* New features: Ticket points/Entering points, Ticket points/Default points
[6440074 | 2009-03-18 06:12:21 UTC] Aaron VonderHaar <[email protected]>
* Clean up the Ticket completion feature.
[540974f | 2009-03-18 06:02:02 UTC] Aaron VonderHaar <[email protected]>
* Make the ticket titles retain their case.
[7d0aa49 | 2009-03-18 04:36:27 UTC] Aaron VonderHaar <[email protected]>
* New passing features: Ticket completion/New tickets are open, Ticket completion/Closing a ticket
[d649442 | 2009-03-18 04:06:54 UTC] Aaron VonderHaar <[email protected]>
* Cache command output in Then steps.
[de80574 | 2009-03-18 04:04:08 UTC] Aaron VonderHaar <[email protected]>
* New passing feature: Create tickets/Create many tickets
[0eb5cc5 | 2009-03-18 03:58:48 UTC] Aaron VonderHaar <[email protected]>
* Set up cucumber and created a passing feature: Create tickets/Create one ticket.
[627844f | 2009-03-16 13:40:26 UTC] Aaron VonderHaar <[email protected]>
* Fix dependencies for ticgitweb: Sass is no longer included automatically by Haml.
[fb3f1ec | 2009-02-08 16:37:17 UTC] Marko Mikulicic <[email protected]>
* add required library. Fixes:
uninitialized constant Sass
[bf57b03 | 2009-01-27 02:03:55 UTC] Scott Chacon <[email protected]>
* test commit
[b424798 | 2008-12-28 16:16:01 UTC] Kevin Ballard <[email protected]>
* Teach ticgit about the current window size
ticgit now knows how to find the window's size. Currently only used
for the `ti list` display.
This only works on POSIX systems. Do we even support Windows though?
[43d32a7 | 2008-12-28 12:14:44 UTC] Kevin Ballard <[email protected]>
* Support searching for multiple tags/states and for negating tags/states
-t and -s now take comma-separated lists. Prefixing an element with - means
reject all tickets that match that tag/state
[0638c57 | 2008-12-28 11:12:35 UTC] Kevin Ballard <[email protected]>
* Print an elipsis at the end of truncated fields
This is almost certainly going to break on non-UTF8 consoles.
[2bad4df | 2008-10-24 00:53:59 UTC] Scott Chacon <[email protected]>
* seeing if this helps the gem
[7482e0d | 2008-08-04 10:38:36 UTC] Scott Chacon <[email protected]>
* updated the gemspec to hopefully work better
[36c7dba | 2008-07-14 06:01:25 UTC] Scott Chacon <[email protected]>
* updated ticgit gem
[dd56df4 | 2008-05-27 05:24:15 UTC] Scott Chacon <[email protected]>
* so the reference updates
[b429ad8 | 2008-05-27 05:22:38 UTC] Scott Chacon <[email protected]>
* removed deps from gemspec because it breaks with github
[116613a | 2008-05-25 23:23:46 UTC] Scott Chacon <[email protected]>
* updated license with valid info
[4e2415a | 2008-05-25 06:13:43 UTC] Scott Chacon <[email protected]>
* added a license
[a4a1aff | 2008-05-12 15:27:25 UTC] James Healy <[email protected]>
* - added a -f/--file option to ti comment so a comment can be provided via a file
[6e453f5 | 2008-05-12 15:15:06 UTC] James Healy <[email protected]>
* added an example post-commit hook file
[74b835f | 2008-05-11 13:20:47 UTC] Adam <[email protected]>
* Removed a duplicate method
[ec0b1d7 | 2008-05-11 13:19:40 UTC] Adam <[email protected]>
* Fixed an incorrect comment
[0cf6dc9 | 2008-05-11 13:15:25 UTC] Adam <[email protected]>
* Removed some unnecessary files from the gemspec. lib/ticket is a
I should note that I was unable to build the gem if I didn't have the
log file
[fa42c65 | 2008-05-11 13:14:18 UTC] Adam <[email protected]>
* Ignoring the generated gem file when using the "gem build" command
Also added the gem file to be removed in the clean task
[2b5db39 | 2008-05-11 13:04:00 UTC] Adam <[email protected]>
* Instead of worrying about keeping both the gemspec in order and the
[ef0b7c0 | 2008-05-10 05:51:53 UTC] Adam <[email protected]>
* Updated README to include the assign action
[222b918 | 2008-05-11 03:18:40 UTC] Scott Chacon <[email protected]>
* bumped version
[ed60143 | 2008-05-10 02:01:38 UTC] Scott Chacon <[email protected]>
* added gemspec
[8e2dad2 | 2008-05-10 01:55:14 UTC] Scott Chacon <[email protected]>
* initial gemspec tryout for github gems
[7fb9764 | 2008-05-10 01:49:07 UTC] Scott Chacon <[email protected]>
* added ticgitweb command to bin
[d4e2dde | 2008-05-10 04:33:55 UTC] Adam <[email protected]>
* Changed the command line tool's assign action to better fit what was in
Added two command line options:
- u / --user => assign the defect to this user
-c / --checkout => checkout the defect as well
This means that you no longer supply who the ticket is assigned to as a
command line argument, only the ticket id can be specified as an
argument.
[247110b | 2008-05-10 03:12:29 UTC] Adam <[email protected]>
* Added the ability to change to whom a ticket is assigned.
From the command line:
ti assign
ti assign anon
ti assign anon 3
[112e427 | 2008-05-10 02:23:47 UTC] Adam <[email protected]>
* Created some rake task
* spec:coverage - runs rcov on the specs
* clean - removes the coverage directory and gem pkg directory
Also added entries in the ignore file to ignore the pkg and coverage
directories
[67e3618 | 2008-03-29 14:08:53 UTC] Scott Chacon <[email protected]>
* added rspec tests that at least give it a baseline of coverage
also had to tweak the patch submitted for finding the .git directory
from looking for GIT_DIR to looking for GIT_WORKING_DIR
[4aee7f3 | 2008-03-26 04:59:07 UTC] Scott Chacon <[email protected]>
* change the require statement for ti
[18bec2f | 2008-03-26 12:27:53 UTC] Magnus Holm <[email protected]>
* I think this closes 9c0804 (find the git directory properly)
[098c351 | 2008-03-24 23:36:12 UTC] Scott Chacon <[email protected]>
* centered a ticket - looks a bit better, i think
[f7d5904 | 2008-03-24 23:31:58 UTC] Scott Chacon <[email protected]>
* added ticket 1206459118_recent-changes-in-webui_258
[04505e5 | 2008-03-24 23:31:02 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206382088_order-on-the-beginning-of-a-tag_384
[b3600a8 | 2008-03-24 12:12:45 UTC] Scott Chacon <[email protected]>
* fixed sha search bug and improved ticgitweb to where its usable for realsies
[d217ce0 | 2008-03-24 12:11:48 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206416069_add-comments-in-ticgitweb_693
[45bc412 | 2008-03-24 12:11:42 UTC] Scott Chacon <[email protected]>
* added state (resolved) to ticket 1206416069_add-comments-in-ticgitweb_693
[822d6a1 | 2008-03-24 12:11:32 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206416139_modify-ticket-in-ticgitweb_876
[896e76d | 2008-03-24 12:10:54 UTC] Scott Chacon <[email protected]>
* added state (invalid) to ticket 1206416426_test-redirect_781
[1de35a2 | 2008-03-24 12:10:49 UTC] Scott Chacon <[email protected]>
* added state (invalid) to ticket 1206416456_test-redirect-2_787
[f9f642a | 2008-03-24 12:10:48 UTC] Scott Chacon <[email protected]>
* added state (hold) to ticket 1206416456_test-redirect-2_787
[ee278ad | 2008-03-24 12:10:42 UTC] Scott Chacon <[email protected]>
* added state (invalid) to ticket 1206416473_test-redirect-2_114
[8e1714f | 2008-03-24 12:10:07 UTC] Scott Chacon <[email protected]>
* added tags (tag) to ticket 1206416426_test-redirect_781
[22dce51 | 2008-03-24 12:10:03 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206416426_test-redirect_781
[88dc65c | 2008-03-24 12:09:47 UTC] Scott Chacon <[email protected]>
* added state (open) to ticket 1206416426_test-redirect_781
[289faab | 2008-03-24 12:09:45 UTC] Scott Chacon <[email protected]>
* added state (hold) to ticket 1206416426_test-redirect_781
[f79be47 | 2008-03-24 12:09:44 UTC] Scott Chacon <[email protected]>
* added state (open) to ticket 1206416426_test-redirect_781
[3cdd2d5 | 2008-03-24 12:09:42 UTC] Scott Chacon <[email protected]>
* added state (resolved) to ticket 1206416426_test-redirect_781
[c6b3a30 | 2008-03-24 12:00:08 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206402911_test-ticket_403
[2091e65 | 2008-03-24 11:58:44 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206416473_test-redirect-2_114
[45ca309 | 2008-03-24 11:58:39 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206416473_test-redirect-2_114
[2290884 | 2008-03-24 11:54:43 UTC] Scott Chacon <[email protected]>
* added tags (me, scotty) to ticket 1206416473_test-redirect-2_114
[e035687 | 2008-03-24 11:54:37 UTC] Scott Chacon <[email protected]>
* added tags (scott) to ticket 1206416473_test-redirect-2_114
[b2e941d | 2008-03-24 11:41:14 UTC] Scott Chacon <[email protected]>
* added ticket 1206416473_test-redirect-2_114
[6e57557 | 2008-03-24 11:40:56 UTC] Scott Chacon <[email protected]>
* added ticket 1206416456_test-redirect-2_787
[4cbe60b | 2008-03-24 11:40:26 UTC] Scott Chacon <[email protected]>
* added ticket 1206416426_test-redirect_781
[a0c65e2 | 2008-03-24 11:35:40 UTC] Scott Chacon <[email protected]>
* added ticket 1206416139_modify-ticket-in-ticgitweb_876
[0bbf04e | 2008-03-24 11:34:30 UTC] Scott Chacon <[email protected]>
* added ticket 1206416069_add-comments-in-ticgitweb_693
[d3b75aa | 2008-03-24 11:16:21 UTC] Scott Chacon <[email protected]>
* fixed the partial sha search
[1baa096 | 2008-03-24 08:04:45 UTC] Scott Chacon <[email protected]>
* added an initial version of the ticgitweb sinatra app
[38bf376 | 2008-03-24 08:03:21 UTC] Scott Chacon <[email protected]>
* added tags (iv) to ticket 1206402911_test-ticket_403
[fc6ad54 | 2008-03-24 08:03:06 UTC] Scott Chacon <[email protected]>
* stopping the addition of blank tags
[46b5391 | 2008-03-24 08:02:31 UTC] Scott Chacon <[email protected]>
* added the :saved option to ticket_list, rather than have the base lib look for ARGV
[6c5d64b | 2008-03-24 08:01:36 UTC] Scott Chacon <[email protected]>
* number of small fixes
* removed reference to ARGV in base lib, moved to cli file
* added a default filter to open tickets for the list command
[a761187 | 2008-03-24 07:58:50 UTC] Scott Chacon <[email protected]>
* updated README to show needed version of git gem
[bda5884 | 2008-03-24 07:55:52 UTC] Scott Chacon <[email protected]>
* added state (invalid) to ticket 1206402911_test-ticket_403
[d738aa7 | 2008-03-24 07:55:30 UTC] Scott Chacon <[email protected]>
* added state (resolved) to ticket 1206382402_dont-allow-blank-tags_237
[50b1f47 | 2008-03-24 07:55:11 UTC] Scott Chacon <[email protected]>
* added ticket 1206402911_test-ticket_403
[b1539fd | 2008-03-24 07:33:24 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206206679_start-web-ui_911
[598fad0 | 2008-03-24 07:30:52 UTC] Scott Chacon <[email protected]>
* added state (resolved) to ticket 1206206679_start-web-ui_911
[b7337d1 | 2008-03-24 07:29:20 UTC] Scott Chacon <[email protected]>
* added ticket 1206401359_prompt-for-comment-when-you-change-state_982
[a8a5302 | 2008-03-24 02:13:22 UTC] Scott Chacon <[email protected]>
* added ticket 1206382402_dont-allow-blank-tags_237
[8723800 | 2008-03-24 02:08:45 UTC] Scott Chacon <[email protected]>
* added ticket 1206382125_ticket-search_862
[d09ed5b | 2008-03-24 02:08:09 UTC] Scott Chacon <[email protected]>
* added ticket 1206382088_order-on-the-beginning-of-a-tag_384
[793239b | 2008-03-23 04:58:26 UTC] Scott Chacon <[email protected]>
* added ticket 1206305906_lighthouse-sync_173
[3519924 | 2008-03-23 04:57:39 UTC] Scott Chacon <[email protected]>
* added ticket 1206305858_automated-tests_807
[ba03636 | 2008-03-23 04:18:06 UTC] Scott Chacon <[email protected]>
* fixed up for usage, gem install works now
[b7ddb24 | 2008-03-23 04:17:40 UTC] Scott Chacon <[email protected]>
* added state (open) to ticket 1206206444_remove-a-ticket_143
[c8b979c | 2008-03-23 03:33:05 UTC] Scott Chacon <[email protected]>
* added state (hold) to ticket 1206206444_remove-a-ticket_143
[cc08b7b | 2008-03-23 03:20:26 UTC] Scott Chacon <[email protected]>
* fixed issue with first time in blank repo
[750aeac | 2008-03-23 03:12:15 UTC] Scott Chacon <[email protected]>
* added changes to correctly create and checkout temp dir when needed
[2268c45 | 2008-03-23 03:11:18 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206207422_change-ticket-assignment_157
[0257e6b | 2008-03-23 02:55:47 UTC] Scott Chacon <[email protected]>
* added state (open) to ticket 1206206747_link-to-a-git-object_972
[f065c2c | 2008-03-23 02:55:43 UTC] Scott Chacon <[email protected]>
* added state (open) to ticket 1206206679_start-web-ui_911
[9901f07 | 2008-03-23 02:52:55 UTC] Scott Chacon <[email protected]>
* added ticket 1206298375_priority-for-ticket_953
[ea747b7 | 2008-03-23 02:50:04 UTC] Scott Chacon <[email protected]>
* added state (resolved) to ticket 1206206220_add-a-milestone_912
[11bb2de | 2008-03-23 02:49:46 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206206220_add-a-milestone_912
[2e1d4e6 | 2008-03-23 02:49:08 UTC] Scott Chacon <[email protected]>
* added state (hold) to ticket 1206206220_add-a-milestone_912
[a7db17c | 2008-03-22 03:00:14 UTC] Scott Chacon <[email protected]>
* started adding milestone stuff
[c8d72c6 | 2008-03-22 01:39:34 UTC] Scott Chacon <[email protected]>
* added comment to ticket 1206207503_checked-out-ticket-changes-when-new-ticket-added_530
[a0b8467 | 2008-03-22 01:39:22 UTC] Scott Chacon <[email protected]>
* added state (resolved) to ticket 1206207503_checked-out-ticket-changes-when-new-ticket-added_530
[d9887da | 2008-03-22 01:38:23 UTC] Scott Chacon <[email protected]>
* added ticket 1206207503_checked-out-ticket-changes-when-new-ticket-added_530
[2c594af | 2008-03-22 01:37:02 UTC] Scott Chacon <[email protected]>
* added ticket 1206207422_change-ticket-assignment_157
[1dc7bbc | 2008-03-22 01:35:27 UTC] Scott Chacon <[email protected]>
* added tags (next) to ticket 1206206220_add-a-milestone_912
[5100c9f | 2008-03-22 01:35:21 UTC] Scott Chacon <[email protected]>
* removed tags (next) from ticket 1206206166_download-attached-file_112
[aed3743 | 2008-03-22 01:35:19 UTC] Scott Chacon <[email protected]>
* removed tags (next) from ticket 1206206148_add-attachment-to-ticket_138
[a1515a9 | 2008-03-22 01:32:05 UTC] Scott Chacon <[email protected]>
* added state (hold) to ticket 1206206747_link-to-a-git-object_972
[d707b1b | 2008-03-22 01:31:44 UTC] Scott Chacon <[email protected]>
* added state (hold) to ticket 1206206861_branch-and-merge-ticgit-branch_714
[da4f0dc | 2008-03-22 01:31:40 UTC] Scott Chacon <[email protected]>
* added state (hold) to ticket 1206206905_link-to-another-ticket_714
[5d00ca4 | 2008-03-22 01:31:38 UTC] Scott Chacon <[email protected]>
* added state (hold) to ticket 1206206679_start-web-ui_911
[00750c4 | 2008-03-22 01:31:10 UTC] Scott Chacon <[email protected]>
* added tags (next) to ticket 1206206166_download-attached-file_112
[37b3936 | 2008-03-22 01:31:07 UTC] Scott Chacon <[email protected]>
* added tags (next) to ticket 1206206148_add-attachment-to-ticket_138
[083e620 | 2008-03-22 01:30:29 UTC] Scott Chacon <[email protected]>
* added multiple project support
[171a4d2 | 2008-03-22 01:28:34 UTC] Scott Chacon <[email protected]>
* added tags (ticket) to ticket 1206206747_link-to-a-git-object_972
[d8d4493 | 2008-03-22 01:28:25 UTC] Scott Chacon <[email protected]>
* added ticket 1206206905_link-to-another-ticket_714
[e3667b7 | 2008-03-22 01:27:41 UTC] Scott Chacon <[email protected]>
* added ticket 1206206861_branch-and-merge-ticgit-branch_714
[6900740 | 2008-03-22 01:25:47 UTC] Scott Chacon <[email protected]>
* added ticket 1206206747_link-to-a-git-object_972
[73c31b5 | 2008-03-22 01:24:40 UTC] Scott Chacon <[email protected]>
* added ticket 1206206679_start-web-ui_911
[e290c3a | 2008-03-22 01:22:58 UTC] Scott Chacon <[email protected]>
* added ticket 1206206577_find-the-git-directory-properly-_425
[3706cda | 2008-03-22 01:21:41 UTC] Scott Chacon <[email protected]>
* added ticket 1206206501_improved-cli-support_500
[aee79cb | 2008-03-22 01:20:44 UTC] Scott Chacon <[email protected]>
* added ticket 1206206444_remove-a-ticket_143
[e1e1bc4 | 2008-03-22 01:19:33 UTC] Scott Chacon <[email protected]>
* added tags (ticket) to ticket 1206206327_show-expanded-comments_428
[534a957 | 2008-03-22 01:19:28 UTC] Scott Chacon <[email protected]>
* added tags (tags) to ticket 1206206265_general-tag-management_628
[a4b8ca0 | 2008-03-22 01:19:21 UTC] Scott Chacon <[email protected]>
* added tags (milestone) to ticket 1206206220_add-a-milestone_912
[2e0cd2a | 2008-03-22 01:19:15 UTC] Scott Chacon <[email protected]>
* added tags (attach) to ticket 1206206166_download-attached-file_112
[979d202 | 2008-03-22 01:19:13 UTC] Scott Chacon <[email protected]>
* added tags (attach) to ticket 1206206148_add-attachment-to-ticket_138
[9aea93a | 2008-03-22 01:18:47 UTC] Scott Chacon <[email protected]>
* added ticket 1206206327_show-expanded-comments_428
[ba96a9f | 2008-03-22 01:17:45 UTC] Scott Chacon <[email protected]>
* added ticket 1206206265_general-tag-management_628
[cd6162d | 2008-03-22 01:17:01 UTC] Scott Chacon <[email protected]>
* added ticket 1206206220_add-a-milestone_912
[5765201 | 2008-03-22 01:16:06 UTC] Scott Chacon <[email protected]>
* added ticket 1206206166_download-attached-file_112
[d83b4fb | 2008-03-22 01:15:48 UTC] Scott Chacon <[email protected]>
* added ticket 1206206148_add-attachment-to-ticket_138
[88d92d3 | 2008-03-22 01:14:50 UTC] Scott Chacon <[email protected]>
* creating the ticgit branch
[c1c3407 | 2008-03-22 00:12:03 UTC] Scott Chacon <[email protected]>
* added recent command, which was way cooler and easier than I thought
[49fadb4 | 2008-03-21 15:05:11 UTC] Scott Chacon <[email protected]>
* added saving named lists
[b3852b1 | 2008-03-21 14:51:10 UTC] Scott Chacon <[email protected]>
* added filtering and sorting to list
[ebea6fb | 2008-03-21 14:24:57 UTC] Scott Chacon <[email protected]>
* removed directory structure that was unneccesary
[a92f983 | 2008-03-21 05:08:57 UTC] Scott Chacon <[email protected]>
* commit a long time coming - added comments, tags - moved notes into another dir
[9ac66fb | 2008-03-19 23:33:40 UTC] Scott Chacon <[email protected]>
* refactored the git work so we dont have to checkout each time
[912945b | 2008-03-19 07:26:58 UTC] Scott Chacon <[email protected]>
* got initializing a repo and adding ticgits working
[aa50275 | 2008-03-18 07:04:10 UTC] Scott Chacon <[email protected]>
* changed the readme and added a bunch of notes
[0d0c10e | 2008-03-17 22:58:09 UTC] Scott Chacon <[email protected]>
* added notes of what I want the ui to look like