forked from nZEDb/nZEDb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog
executable file
·5629 lines (5480 loc) · 297 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
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
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
* Note *
Pull requests will be accepted *only* against the dev branch, except for feature branch
fixes/enhancements, in which case they should be against that branch.
Please make sure any PR's comply with our coding standards policy:
http://li3.me/docs/specs/accepted/LSR-0-coding.md
New updates are grouped by person (committer/merger), at the top of the file.
All entries are dated according to merging into the code in dev branch. THIS MEANS THE CODE MAY
NOT BE PRESENT IN THE STABLE BRANCH
For details of when a commit makes it into the stable branch see the ReleaseNotes file.
2020-06-01 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.22.0
2020-05-28 niel
Chg: Update dependencies. In particular a fix for security bug in PHPMailer.
2020-01-06 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.21.0
2019-10-31 niel
Fix: Update url for IMDb images.
2019-10-24 niel
Mrg: PR 2646, from JReming85 - Update Charisma theme's profileedit.tpl.
Fix: Code Style.
2019-10-18 niel
Fix: Another attempt to deal with the bad URL for cover images issue (2637). This time I'm not
trying to juggle the output from the db, instead we try to make sure that new images have
the correct IMDb id size. I will be writing a script to rename image files with id number
less than 8 characters.
2019-10-15 niel
Fix: Further fix the regex to be more specific.
2019-10-14 niel
Fix: Tighten up regex used to Categorise MP3s, to avoid false positives. (Closes Issue 2642).
2019-10-08 niel
Fix: Refactor function to check a file path for readabilty. (Closes Issue 2641)
2019-10-07 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.20.0
2019-10-02 niel
Fix: Install failing to create PROCEDURES during database initialisation.
Chg: Update dependencies.
2019-09-19 niel
Fix: Force Movies::getMovieRange() to return imdbid without leading zeroes. (Closes Issue 2637).
2019-09-06 niel
Chg: Updated Lithium framework to official 1.2 version (we've been using a custom version to
provide PHP 7.3 support).
2019-09-06 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.19.0
2019-07-21 niel
Fix: .../nzedb/NameFixer.php, Convert 'continue' to 'break' in switch statement.
2019-07-19 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.18.3
2019-07-19 niel
Fix: Missing ',' in SQL, hopefully reduce overhead formatting 'Message-Id'. Closes Issue 2633.
2019-07-18 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.18.2
2019-07-18 niel
Fix: Force NNTP headers to title case (Upper-case first letter, the rest lower-case. (Closes
Issue 2632).
2019-07-18 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.18.1
2019-07-18 niel
Fix: Remove include_once that was made superfluous.
Chg: 'Optimisations' for NNTP::getXOVER().
2019-07-18 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.18.0
2019-07-18
Fix: Ensure DB.php has Settings.php loaded if available.
2019-07-17 DariusIII
Chg: Add newznab:apilimit to API and RSS XML response with limits and current api hits and grabs
2019-06-19 niel
Mrg: PR 2631, from Wally73 - Update movie-add.php for larger IMDb IDs.
2019-06-03 niel
Fix: Increase size of imdbid fields in movieinfo, releases, and user_movies tables to bring us
inline with IMDb's latest entries.
2019-06-03 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.17.0
2019-06-02 niel
Add: Phinx package to handle Db updates in future.
2019-05-09 niel
Add: Backport change from CakePHP/Laravel that copies TSV files to /tmp before trying to LOAD
INFILE them. This should resolve any permission issues as /tmp is readable by anyone by
default.
2019-03-25 niel
Fix: Reduce the size of tmux table's 'value' column from 19000 to a more reasonable size (1000).
2019-03-04 niel
Fix: Update some regexes that were using invalid syntax. This will prevent them from being
flagged as the errors they are with PCRE2 in PHP 7.3+.
2019-03-03 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.16.0
2019-03-01 niel
Fix: Use correct object to check for video duration. Closes issue 2625
2019-02-06 niel
Fix: Use absolute paths for version specific configuration files, in tmux.conf. Closes issue 2623.
2019-02-04 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.15.0
2019-01-12 niel
Fix: Update search suffix for poppcorn searches. Closes issue 2620.
2019-01-07 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.14.0
2019-01-05 Bart39
Fix: Invalid object type in ProcessAdditional::getMediaInfo.
2018-12-27 niel
Fix: Use empty() to check for '' and NULL for filename in NameFixer::matchPredbFiles().
2018-12-24 niel
Fix: Removed extra tab in categories tsv file that caused XXX->UHD to have incorrect parent ID.
Chg: Increased size of xref field in collections and multigroup_collections to avoid truncation.
**NOTE** There is no patch for existing installs yet. This will be coming when I get my
backup server fixed as it handles validating the SQL etc.
2018-12-20 niel
Fix Correct pd.predate to pd.created in viewnzb.tpl file for Alpha and Default themes
2018-12-19 niel
Chg: Add 'z' to regexes detecting RAR parts i.e. z01 as a suffix.
2018-12-11 DariusIII
Fix: Fix inserting of new mediainfo xml into releaseextrafull table (fixes issue #2609)
2018-12-10 niel
Fix: PHP Fatal error: Uncaught TypeError: Argument 1 passed to nzedb\NameFixer::nzedb.
2018-12-03 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.13.0
2018-11-27 niel
Fix: New groups not respecting number of days/posts to initialise with and then starting from
first header on the server.
2018-11-21 niel
Fix: Correct categories table data for Book entries.
2018-11-16 niel
Fix: Add pagination links to Alpha, Charisma, Gamma, Gentele, and Omicron Themes for Browse
Groups page.
2018-11-11 niel
Fix: Attempt to improve accuracy of PreDb matching. Addresses issue 2568.
2018-11-05 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.12.0
2018-10-30 niel
Mrg: fix-mediainfo branch. Adds support for mediaInfo's new format in v17.12+
2018-10-27 niel
Fix: Post-decrement (instead of pre-decrement) $total dumps counter to make it correct for
output. This will prevent the "-1 dumps remaining message".
2018-10-23 niel
Add: New anime title regex in PPA to capture more titles correctly.
Chg: Altered 'Complete Sequential' to 'Custom Sequential' in tmux settings, to avoid confusion
of people thinking it is more complete than Simple.
Chg: Update meaning of type field in videos table.
Add: Videos controller, model, and tests.
2018-10-17 niel
Fix: Make generic music subject regex actually match the example. Simplify returns for
CollectionsCleaning::generic() method.
Fix: Remove $this->e0. No need to duplicate the constant.
2018-10-12 niel
Chg: Rename updateTimeCheck function to updatedRecently. Change it to return true if the entry
was updated within the last week, false otherwise.
2018-10-03 niel
Fix: Make sure newly activated groups have TPG tables, if TPG mode is enabled and MGR mode is not.
2018-10-02 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.11.0
2018-09-18 niel
Fix: Updated scripts in .../misc/testing/DB to use modern require_once syntax (instead of
nesting multiple dirname() calls. Also added a new require_once to two scripts that need
.../configuration/settings.php to run. Note they will cause an error if the file does not
exist, but it should be obvious to the user what the problem is.
If any other scripts are complaining about missing nZEDb_* or other constants let me know
and I'll update them as well.
2018-09-03 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.10.0
2018-07-31 niel
Mrg: Bring in updates for PHP 7.2 compatibility.
***NOTE*** You *must* run `composer install` manually as the lithium framework version has
changed and your current one will not have some of the new stuff that this update adds.
2018-07-30 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.9.0
2018-07-18 niel
Fix: Check for whether $active is null, as empty also includes false.
2018-07-17 niel
Fix: \app\models\Groups::getRange() to correctly handle pagination and filtering by a groupname.
Fix: Query string for group (in)active pages pagination.
Fix: Quotation marks around $groupname need to be double, not single.
2018-07-13 Bart39
Fix: undefined index 'groupname' for Admin grouplist active/inactive pages.
Fix: Admin grouplist inactive page returning active groups.
2018-07-13 niel
Fix: app\models\Groups::getBackfilling() to return array of groups filtered by active and
backfill state.
Fix: Check for valid RecordSet returning it, or an empty array otherwise.
2018-07-11 Bart39
Fix: Typo in querying database timezone.
Chg: Add categorization for a.b.sounds.
Chg: Search for all other/unknown categories (not just Misc>Other) when trying to fix names.
using Par2.
Chg: Strip '00-' from searchname (mostly music titles) when parsing Par2 for a better name.
2018-07-04 niel
Chg: Removed release counts, for the themes that used it, on group list templates.
2018-07-04 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.8.1
2018-07-04 niel
Fix: Switch other theme templates to use the new $pagertotalitems pager count variable for
browsegroups.php
2018-07-03 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.8.0
2018-07-02 niel
Fix: Admin group list active/inactive pages broken by commit 8b5235b8.
2018-06-19 niel
**NOTE** After updating you may have to do `composer install && ./zed update nzedb` to get things
working again.
Fix: Update ./zed command to switch directories, so that lithium considers it part of the main
app. This is necessary as lithium v1.2 treats the commands differently if outside the 'app'
directory, breaking our console commands because of the use of a model in
app/config/connections.php.
Chg: Updated base Lithium Framework 'app' files to latest v1.2 versions (again).
Fix: Wrap LITHIUM_APP_PATH and LITHIUM_LIBRARY_PATH in "if defined" check to prevent clash
caused by the way Lithium handles console commands when not started from inside the app
hierarchy.
Chg: Remove support for simple_php_yenc_decode extension as it doesn't support PHP 7+.
2018-06-16 niel
Chg: Merging in lithium v1.2 (dev-li3-v1.2 branch) changes into dev.
2018-06-12 niel
Fix: Correct use statement for Groups model.
2018-06-08 niel
Fix: Correct calls of isValidGroup to isValidName for Groups model.
2018-06-07 niel
Mrg: dev-groups This branch brings changes to how the groups table is used. A new Groups Model
is now the default way to access it. The older methods still work but are deprecated and
will be removed in the future.
2018-04-23 niel
Chg: Remove 'releases' column from groups listing and browse group.
2018-06-04 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.7.0
2018-05-25
Fix: Replacing last use of each() in nZEDb code. Note that two libraries (forkdaemon and
guzzlehttp/promises) still use it however.
2018-05-08 niel
Chg: Increase size of 'xref' column in collections' tables due to some larger sizes reported.
2018-05-07 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.6.0
2018-05-03 niel
Chg: Remove unnecessary '\n' from start of 'release have been disabled/terminated by Releases'
2018-05-02 niel
Fix: Added statement termination (';') to Tmux main window update strings. Prevents the shell
from interpreting them as one statement.
2018-04-16 niel
Mrg: dev-console-command-verify branch. This adds the 'tpg' option (to './zed verify tables'
sub-command), which checks for missing tables of active groups. It does not delete tables of
inactive groups.
2018-04-05 niel
Fix: Missing PHPMailer object creation.
2018-04-02 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.5.0
2018-03-23 niel
Fix: Namespace issue for PHPMailer class.
Chg: Refactored Misc::sendEmail() to use provided $from address as the 'reply-to' field (and to
make reading it easier.
2018-03-05 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.4.0
2018-02-27 niel
Mrg: dev-phpmailer-migration branch. This upgrades the code to use v6.0 of PHPMailer.
2018-02-23 niel
Mrg: PR 2571, from lawsontyler - GitHub Issue 2530 - Use the existing function that updates git
2018-02-01 niel
Upd: Updated dependencies.
Chg: Refactored verify console command to use sub-commands like lithium's g11n console command.
2018-01-08 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.3.0
2017-12-21 niel
Add: Merging in dev-allasmgr. This adds the option to treat ALL groups as Multigroup.
2017-12-18 niel
Chg: Additional info for debugging timezone problems.
2017-12-15 niel
Fix: Added a check in the connection detection code, to only display "No connection configured"
message when debug mode is enabled. This prevents it being shown during the install
procedure by default.
2017-12-08 niel
Fix: Bad logic that caused "No connection defined" message for valid configurations.
Chg: Deleted misc/testing/Tests/verify_time_settings as differences in various settings is
irrelevant now.
Chg: Removing obsolete sources for IRCScraper settings.
2017-12-03 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.2.0
2017-11-13
Fix: Use fully namespaced class name for Misc, to avoid not found exception for some users.
2017-11-12 niel
Fix: Removed LOWER() from username checks in SQL, as usernames should always be case-sensitive.
2017-11-11 niel
Mrg: PR 2546, from Wally73 - Update Configure.php for new settings.php version.
2017-11-09 niel
Fix: Correct status code for "Missing parameter (apikey)" redirect.
Mrg: dev-maintainance-mode.
**NOTE** This requires that you update your settings.php file. There are two things to
change.
1) the version number from 4 to 5. Near the top of the file.
2) The addition of the maintenance mode constants near the bottom of the file. This
is optional, but it is wise to add them.
Chg: Removed the check for logged in user during API key checking. This prevents allowing
incorrect keys to be used.
2017-11-06 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.1.0
2017-11-05 niel
Fix: Add the missing constant names to the checks for creating them in
app/config/bootstrap/connections.php.
2017-11-01 niel
Fix: Quick fix for bad status being returned for when Request limit is exceeded.
2017-10-30 DariusIII
Fix: Update categorization to properly categorize sports related releases (fixes issue #2527)
2017-10-22 niel
Chg: Defaults in settings.example.php for logging, are now enabled.
Chg: Composer post install script now copies settings.example.php to settings.php automatically.
2017-10-11 niel
Fix: Force case insensitive check for 'SQL_CALC_FOUND_ROWS' in DB::queryCalc() to avoid potential
problems.
2017-10-10 DariusIII
Fix: Tmdb error on ajax_mymovies.php (Fixes issue #2526)
2017-10-09 niel
Fix: Add missing use statement to fix TMDb not found error. Closes issue 2526.
2017-10-02 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.8.0.0
2017-09-28 niel
Mrg: PR 2520, from Wally73 - Changes the default sort order for Predb model.
2017-09-27 DariusIII
Chg: Move isMusic check in determineCategory function to the end
2017-09-19 DariusIII
Chg: Remove nZEDbPre2 channel from ircscraper_settings_example.php
2017-08-12 niel
Fix: Error matching timestamp in predb_import_daily_batch.php caused by using wrong regex
match index. Switched to using named regex matches instead.
2017-09-02 niel
Mrg: dev-lithium-logger branch. Add basic logger which can be expanded later.
2017-08-30 DariusIII
Chg: Disable caching in php-tmdb library
2017-08-29 niel
Fix: Change check for gitHooks link, to only test for its existence, not if it is executable.
2017-08-29 DariusIII
Fix: Set pagertotalitems to 0 if there is no totalcount returned from release queries
2017-08-18 niel
Mrg: PR 2513, from jangrewe - Quick and probably incomplete fix for XSS attacks.
2017-08-14 niel
Chg: Use DB_MOCK constant for checking Db connection to use.
2017-08-09 niel
Mrg: PR 2507, from Wally73 - Fix http to https in readme.
Chg: Temporarily change to using niel/steam_front library until b3rs3rk gets his updated.
2017-08-08 niel
Chg: Update command now tries updating with composer even if the nZEDb code is unchanged.
Mrg: Darius' refactored-adult post-processing branch.
Chg: Removing pixelead0 library that we replaced with php-tmdb/api.
Fix: Put braces around array reference in error string to prevent converting from array to
string error.
2017-08-05 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.3.4
2017-08-04 niel
Chg: Bring in Darius' new TMDb library code. Switching to use php-tmdb/api library from github.
Fix: Remove auto sorting from composer.json as it lists bower-assets/* before the package which
handles them.
2017-08-03 DariusIII
Fix: Check for existing apikey before sending request to GiantBomb.
2017-08-03 niel
Fix: Replace spaces with tab, causing steam_app last_update setting to fail on insertion.
2017-07-30 niel
Chg: Move location for predb-progress.txt to the standard configuration directory.
2017-07-27 DariusIII
Chg: Add auto sorting and autoloader optimization to composer.json
2017-07-19 niel
Chg: Set 'updated' date to zero value when inserting new IRCScraper entries. Should prevent
certain errors cause by bad SQL modes.
2017-07-14 niel
Chg: Make version checks in .../nzedb/NZB.php and .../nzedb/Tmux.php use the XML file instead
of the repository.
Chg: Update composer.lock file for updated steamfront version.
2017-06-26 niel
Fix: Removed check for tpg in collection_regexes-test.php's template.
2017-06-21 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.3.3
2017-06-21 niel
Fix: Add 'ORDER BY 'id' ASC' clause to SQL patch 0482, to make sure they don't get done out
of order, causing duplicate index errors.
2017-06-21 DariusIII
Fix: Use PNotify instead of noty in Charisma theme - Potential fix for issue #2478
2017-06-20 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.3.2
2017-06-19 niel
Add: Created custom Model class to extend Lithium's. It adds a new method `isModified` to
check if an existing table entity has been changed. This allows Updates to skip saves if
nothing has changed.
Fix: Remove type declaration from Model::isModified() signature as it doesn't work for parent
classes. The type is tested inside the method instead.
2017-06-14 niel
Fix: Replace overlooked occurences of 'predate' with 'created' in queries. Closes Issue 2474.
2017-06-09 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.3.1
2017-06-07 DariusIII
Fix: Missed changing Steam class setLastUpdated function for settings table change (fixes
Issue 2468)
2017-06-02 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.3.0
2017-05-31 niel
Fix: Make DbUpdate::loadTables() default to not having an "OPTIONALLY ENCLOSED BY" clause, as it
causes issues with fields starting with a double-quote.
2017-05-30 niel
Mrg: PR 2445, from nightah - Reworked all Anime release naming regexes.
Fix: Missing category from new Predb entries that was accidentally overlooked during recent
refactoring.
2017-05-28 niel
Chg: Predb model: Change occurences of 'name' to 'title', even variable names as it is obviously
confusing me!
2017-05-26 niel
Add: Adding post-install-cmd to composer.json. It runs addHooks.sh script if installed in dev
mode.
2017-05-25 b3rs3rk
Fix: Two more predate instances that should be created
2017-05-24 b3rs3rk
Fix: Tmux monitor query still looking for predate column
Fix: Disable timezone checks if connection is to SphinxQL as it doesn't support any TZ variables
Fix: Many predate string constants not changed to reflect new created column
Fix: Change predb table DDL to reflect predate -> created name change in secondary key
2017-05-24 niel
Mrg: dev-ircscraper branch. The IRCScraper code has been changed to make it properly timezone
aware. As before, predates are received as UTC/GMT time. However they are not converted
using a call to the Database server (whose timezone is essentially unknown). Instead, the
timezone of the connection to the server is used, which we are able to set as part of the
bootstrap process. By default, this timezone will be the same as the PHP code running the
indexer, but it may be set to any valid zone by the user.
Database changes: The 'predate' datetime field is replaced by a 'created' timestamp field
and a new 'updated' timestamp field is added. **NOTE** If you have not already done so, you
MUST populate the database's timezone tables as described in their documentation. For
Debian/Ubuntu users 'mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql' should
load them easily, this will require restarting the database server.
The smarty template now displays the timezone in the Date header so that it is obvious to
users. There is also an additional field for when the entry was updated.
Additionally the pager template is switched to the newer paginate.tpl that I have been
using in the dev-move-to-models branch.
2017-05-22 DariusIII
Chg: Rename APIs.Steam.last_update to APIs.steam_apps.last_update
Fix: Remove PHP7 return type declaration in Games.php
2017-04-22 niel
Fix: Fix path reference to settings.php for View Logs page. Fixes issue 2456.
2017-05-19 b3rs3rk
Fix: nzedb.xml not updated to reflect new PC Games support
Fix: Remove function void return declarations at they are throwing UnknownType errors
Fix: Incorrect genres_id column in use in update queries, still genre_id -- also reduce sleep time for Steam calls
2017-05-19 DariusIII
Chg: Update PC Games support, use Steam and GiantBomb only
2017-05-09 niel
Fix: Use correct constant to mark PAR2 used in NameFixer.
Mrg: PR 2453, from kaibosh - tmux config adjustments for <= v1.8
2017-05-08 DariusIII
Fix: Path to bootstrap.min.js in Default theme
2017-05-06 niel
Fix: Problem with external yEnc decoders (hopefully). Closes issues 2383 and 2435.
Chg: Added code to force DB connection to use PHP's timezone setting. This may be different
to the databases configured timezone, but we're now working with a known timezone instead
of assuming one.
2017-05-04 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.2.1
2017-05-03 niel
Mrg: PR 2448, from kaibosh - Update tmux configs for tmux 2.4.
Fix: NULL value 'predate' in IRCScraper. Closes issue 2449.
2017-05-01 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.2.0
2017-04-30 niel
Add: Logging for IRCScraper's testing for duplicates, to try to determine why it sometimes
fails to detect them. This also prevents the script from exiting because of the exception.
2017-04-28 niel
Mrg: dev-ircscraper branch. Changes to IRCScraper class to make it more resilient for those
suffering error about "missing catalogue".
2017-04-28 DariusIII
Fix: Properly populate anidb_episodes table
2017-04-20 niel
Add: Created Predb model for use in IRCScraper. No other code is updated for it yet.
Fix: Add 'predb' to uninflected list in connections.
Add: Created Groups model for use in IRCScraper. No other code is updated for it yet.
2017-04-19 niel
Fix: Make IRCClient an abstract class, as it has an abstract method which was not previously
marked as such.
2017-04-19 DariusIII
Add: Per poster categorization of releases, properly categorize and rename SDCLiP releases and
add FULLTEXT index on predb.filename for better releases matching.
Mrg: PR 2440, from Nightah - Added extra regexes to match release names for a.b.anime
017-04-14 niel
Mrg: PR 2438, from Fossil - Speed up getByRssToken function.
Mrg: PR 2436, from Wally73 - Update simple-expanded.sh
2017-04-13 DariusIII
Fix: Properly categorize ANiHLS and HAiKU releases as TV > Anime (please run 'php
misc/testing/Release/recategorize.php all' to recategorize releases)
2017-04-08 niel
Chg: Use '--prefer-dist' for stable branches, '--prefer-source' otherwise. Part of the move
to not using the repo in production.
2017-04-07 niel
Mrg: PR 2428, from Wally73 - Update simple.sh. Cleaning out discontinued code.
Mrg: PR 2429, from Wally73 - Update simple-expanded.sh. Cleaning out NNTP Proxy references.
Mrg: PR 2430, from Wally73 - Update threaded.sh. Cleaning out python references.
2017-04-06 niel
Chg: Remove python module check in tmux/run.php
2017-04-06 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.1.1
2017-04-06 niel
Chg: Remove NNTPProxy checks from .tmux's run.php
Fix: Added missing field (collection_regexes_id) to multigroup_collections table definition.
2017-04-03 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.1.0
2017-04-03 niel
Chg: Remove git repository checks from Tmux scripts. This is an effort to remove the use of the
repository from user code. Dev code will still use it for some tasks (e.g. apply tags for
releases).
2017-03-30 b3rs3rk
Fix: Gamma PC Games view doesn't display grouped by gamesinfo_id
2017-03-30 DariusIII
Chg: Further improve mediainfo uniqueid matching
2017-03-29 DariusIII
Chg: Increase release size floor values to -10/10 in NameFixer class uidCheck function for
better mediainfo matching.
2017-03-25 niel
Fix: Update import predb daily batch script to handle changed layout on github. Also adds the
date of the file to successful download message.
2017-03-20 niel
Chg: Copied asset-installer setting to config section of composer.json in preparation for
updating it.
Chg: Update fxp/composer-asset-plugin to v1.3.0
***NOTE*** This requires an update of Composer itself, to v1.4.0
2017-03-15 niel
Mrg: PR 2417, from Wally73 - Update IRCScraper README.txt
2017-03-14 niel
Mrg: PR 2398, from kaibosh - Update control tool for sabnzbd v1.x API.
Fix: Make NZBImport check for searchname dupes (Closes issue 2411).
2017-03-14 DariusIII
Chg: Remove use cases for python backfill script
Chg: Remove nntpproxy support
2017-03-13 niel
Fix: Problem with redirection to install on fully installed system (closes PR 2415).
2017-03-11 niel
Chg: Refactored DB class. This cleans it up and streamlines the constructor as well as adding
minimum version checking dependant on the vendor of MySQL variant. Relevant options are
stored in individual fields, instead of storing the whole options array, after a
successful connection.
Thanks to b3s3rk for finding and fixing the issue with Sphinx and to crapz for
helping debug.
Fix Redirect from index page to Install when 'install.lock' does not exist.
2017-03-08 niel
Mrg: dev-refactor-tpg, which removes conditional checking for TPG as it is no longer optional.
2017-03-06 niel
Mrg: PR 2406, from egyptianbman - Fix `zed update nzedb`.
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.7.0.0
2017-03-01 niel
Fix: Alter the logic for checking the Config files location during install step 1.
Fix: Update Travis configuration for location of config files.
Chg: Add PHP 7.1 to Travis' versions to test.
2017-02-24 niel
Chg: Move location of configuration files (config.php, settings.php, etc.) to .../configuration
***NOTE*** See v0.7.0.0 entry at https://github.com/nZEDb/nZEDb/wiki/Update-Guide for
additional instructions.
2017-02-21 DariusIII
Chg: Move search and user menu to headermenu.tpl in Charisma theme
Chg: Update Charisma theme to use new bootswatch library, remove unneeded css and make it use
the bootswatch slate theme (make it darker).
2017-02-21 niel
Add: Update nZEDbBase.php file to be able to return any of the 'constant' values.
Mrg: PR 2397, from ThePeeps - Fix for uspsetting.sh (powerline segment).
2017-02-17 niel
Mrg: PR 2391 and 2392, from Wally73 - Updates simple.sh and simple-extended.sh scripts.
Fix: Change checks in NZB to look for false from Db lookup, instead of Traversable which
does not guarantee useful data.
2017-02-15 niel
Mrg: PR 2388, from kaibosh - Default movie process quantity to 100 if not specified, else use
setting.
2017-02-13 niel
Mrg: dev-log-bad-regex branch. This adds logging of failed (as in errors, not zero results)
regexes to the nZEDb log. **NOTE** This supresses warning messages in the PHP log.
2017-02-12 b3rs3rk
Chg: Improve performance by doing poster check in PHP instead of single row MySQL queries
2017-02-10 b3rs3rk
Fix: Settings issues with AniDB population preventing run.
2017-02-10 DariusIII
Fix: Search by reqid link in predb.tpl (fixes issue #2381)
2017-02-09 niel
Mrg: dev-base-template-mod branch. See commit 2017-01-18.
Mrg: PR 2379, from kaibosh - Update sequential scripts for mandatory TPG use.
2017-02-08 niel
Mrg: dev-mgr (MultiGroup Releases) branch into dev. This adds new feature for matching releases
spread across several groups.
2017-02-02 niel
Mrg: PR 2376, from kaibosh - Update threaded.sh for newer fixRelNames params.
2017-01-30 niel
Fix: Minor changes to XML_Repsonse methods to avoid potential problems.
2017-01-24 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.9.0
2017-01-28 niel
Fix: Bring in b3s3rk's fix, from MGR branch, for the duplicate ReleasesGroups entries (Closes
issue 2354).
2017-01-25 DariusIII
Chg: Replace code in likeSQL function for microseconds speed gain.
Fix: Wrong number of parameters in removeInstallBin function sql query.
2017-01-24 niel
Mrg: PR 2366, from kaibosh - Updates to readme.md.
2017-01-23 niel
Mrg: PR 2364, from krabsheva - Fixes typo in ProcessAdditional.php which prevented timeout
setting being used correctly.
Mrg: PR 2365, from krabsheva - Adds releases_groups table to resetdb.php
Chg: .../misc/testing/DB/resetdb.php now uses loop_cbpm() stored procedure to truncate some
tables.
2017-01-22 niel
Fix: Bad settings data for yydecodepath.
2017-01-20 DariusIII
Fix: Change leftover references to group_id in python scripts and ProcessReleases class.
2017-01-18 niel
Add: New setting (site.main.incognito) that determines if the main page is shown to vistors, or
if they're redirected to the login page instead.
Currently there is no way to edit this in Site => edit.
2017-01-17 niel
Mrg: dev-db branch which contains changes to binaries, collections, missed, and parts tables.
2017-01-16 niel
Fix: Work around to prevent some db versions using auto-increment value on an explicit 0 for
Categories Other's.
2017-01-12 DariusIII
Fix: Predb page link for predb search (closes issue #2356)
2017-01-11 niel
Mrg: PR 2353, from kaibosh - Check for incompatible tmux versions and abort if installed.
Chg: Make kaibosh's fix use version_compare function.
2017-01-09 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.8.1
2017-01-09
Fix: Paths for install.sh script.
2017-01-02 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.8.0
2016-12-27 niel
Mrg: PR 2346, from kaibosh - Correct powerline tmux config.
Add: Created new bash script to clone and use composer install. The script can be run from the
directory you want nZEDb installed to (usually /var/www) using:
bash <(curl -s https://raw.githubusercontent.com/nZEDb/nZEDb/0.x/_install/install.sh)
2016-12-26 DariusIII
Chg: Move predb from frontpage to admin area.
2016-12-22 niel
Mrg: PR 2343, from kaibosh - Updates tmux configuration for using newer versions.
2016-12-21 b3rs3rk
Chg: Make match_prefiles more precise with match attempts and reduce initial memory usage.
2016-12-19 niel
Fix: Update delete_release stored procedure to use separate queries and no CONCATs for the WHERE clause.
2016-12-16 niel
Mrg: dev-releases_groups branch. This provides the ability to have more than one group
assocciated with a release.
2016-12-16 DariusIII
Chg: Improve release renaming.
2016-12-15 DariusIII
Chg: Disable desura game lookups for now, site has changed ownership and is not functional atm.
2016-12-08 b3rs3rk
Fix: Issue #2330 postprocessing_non_amazon and postprocessing_additional PHP Notice: / PHP Warning
2016-12-08 DariusIII
Chg: Move tmux Monitor pane logging to resources/logs folder, fixes notice in monitor pane when starting tmux
2016-12-05 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.7.0
2016-12-03 b3rs3rk
Fix: Books processing variable incorrect, causing only one category to run.
2016-12-03 niel
Mrg: PR 2326, from cytec - Fix post processing for tv shows.
2016-12-02 niel
Chg: Sort contents of 10-settings.tsv to make findind incorrect/missing entries easier ;-)
2016-11-29 b3rs3rk
Fix: Gamma Console cover view not displaying releases grouped by Console ID
2016-11-29 niel
Fix: Verify settings_table failing for PHP 5.6 users, because of reversed list() parameter,
due to misreading the documentation (Fixes issue #2319).
2016-11-28 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.7.0
2016-11-21 b3rs3rk
Chg: Avoid joining groups table on CBP deletes by selecting group info beforehand
2016-11-17 niel
Mrg: PR 2313, from Wally73 - Update simple-expanded.sh. Removes update_theaters as Rotten
Tomato's API is no longer freely available.
2016-11-14 niel
Chg: Update Composer configuration to use our fork of Git.php.
Fix: Added some patches to fix some known setting mistakes (caused by missed or missing patches)
2016-11-12 niel
Add: Unit test and console command to check that the settings table has all entries from
settings.tsv.
To run the tests do: ./zed test app/tests/ This runs ALL tests, although there is only
one currentyly ;-)
To use the command do: ./zed verify settings_table
This will list out any entries from 10-settings.tsv that cannot be found in your Db table.
Syntax for the latter command is tentative and may be changed in the future.
2016-11-09 DariusIII
Mrg: PR #2308 - Fix advanced search and update related queries.
2016-11-08 niel
Fix: Add missing use statement for Settings class.
2016-11-07 b3rs3rk
Fix: Issue with SphinxSE 2.2.11 and maximum return size in ReleaseRemover with larger DB
Chg: Improve site/admin site performance in a few queries in Releases and Groups
Chg: Change NZB Writing to use XMLWriter instead of string buffering for standardization
2016-11-05 b3rs3rk
Fix: nZEDb.xml file with new DB patch number
2016-11-04 DariusIII
Chg: Replace reqid.nzedb.com with reqid.newznab-tmux.pw
2016-11-02 DariusIII
Fix: Broken logic in XML_Response class that lead to high response times
2016-11-01 b3rs3rk
Chg: Revamp categorySearch for cleanliness and make category determination more reliable and extensible
2016-11-01 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.6.0
2016-10-31 b3rs3rk
Chg: Replace duplicate categorySearch function in releases and exclude leading -99 improving
query speed.
2016-10-30 niel
Mrg: DariusIII's branch to switch ReleaseImages class to using Imigemagick instead of GD, to
reduce (hopefully remove) segfaults during image creation.
2016-10-28 DariusIII
Mrg: Fix speed and count accuracy issues with API/Browse functions PR #2303
2016-10-25 niel
Mrg: Bring in b3s3rk's Imagick changes that fix segfaults during PostProcessingAdditional.
Chg: Add the Imagick PHP extension as a required dependency.
2016-10-24 DariusIII
Add: Search for releases by poster by clicking on poster name in releases details page.
2016-10-22 niel
Fix: Amazon settings not having full section included.
Fix: Validating site-edit updates now uses the DB class until such time as the template can
be rewritten to make use of Settings class (Partially fixes issue #2300).
2016-10-21 niel
Mrg: Brought in dev-move-to-settings-model branch. This is expected to cause problems as we
iron out the final wrinkles. Indexing side should mostly be fine as it was previously
merged some time ago. The web side is where we expect most problems to occur. Please keep
an eye on your logs and let us know of *any* problems showing up.
Fix: Correct typo causing maxmusicprocessed setting lookup to fail.
Fix: Add sql patch to ensure the indexer, ppa, innerfileblacklist setting exists.
2016-10-21 DariusIII
Add: Option for admins to delete topics in forum.
2016-10-20 DariusIII
Fix: User and role category exclusions (fixes issue #2290)
2016-10-19 niel
Chg: Remove the yEnc initialising code as it is not needed any longer.
2016-10-18 DariusIII
Fix: Segfaults in PPA caused by broken sample images (fixes issue #2278)
2016-10-17 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.5.3
2016-10-16 niel
Fix: Added creation of nZEDb_INSTALLER constant to the .../www/install/index.php tp prevent
problems caused by prematurely loading .../nzedb/bootstrap.php. Fixes issue 2291.
2016-10-15 niel
Chg: Removed zeebinz/rarinfo library from our code (.../libs/zeebinz/rarinfo) to use the
upstream version now it includes a composer configuration.
Fix: Revert over-zealous changes that would break functionality of delete_releases.php script
(Fixes issue 2277).
2016-10-14 DariusIII
Fix: Remove semicolon in mysql-ddl.sql where it should not be in role_excluded_categories unique index row (fixes issue #2287)
Fix: Port fix for rarinfo exceeding memory limits from upstream (https://github.com/zeebinz/rarinfo/commit/719979f117db1bed667e1fc9a51ce92df37d6850) (should fix issue #2263)
2016-10-13 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.5.2
2016-10-13 niel
Chg: Switch Smarty to bootstrap through lithium instead of just the libraries. Hopefully this
will not cause more problems than it fixes.
2016-10-13 DariusIII
Chg: Remove images/covers support from Trakt (they will no longer serve images after 31st.
October).
Fix: getBrowseRange query was missing group_name used in API extended parameter.
2016-10-12 DariusIII
Fix: Advanced search link in Gamma theme
2016-10-12 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.5.1
2016-10-11 DariusIII
Fix: TinyMCE URL handling
Chg: Add edit function to forumposts
2016-10-10 DariusIII
Chg: Add release_naming_regex for a.b.movies to properly name DJ releases
2016-10-07 niel
Chg: Issue 2263 - Out of memory issue checking RAR files. Add limit checkings to the extra
options.
Fix: Add missing setting for settings table.
2016-10-05 DariusIII
Chg: Add caching to getPagerCount function to reduce load on indexers with many API calls
2016-10-03 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.5.0
2016-09-26 niel
Fix: Prevent TmdbAPI constructor from exiting hard. Instead it now returns null on failure
(Fixes issue 2271).
2016-09-24 niel
Chg: Replace Page::getSetting() with method to trigger a warning for old style settings fetch. A
new method called getSettingValue() will use the app\models\Settings model and is the
prefered method from now on. the getSetting() method is deprecated and will be removed in
the near future.
Chg: Update templates to use newer Page::getSettingVale() to fetch from the settings table.
2016-09-23 DariusIII
Add: Support for per role category exclusions to admin->role edit page(Closes issue #1639).
2016-09-23 niel
Chg: Refactor checking of 'setting' for single element or dotted format, into its own method so
the to be created update override can access it also.
Chg: Dropped idea of overriding 'update' and made method public instead, so that calling code
can create the array for update.
2016-09-20 DariusIII
Fix: Wrongly named autosize script in Alpha and Charisma themes (fixes issue #2268)
2016-09-20 niel
Chg: Force php-yenc to use v1.2.2 or later, which fixes some issues with multi-part.
2016-09-16 niel
Chg: Alter NzedbYenc adapter test to also check for version > 1.0.0 as that version is no longer
compatible with the adapter's implementation.
Mrg: PR 2266, from kevin123 - Refactor yydecode to use std I/O instead of files, improves
performance.
2016-09-16 DariusIII
Chg: Add back reporting of total rows to API response
Chg: Group audio releases by album (fixes issue #2239)
2016-09-15 niel
Chg: Updated NzedbYenc adapter to support decodeIgnore in the extension, instead of falling
back to the Php adapter.
***NOTE*** This changes the API for the function so all users of the extension will have to
upgrade to at least v1.1.0, or the code will generate errors.
https://github.com/niel/php-yenc/releases
2016-09-14 DariusIII
Add: TinyMCE editor support to forum and admin->content
2016-09-14 niel
Chg: Audited every call to fetch an entry from settings table, in order to make sure the
setting is correctly using the full section, subsection, name or dotted format.
2016-09-13 niel
Add: Validation rules for Settings model.
2016-09-12 niel
Chg: Refactor scripts using nzedb\db\Settings class without actually using any of the class'
additional features, to use the parent nzedb\db\DB class. This is to let me work on
moving the scripts that DO need the additional features over to using app\models\Settings
instead and properly separating business logic from the way models get used.
2016-09-08 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.4.1
2016-09-08 niel
Add: Travis icons for Latest-testing and dev branches.
2016-09-08 kevin123
Add: Travis build icon for stable branch on README.md
2016-09-07 niel
Fix: Wrap $this->release['group_name'] in an isset check before assignment to avoid missing
index error reported in issue #2259.
2016-09-06 niel
Fix: Prevent yEnc from configuring all adapters during install process, as that would require
Db access which isn't available yet. Closes issue #2257.
Fix: Have the yEnc adapters use the PHP adapter for decodeIgnore(). Slow but it what happened before.
2016-09-05 DariusIII
Fix: Content display for not logged in users in Charisma/Gamma/Gentele/Omicron themes.
2016-09-05 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.4.0
2016-09-01 niel
Fix: Update new yenc extension's adapter class.
2016-08-31 DariusIII
Fix: Sorting arrows on admin->user-list page
2016-08-29 niel
Mrg: dev-yenc-abstraction branch. This branch unifies our yenc code to use a single class.
Lithium adapters are used for the available methods, the best available is
automatically configured as the default.
No user configuration should be needed, except for the path to ydecode in the settings as
before. simple_php_yen_decode can be removed from that setting for those using it, as the
extension is automatically detected if available.
For PHP 7.0 users, a new extension is available to replace simple_php_yenc_decode (which
cannot be compiled for PHP 7+). This extension is also available for PHP 5.6.
Those familiar with Zephir and able to compile the extension themselves, can do so from this
repository: https://github.com/niel/php-yenc
If you can not compile, and are a trusting soul, precompiled versions, in a .deb file, can be
downloaded from:
https://github.com/niel/php-yenc/releases/download/v1.0.0/php5.6-yenc_1.0.0-5_amd64.deb
https://github.com/niel/php-yenc/releases/download/v1.0.0/php7.0-yenc_1.0.0-4_amd64.deb
The deb package assumes that PHP 5/7 is installed with the php5.6-*/php7.0-* style of
packaging it will not work correctly with the php5-*/php7-* style (extension should install,
but the ini files to load it will be in the wrong locations, so you'll have to correct them).
Chg: Update hint for yydecode setting in site-edit.
2016-08-29 DariusIII
Mrg: PR #2244 from cytek
2016-08-24 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.3.2
2016-08-23 niel
Fix: Refactor use of PEAR::throwError() to avoid PHP notice on PHP 7.0.
2016-08-23 bart39
Fix: change rt_attr_string to rt_attr_uint as a dummy field. As attributes are pre-cached strings could cause out of memory issues.
Note: if using sphinx search the following is required to update the index
sudo service sphinxsearch stop
edit /var/www/nZEDb/misc/sphinxsearch/sphinx.conf if you made any changes from the default
sudo mv /etc/sphinxsearch/sphinx.conf /etc/sphinxsearch/sphinx.conf.1
sudo cp /var/www/nZEDb/misc/sphinxsearch/sphinx.conf /etc/sphinxsearch/sphinx.conf
sudo service sphinxsearch start
php misc/sphinxsearch/populate_rt_indexes.php releases_rt
2016-08-19 DariusIII
Fix: Links to other cats in Alpha/Gamma headermenu.tpl (Fixes issue #2237)
2016-08-15 DariusIII
Fix: Move tv and movies UHD category checks before web-dl check.(fixes issue #2234)
note: run misc/testing/Release/recategorize.php all
2016-08-08 DariusIII
Chg: Remove rss button from search page in Gamma theme.
2016-08-08 niel
Mrg: dev => Latest-testing to prepare for updating stable 0.x to v0.6.3.1
2016-08-08 DariusIII
Fix: Add checks for tv attributes in XML_Response.php(fixes issue #2225)
2016-08-07 niel
Fix: Adjustments to DbUpdate class to be sure Settings instance is there when needed.
2016-08-05 DariusIII
Fix: User cart operations in themes
2016-08-05 niel
Fix: Changes to Install's bootstrap process that prevent use of Settings table before it is
created.
2016-08-03 niel
Mrg: PR 2194, from b3s3rk - Improve JSON Response from API/RSS by basing it off of XML Response
2016-08-02 DariusIII
Chg: Make themes more lower resolution/mobile devices friendly
2016-08-01 DariusIII
Fix: Add missing glyphicons-halflings images to shared/img folder and adjust css of Gamma theme
Fix: Replace somehow reverted icon- with font-awesome versions in viewmoviefull and xxx tpl files in Alpha theme
2016-07-28 DariusIII
Fix: Undefined index genreid in Charisma/Gamma/Gentele/Omicron themes (fixes issue #2209)
2016-07-28 bart39
Fix: add required rt_att directive for sphinx v2.2.11
Note: if using sphinx search the following is required to update the index
sudo service sphinxsearch stop
sudo mv /etc/sphinxsearch/sphinx.conf /etc/sphinxsearch/sphinx.conf.1