This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCHANGELOG.txt
975 lines (825 loc) · 28.3 KB
/
CHANGELOG.txt
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
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
Revision: 406
Author: tbdevnet
Date: 15:32:56, 21 February 2011
Message:
21st feb 2011 minor update for bug fixes, typos and added short torrentname function
----
Modified : /trunk/TBDev.Heavy.beta/confirmemail.php
Revision: 405
Author: dorksville
Date: 20:08:52, 20 February 2011
Message:
Small various fixes
----
Modified : /trunk/TBDev.Heavy.beta/details.php
Revision: 404
Author: dorksville
Date: 17:04:00, 20 February 2011
Message:
Added various fixes and new image
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Modified : /trunk/TBDev.Heavy.beta/templates/1/images.rar
Modified : /trunk/TBDev.Heavy.beta/templates/1/template.php
Revision: 403
Author: dorksville
Date: 17:03:22, 20 February 2011
Message:
Added copyright
----
Modified : /trunk/TBDev.Heavy.beta/lang/en/lang_global.php
Revision: 402
Author: tbdevnet
Date: 17:02:41, 20 February 2011
Message:
20th feb 2011 minor update for bug fixes, typos and added short torrentname function
----
Modified : /trunk/TBDev.Heavy.beta/announce.php
Modified : /trunk/TBDev.Heavy.beta/emoticonloader.php
Modified : /trunk/TBDev.Heavy.beta/include/bittorrent.php
Modified : /trunk/TBDev.Heavy.beta/include/config.php
Modified : /trunk/TBDev.Heavy.beta/include/html_functions.php
Modified : /trunk/TBDev.Heavy.beta/include/my_torrenttable_functions.php
Modified : /trunk/TBDev.Heavy.beta/include/torrenttable_functions.php
Modified : /trunk/TBDev.Heavy.beta/install/announce_dist.php
Modified : /trunk/TBDev.Heavy.beta/takelogin.php
Revision: 401
Author: tbdevnet
Date: 00:15:31, 19 February 2011
Message:
19th feb 2011 minor update to move images and corect some paths
----
Modified : /trunk/TBDev.Heavy.beta/chat.php
Modified : /trunk/TBDev.Heavy.beta/donate.php
Modified : /trunk/TBDev.Heavy.beta/emoticonloader.php
Modified : /trunk/TBDev.Heavy.beta/messages.php
Modified : /trunk/TBDev.Heavy.beta/reputation.php
Modified : /trunk/TBDev.Heavy.beta/rules.php
Revision: 400
Author: tbdevnet
Date: 00:14:37, 19 February 2011
Message:
19th feb 2011 minor update to move images and corect some paths
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/template.php
Revision: 399
Author: tbdevnet
Date: 00:14:03, 19 February 2011
Message:
19th feb 2011 minor update to move images and corect some paths
----
Modified : /trunk/TBDev.Heavy.beta/admin/cleanup_manager.php
Modified : /trunk/TBDev.Heavy.beta/admin/rules.php
Modified : /trunk/TBDev.Heavy.beta/admin/usersearch.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_functions.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Modified : /trunk/TBDev.Heavy.beta/include/pager.php
Modified : /trunk/TBDev.Heavy.beta/include/user_functions.php
Modified : /trunk/TBDev.Heavy.beta/lang/en/lang_links.php
Modified : /trunk/TBDev.Heavy.beta/lang/en/lang_rules.php
Modified : /trunk/TBDev.Heavy.beta/lang/en/lang_tags.php
Revision: 398
Author: tbdevnet
Date: 23:19:39, 17 February 2011
Message:
17th feb 2011 minor update to forum_view_default.php & torrenttable_functions.php
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_default.php
Modified : /trunk/TBDev.Heavy.beta/include/torrenttable_functions.php
Revision: 392
Author: tbdevnet
Date: 17:43:54, 16 February 2011
Message:
16th feb 2011 various fixes and bugs squashed
----
Modified : /trunk/TBDev.Heavy.beta/mytorrents.php
Revision: 391
Author: tbdevnet
Date: 17:42:33, 16 February 2011
Message:
16th feb 2011 removed images
----
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images
Revision: 390
Author: tbdevnet
Date: 17:41:50, 16 February 2011
Message:
16th feb 2011 various fixes and bugs squashed
----
Modified : /trunk/TBDev.Heavy.beta/comment.php
Modified : /trunk/TBDev.Heavy.beta/details.php
Modified : /trunk/TBDev.Heavy.beta/forums.php
Modified : /trunk/TBDev.Heavy.beta/modtask.php
Modified : /trunk/TBDev.Heavy.beta/recover.php
Modified : /trunk/TBDev.Heavy.beta/topten.php
Revision: 389
Author: tbdevnet
Date: 17:39:53, 16 February 2011
Message:
16th feb 2011 various fixes and bugs squashed
----
Modified : /trunk/TBDev.Heavy.beta/include/bittorrent.php
Added : /trunk/TBDev.Heavy.beta/include/comment_functions.php
Modified : /trunk/TBDev.Heavy.beta/include/config.php
Added : /trunk/TBDev.Heavy.beta/include/my_torrenttable_functions.php
Modified : /trunk/TBDev.Heavy.beta/include/torrenttable_functions.php
Modified : /trunk/TBDev.Heavy.beta/install/config_dist.php
Revision: 388
Author: tbdevnet
Date: 17:39:03, 16 February 2011
Message:
16th feb 2011 various fixes and bugs squashed
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/subscriptions.php
Modified : /trunk/TBDev.Heavy.beta/forums/topmoods.php
Modified : /trunk/TBDev.Heavy.beta/forums/whodownloaded.php
Revision: 387
Author: tbdevnet
Date: 17:38:34, 16 February 2011
Message:
16th feb 2011 various fixes and bugs squashed
----
Modified : /trunk/TBDev.Heavy.beta/admin/index.php
Modified : /trunk/TBDev.Heavy.beta/admin/moforums.php
Modified : /trunk/TBDev.Heavy.beta/admin/msubforums.php
Revision: 386
Author: tbdevnet
Date: 16:44:44, 16 February 2011
Message:
16th feb 2011 removed images added archive
----
Modified : /trunk/TBDev.Heavy.beta/templates/1
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Added : /trunk/TBDev.Heavy.beta/templates/1/images.rar
Revision: 385
Author: tbdevnet
Date: 16:21:19, 16 February 2011
Message:
16th feb 2011 removed images
----
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/branding_bg.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/button.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/default_thumb.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/error.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/fb_gradient.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/forumicons
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/forums
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/gradient_bg.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/gradient_bp.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/help.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/info.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/key.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/logo.jpg
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/primarynav_bg.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/staff_thumb.gif
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/user_green.png
Deleted : /trunk/TBDev.Heavy.beta/templates/1/images/user_off.png
Revision: 384
Author: tbdevnet
Date: 18:44:04, 13 February 2011
Message:
13th feb 2011 some forum changes & added images/forum & template changes
----
Modified : /trunk/TBDev.Heavy.beta/confirmemail.php
Modified : /trunk/TBDev.Heavy.beta/recover.php
Modified : /trunk/TBDev.Heavy.beta/reputation.php
Modified : /trunk/TBDev.Heavy.beta/takeprofedit.php
Revision: 383
Author: tbdevnet
Date: 18:37:41, 13 February 2011
Message:
13th feb 2011 some forum changes & added images/forum & template changes
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_delete.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_delete_poll.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_delete_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_poll_functions.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_update_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/forums.shit.php
Revision: 382
Author: tbdevnet
Date: 18:08:14, 13 February 2011
Message:
13th feb 2011 some forum changes & added images/forum & template changes
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_delete.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_delete_poll.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_delete_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_make_poll.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_poll_functions.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_update_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/forums.shit.php
Added : /trunk/TBDev.Heavy.beta/templates/1/images/forums
Modified : /trunk/TBDev.Heavy.beta/templates/1/template.php
Revision: 381
Author: tbdevnet
Date: 19:49:54, 12 February 2011
Message:
12th feb 2011 nfo changes
----
Modified : /trunk/TBDev.Heavy.beta/takeedit.php
Modified : /trunk/TBDev.Heavy.beta/takeupload.php
Revision: 380
Author: tbdevnet
Date: 16:39:54, 12 February 2011
Message:
12th feb 2011 continuing forum fixes and style changes
----
Modified : /trunk/TBDev.Heavy.beta/install/sql/mysql_tables.php
Revision: 379
Author: tbdevnet
Date: 15:59:23, 12 February 2011
Message:
12th feb 2011 continuing forum fixes and style changes
----
Modified : /trunk/TBDev.Heavy.beta/forums.php
Revision: 378
Author: tbdevnet
Date: 15:58:45, 12 February 2011
Message:
12th feb 2011 continuing forum fixes and style changes
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Revision: 377
Author: tbdevnet
Date: 15:57:07, 12 February 2011
Message:
12th feb 2011 continuing forum fixes and style changes
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_search.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/usermood.php
Revision: 376
Author: tbdevnet
Date: 15:24:16, 12 February 2011
Message:
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Revision: 375
Author: tbdevnet
Date: 15:16:43, 12 February 2011
Message:
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Revision: 374
Author: tbdevnet
Date: 01:27:20, 12 February 2011
Message:
12th feb 2011 commited first run of install directory
----
Added : /trunk/TBDev.Heavy.beta/install
Added : /trunk/TBDev.Heavy.beta/install/1.css
Added : /trunk/TBDev.Heavy.beta/install/announce_dist.php
Added : /trunk/TBDev.Heavy.beta/install/config_dist.php
Added : /trunk/TBDev.Heavy.beta/install/img
Added : /trunk/TBDev.Heavy.beta/install/img/tbdev_btn_red.png
Added : /trunk/TBDev.Heavy.beta/install/index.php
Added : /trunk/TBDev.Heavy.beta/install/sql
Added : /trunk/TBDev.Heavy.beta/install/sql/mysql_inserts.php
Added : /trunk/TBDev.Heavy.beta/install/sql/mysql_tables.php
Revision: 373
Author: dorksville
Date: 21:07:37, 11 February 2011
Message:
11th Feb - Couple of fixes
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Revision: 372
Author: dorksville
Date: 21:07:14, 11 February 2011
Message:
11th Feb - Couple of fixes
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Revision: 371
Author: dorksville
Date: 18:38:17, 11 February 2011
Message:
Moved roundedCorners
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/essentials.css
Revision: 370
Author: dorksville
Date: 18:35:56, 11 February 2011
Message:
Couple more changes
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Revision: 369
Author: dorksville
Date: 17:48:02, 11 February 2011
Message:
11th Feb - Optimized a little
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Revision: 368
Author: dorksville
Date: 17:08:39, 11 February 2011
Message:
Tidied up a little
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/facebox.css
Revision: 367
Author: tbdevnet
Date: 00:26:33, 11 February 2011
Message:
10th feb 2011 small fixes and updates etc forums & frontpage stats etc
----
Modified : /trunk/TBDev.Heavy.beta/index.php
Revision: 366
Author: tbdevnet
Date: 00:26:03, 11 February 2011
Message:
----
Added : /trunk/TBDev.Heavy.beta/templates/1/facebox.css
Revision: 365
Author: tbdevnet
Date: 00:25:25, 11 February 2011
Message:
10th feb 2011 small fixes and updates etc forums & frontpage stats etc
----
Added : /trunk/TBDev.Heavy.beta/templates/1/images/forumicons/closelabel.png
Added : /trunk/TBDev.Heavy.beta/templates/1/images/forumicons/loading.gif
Added : /trunk/TBDev.Heavy.beta/templates/1/images/forumicons/offline.gif
Added : /trunk/TBDev.Heavy.beta/templates/1/images/forumicons/online.gif
Revision: 364
Author: tbdevnet
Date: 00:18:59, 11 February 2011
Message:
10th feb 2011 small fixes and updates etc forums & frontpage stats etc
----
Modified : /trunk/TBDev.Heavy.beta/cache
Deleted : /trunk/TBDev.Heavy.beta/cache/forum.txt
Deleted : /trunk/TBDev.Heavy.beta/cache/stats.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Modified : /trunk/TBDev.Heavy.beta/include/bbcode_functions.php
Modified : /trunk/TBDev.Heavy.beta/include/bittorrent.php
Modified : /trunk/TBDev.Heavy.beta/include/cleanup/frontpage_stats.php
Modified : /trunk/TBDev.Heavy.beta/include/config.php
Added : /trunk/TBDev.Heavy.beta/scripts/facebox.js
Added : /trunk/TBDev.Heavy.beta/scripts/jquery.js
Revision: 363
Author: dorksville
Date: 20:56:47, 10 February 2011
Message:
Couple of changes more to come
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Revision: 362
Author: tbdevnet
Date: 19:33:07, 10 February 2011
Message:
10th feb 2011 little fixes
----
Modified : /trunk/TBDev.Heavy.beta/forums.php
Revision: 361
Author: tbdevnet
Date: 17:38:25, 10 February 2011
Message:
10th feb 2011 little fixes
----
Modified : /trunk/TBDev.Heavy.beta/SQL/full_table_structure.sql
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Revision: 360
Author: tbdevnet
Date: 00:32:57, 10 February 2011
Message:
9th feb 2011 little fixes for theme / news.php
----
Modified : /trunk/TBDev.Heavy.beta/admin/news.php
Modified : /trunk/TBDev.Heavy.beta/admin/themes.php
Revision: 359
Author: tbdevnet
Date: 23:05:21, 09 February 2011
Message:
9th feb 2011 little fixes for theme manager
----
Modified : /trunk/TBDev.Heavy.beta/admin/themes.php
Revision: 358
Author: tbdevnet
Date: 22:45:04, 09 February 2011
Message:
9th feb 2011 many, many, many forum fixes (too many to mention)
----
Modified : /trunk/TBDev.Heavy.beta/include/bittorrent.php
Revision: 357
Author: tbdevnet
Date: 22:10:20, 09 February 2011
Message:
----
Added : /trunk/TBDev.Heavy.beta/templates/1/images/forumicons
Revision: 356
Author: tbdevnet
Date: 21:58:44, 09 February 2011
Message:
9th feb 2011 many, many, many forum fixes (too many to mention)
----
Modified : /trunk/TBDev.Heavy.beta/forums.php
Modified : /trunk/TBDev.Heavy.beta/include/html_functions.php
Revision: 355
Author: tbdevnet
Date: 21:55:00, 09 February 2011
Message:
9th feb 2011 many, many, many forum fixes (too many to mention)
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_edit_post.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_new_topic.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_post.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_post_functions.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_reply.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Revision: 354
Author: tbdevnet
Date: 14:56:28, 09 February 2011
Message:
9th feb 2011 template & style fixes, continued forum rework
----
Modified : /trunk/TBDev.Heavy.beta/forums.php
Modified : /trunk/TBDev.Heavy.beta/my.php
Modified : /trunk/TBDev.Heavy.beta/pic.rar
Revision: 353
Author: tbdevnet
Date: 14:50:18, 09 February 2011
Message:
9th feb 2011 template & style fixes, continued forum rework
----
Modified : /trunk/TBDev.Heavy.beta/include/bittorrent.php
Modified : /trunk/TBDev.Heavy.beta/include/config.php
Revision: 352
Author: tbdevnet
Date: 14:49:16, 09 February 2011
Message:
----
Deleted : /trunk/TBDev.Heavy.beta/images
Revision: 351
Author: tbdevnet
Date: 14:48:14, 09 February 2011
Message:
9th feb 2011 template & style fixes, continued forum rework
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_functions.php
Added : /trunk/TBDev.Heavy.beta/forums/forum_mod_panel.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_parent_view.php
Added : /trunk/TBDev.Heavy.beta/forums/forum_poll_functions.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_post_functions.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_default.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Added : /trunk/TBDev.Heavy.beta/forums/forum_whodownloaded.php
Added : /trunk/TBDev.Heavy.beta/forums/forums.shit.php
Deleted : /trunk/TBDev.Heavy.beta/forums/forums_whodownloaded.php
Revision: 350
Author: tbdevnet
Date: 14:41:39, 09 February 2011
Message:
----
Deleted : /trunk/TBDev.Heavy.beta/pic
Revision: 349
Author: dorksville
Date: 17:39:39, 08 February 2011
Message:
Updated the grey
----
Modified : /trunk/TBDev.Heavy.beta/admin/cleanup_manager.php
Revision: 348
Author: tbdevnet
Date: 17:17:37, 08 February 2011
Message:
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/1.css
Revision: 347
Author: dorksville
Date: 17:13:06, 08 February 2011
Message:
Re-added table
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/essentials.css
Revision: 346
Author: dorksville
Date: 17:05:59, 08 February 2011
Message:
----
Modified : /trunk/TBDev.Heavy.beta/templates/1/essentials.css
Revision: 342
Author: dorksville
Date: 18:31:20, 07 February 2011
Message:
----
Deleted : /trunk/TBDev.Heavy.beta/lang_topten.php
Revision: 341
Author: tbdevnet
Date: 18:19:08, 07 February 2011
Message:
moved sql to sql dir
----
Added : /trunk/TBDev.Heavy.beta/SQL/full_table_structure.sql (Copy from path: /trunk/TBDev.Heavy.beta/forums/full_table_structure.sql, Revision, 340)
Deleted : /trunk/TBDev.Heavy.beta/forums/full_table_structure.sql
Revision: 340
Author: tbdevnet
Date: 18:03:26, 07 February 2011
Message:
removed installer temporarily
----
Deleted : /trunk/TBDev.Heavy.beta/install
Revision: 339
Author: tbdevnet
Date: 18:02:00, 07 February 2011
Message:
updated forums and added tracker complete structure as-is
----
Modified : /trunk/TBDev.Heavy.beta/forums.php
Revision: 338
Author: tbdevnet
Date: 18:01:22, 07 February 2011
Message:
updated forums and added tracker complete structure as-is
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_functions.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_default.php
Added : /trunk/TBDev.Heavy.beta/forums/full_table_structure.sql
Revision: 337
Author: tbdevnet
Date: 17:28:48, 07 February 2011
Message:
updated
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_functions.php
Revision: 336
Author: tbdevnet
Date: 17:03:17, 07 February 2011
Message:
updated
----
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_default.php
Modified : /trunk/TBDev.Heavy.beta/forums/forum_view_topic.php
Revision: 334
Author: tbdevnet
Date: 15:24:41, 07 February 2011
Message:
moved
----
Deleted : /tags/TBDev.Heavy.beta
Added : /trunk/TBDev.Heavy.beta (Copy from path: /tags/TBDev.Heavy.beta, Revision, 333)
Revision: 332
Author: dorksville
Date: 10:32:37, 07 February 2011
Message:
----
Deleted : /tags/TBDev.Heavy.beta/essentials.css
Revision: 331
Author: dorksville
Date: 10:31:45, 07 February 2011
Message:
Countries re-aligned
----
Modified : /tags/TBDev.Heavy.beta/topten.php
Revision: 330
Author: dorksville
Date: 10:29:58, 07 February 2011
Message:
Altered CSS
----
Modified : /tags/TBDev.Heavy.beta/templates/1/essentials.css
Revision: 325
Author: tbdevnet
Date: 15:00:06, 06 February 2011
Message:
----
Added : /tags/TBDev.Heavy.beta/index.php
Revision: 324
Author: tbdevnet
Date: 14:50:01, 06 February 2011
Message:
Tag Created
----
Added : /tags/TBDev.Heavy.beta
Revision: 306
Author: tbdevnet
Date: 01:50:09, 10 January 2011
Message:
10 January 2011 various fixes, addons and changes.
----
Added : /trunk/TB/cache/stats.php
Revision: 305
Author: tbdevnet
Date: 01:47:22, 10 January 2011
Message:
10 January 2011 various fixes, addons and changes.
Revision: 304
Author: tbdevnet
Date: 01:43:10, 10 January 2011
Message:
10 January 2011 various fixes, addons and changes.
----
Revision: 303
Author: tbdevnet
Date: 01:31:41, 10 January 2011
Message:
10 January 2011 various fixes, addons and changes.
----
Modified : /trunk/TB/install/announce_dist.php
Modified : /trunk/TB/install/index.php
Added : /trunk/TB/scripts/bbcode2text.js
Revision: 302
Author: tbdevnet
Date: 01:27:04, 10 January 2011
Message:
10 January 2011 various fixes, addons and changes.
----
Modified : /trunk/TB/lang/en/lang_ad_index.php
Added : /trunk/TB/lang/en/lang_ad_rules.php
Revision: 301
Author: tbdevnet
Date: 01:26:05, 10 January 2011
Message:
10 January 2011 various fixes, addons and changes.
----
Revision: 300
Author: tbdevnet
Date: 01:25:02, 10 January 2011
Message:
10 January 2011 various fixes, addons and changes.
----
Revision: 299
Author: tbdevnet
Date: 20:09:04, 06 January 2011
Message:
06 January 2011 changed ereg to preg_
----
Modified : /trunk/TB/announce.php
Revision: 298
Author: tbdevnet
Date: 23:38:37, 01 January 2011
Message:
1st January 2011 added missing field donoruntil
----
Modified : /trunk/TB/install/sql/mysql_tables.php
Revision: 297
Author: tbdevnet
Date: 19:48:18, 29 December 2010
Message:
29th December 2010 added rezize_image
----
Modified : /trunk/TB/modtask.php
Revision: 296
Author: tbdevnet
Date: 22:55:45, 19 December 2010
Message:
19th December 2010 added installer to svn consider as beta
----
Revision: 295
Author: tbdevnet
Date: 22:24:48, 07 December 2010
Message:
7th December 2010 small changes various fix's
----
Modified : /trunk/TB/chat.php
Revision: 294
Author: tbdevnet
Date: 17:40:04, 07 December 2010
Message:
7th December 2010 small changes various fix's
----
Modified : /trunk/TB/include/config.php
Revision: 293
Author: tbdevnet
Date: 17:34:14, 07 December 2010
Message:
7th December 2010 small changes various fix's
----
Modified : /trunk/TB/download.php
Modified : /trunk/TB/include/config.php
Deleted : /trunk/TB/pic
Modified : /trunk/TB/scrape.php
Modified : /trunk/TB/takeupload.php
Revision: 292
Author: tbdevnet
Date: 16:21:53, 07 December 2010
Message:
7th December 2010 small changes various fix's
----
Revision: 287
Author: tbdevnet
Date: 15:37:48, 21 April 2010
Message:
21st April 2010 update to takeprofedit & confirmemail.php fix
----
Modified : /trunk/TB/confirmemail.php
Modified : /trunk/TB/takeprofedit.php
Revision: 286
Author: tbdevnet
Date: 01:11:00, 17 April 2010
Message:
16th April 2010 other small changes
----
Modified : /trunk/TB/forums/forum_functions.php
Modified : /trunk/TB/forums/forum_topicview.php
Modified : /trunk/TB/forums/forum_view.php
Revision: 285
Author: tbdevnet
Date: 11:40:25, 15 April 2010
Message:
14th April 2010 Removed bark(0 and other small changes
----
Modified : /trunk/TB/include/bittorrent.php
Revision: 284
Author: tbdevnet
Date: 23:25:33, 14 April 2010
Message:
14th April 2010 Removed bark(0 and other small changes
----
Modified : /trunk/TB/lang/en/lang_ad_index.php
Modified : /trunk/TB/lang/en/lang_global.php
Modified : /trunk/TB/lang/en/lang_my.php
Modified : /trunk/TB/my.php
Revision: 283
Author: tbdevnet
Date: 22:07:16, 14 April 2010
Message:
14th April 2010 Removed bark(0 and other small changes
----
Modified : /trunk/TB/delete.php
Modified : /trunk/TB/include/bbcode_functions.php
Modified : /trunk/TB/include/bittorrent.php
Modified : /trunk/TB/takeedit.php
Modified : /trunk/TB/takelogin.php
Modified : /trunk/TB/takeprofedit.php
Modified : /trunk/TB/takerate.php
Modified : /trunk/TB/takesignup.php
Modified : /trunk/TB/userdetails.php
Revision: 282
Author: tbdevnet
Date: 16:43:11, 19 March 2010
Message:
19th March 2010 Scrape update added single scrape and min interval flags
----
Modified : /trunk/TB/scrape.php
Revision: 281
Author: tbdevnet
Date: 16:40:13, 19 March 2010
Message:
19th March 2010 Scrape update added single scrape and min interval flags
----
Modified : /trunk/TB/scrape.php
Revision: 280
Author: tbdevnet
Date: 13:33:45, 27 February 2010
Message:
----
Modified : /trunk/TB/include/bittorrent.php
Revision: 279
Author: tbdevnet
Date: 13:09:55, 27 February 2010
Message:
Imfamous quote from bvlisp - Wolfman - [12-02-10 16:23] wolfman: i can put up a synflood with 200 000 conections and see hove it handles if u like - You're so busted ha ha ha ha!
----
Added : /trunk/TB (Copy from path: /trunk/tbdev, Revision, 278)
Deleted : /trunk/tbdev
Revision: 278
Author: tbdevnet
Date: 13:05:46, 27 February 2010
Message:
Imfamous quote from bvlisp - Wolfman - [12-02-10 16:23] wolfman: i can put up a synflood with 200 000 conections and see hove it handles if u like - You're so busted ha ha ha ha!
Revision: 277
Author: tbdevnet
Date: 12:49:07, 27 February 2010
Message:
Imfamous quote from bvlisp - Wolfman - [12-02-10 16:23] wolfman: i can put up a synflood with 200 000 conections and see hove it handles if u like - You're so busted ha ha ha ha!
----
Added : /trunk/tbdev
2004-05-26 - wyz - Security fix in userdetails.php. Avatar field was not being escaped, html injection was possible (confirmed).
2004-05-26 - rb - userdetails: added seeder/leecher count and did some optimizations.
2004-05-25 - wyz - Comments editing added. Added comment.php, removed takecomment.php, addcomment.php, deletecomment.php. Altered details.php, bittorrent.php.
2004-05-25 - rb - Share ratio changed to 3 decimals in userdetails and details.
2004-05-22 - rb - Added a 'revived' column to the peers (database) table. Set to "yes" if the event is not "start" and the peer is not found in the database. This replaces the "Peer not found" error message which seemed to cause quite some problems.
2004-05-21 - rb - Made download speed static for seeders.
2004-05-18 - wyz - Passwords are no longer stored in cleartext: altered adduser.php, confirm.php, delacct.php, recover.php, takelogin.php, takeprofedit.php, takesignup.php, bittorrent.php. Database: new field passhash in users.
2004-05-18 - rb - Added "Client" column to peers table.
2004-05-18 - rb - Added upload/download "Avg. Rate" columns to the peers table in details.php.
2004-05-17 - wyz - Detail changes to forums.php (On editing, redirect to edited post; on deleting, redirect to previous post; "top" anchor; show "quote" button to moderators in locked topics).
2004-05-15 - wyz - More more extensive stats available to PUs. Altered topten.php.
2004-05-15 - wyz - Stronger category filtering on browse page. Altered browse.php, my.php, takeprofedit.php.
2004-05-14 - wyz - Altered announce.php. Seeders are now also subject to delay (in order to avoid an exploit).
2004-05-12 - wyz - Altered stats.php, added total uploaded by country.
2004-05-12 - wyz - Introduced 'friends' and 'blocks', for now for PM filtering purposes (the old 'all' is now 'all except blocked', and there's an accept 'from friends only' option). Altered my.php, userdetails.php, takemessage.php, takeprofedit.php. Added friends.php. Database: acceptpms changed from enum('yes','no') to enum ('yes','friends','no').
2004-05-12 - wyz - Added time-limited warnings. Altered userdetails.php, modtask.php, cleanup.php. Database: 'warnedat' changed to 'warneduntil' in table users.
2004-05-12 - wyz - Changes to polls: ability to edit and delete them, extra choice on sorting. Altered polls.php, makepoll.php, index.poll. Database: extra field 'sort' in table polls.
2004-05-12 - rb - Moved a few backup files out of the source tree.
2004-05-12 - rb - Fixed a security hole in bitbucket-upload.php which could allow an attacker to run his own PHP code.
2004-05-11 - rb - Moderators and higher may now post replies in locked topics.
2004-05-07 - wyz - Altered global.php (fixed "quotes within quotes").
2004-05-06 - wyz - Altered userdetails.php, userhistory.php (PUs or above can now see their own post/comment history);
2004-05-04 - wyz - Altered announce.php (Minor bug fix: users with dl = 0 would be delayed no matter what the upload); Altered browse.php (added "wait" column).
2004-05-03 - rb - Cleanup interval changed to 15 mins
2004-05-03 - rb - Removed archive feature.
2004-05-02 - wyz - Altered forums.php (posts in locked threads may no longer be edited by poster); Altered global.php (new smilies :D); Altered inbox.php (minor redirection problem fixed).
2004-05-01 - wyz - Added news.php; Altered index.php (polls always have an option "Blank vote (a.k.a. "I just want to see the results!"" at the end. Changed code accordingly to not count those votes. News moved to database.); Database: Added news table.
2004-05-30 - wyz - Altered modtask.php; it now automatically adds a comment to the profile on (pro|de)moting, warning, (en|dis)abling; Altered forums.php; the warning icon is now a link to the appropriate rules section; usersearch.php; search by 'warned' status;
2004-04-29 - wyz - Altered takeprofedit.php, deletemessage.php, my.php, inbox.php, sendmessage.php, takemessage.php. ("Sentbox"); Database: added 'location' field to messages (in, out, both); added 'savepms', 'deletepms' to users (so they can choose default values).
2004-04-21 - wyz - Altered testip.php (accept GET requests), corrections in usersearch.php.
2004-04-20 - wyz - Added usersearch.php, userhistory.php, stats.php.