Commit Graph

224 Commits

Author SHA1 Message Date
HDVinnie
dbb928f940 chore: update license block 2020-02-12 14:45:59 -05:00
HDVinnie
9a893662de Apply fixes from StyleCI
[ci skip] [skip ci]
2020-01-08 16:28:32 +00:00
HDVinnie
c8f2390c4d Apply fixes from StyleCI
[ci skip] [skip ci]
2020-01-06 15:38:43 +00:00
innocente205
47f73d49dc Update TorrentController.php 2019-12-07 20:08:55 +07:00
HDVinnie
4ded8bdb75 (Update) Torrent File Download Naming Schema 🚀 2019-12-07 19:58:40 +07:00
HDVinnie
61d1f0e3ff (Fix) Issue #967 🐛
- closes #967
2019-12-07 19:58:40 +07:00
HDVinnie
a4e2b26c49 (Fix) Chat Announces 🐛 2019-12-07 19:58:40 +07:00
HDVinnie
6b6ae583c5 (Fix) Multiple Routing Issues 🐛 2019-11-10 16:36:35 -05:00
HDVinnie
e0379e5b95 (Add) Audit System 🆕
- filtering to follow
2019-11-06 06:42:17 -05:00
HDVinnie
d889971834 Apply fixes from StyleCI
[ci skip] [skip ci]
2019-11-05 22:40:30 +00:00
HDVinnie
da30d2a706 (Update) CRUDDY PT.8 🚀 2019-10-29 20:26:54 -04:00
HDVinnie
77e178069a Merge branch 'master' into Cruddy-By-Design 2019-10-28 14:39:16 -04:00
HDVinnie
eed3b51c92 (Update) CRUDDY PT.7 🚀 2019-10-25 17:35:14 -04:00
HDVinnie
426b801eda (Update) CRUDDY PT.5 🚀 2019-10-23 16:59:03 -04:00
HDVinnie
2979750a8f (Update) CRUDDY PT.4 🚀 2019-10-23 14:49:39 -04:00
HDVinnie
dc2cf66405 (Update) CRUDDY PT.3 🚀 2019-10-23 13:48:28 -04:00
HDVinnie
c45c715dcb (Update) CRUDDY PT.2 🚀 2019-10-22 20:29:07 -04:00
HDVinnie
9fc03ab492 (Update) CRUDDY PT.1 🚀 2019-10-22 14:29:58 -04:00
HDVinnie
8d1023f3e8 (Fix) Typo 🐛 2019-10-13 09:04:13 -04:00
HDVinnie
9e9b825b73 (Update) Faceted Search
- can now search IMDB number with or without tt
2019-09-26 12:56:28 -04:00
HDVinnie
607be97dca (Update) Torrent Controller 🚀 2019-09-25 11:04:30 -04:00
HDVinnie
0421f38924 (Add) Torrent Upload Preview 🆕 2019-09-18 08:48:56 -04:00
HDVinnie
1ac7dd4ee3 (Fix) Typos 🐛 2019-09-15 12:20:31 -04:00
HDVinnie
90c65ac0e1 Apply fixes from StyleCI
[ci skip] [skip ci]
2019-07-26 19:29:57 +00:00
HDVinnie
347c29ab15 (Update) Torrennt Controller 🚀 2019-07-26 14:24:26 -04:00
HDVinnie
f5db8df095 (Update) Game Character Handeling 🚀 2019-07-26 09:00:42 -04:00
HDVinnie
fc6f645b38 (Add) Ability To Filter Torrents By Year Range and IGDB ID 🚀 2019-07-25 15:51:24 -04:00
HDVinnie
bcf03e7fe8 (Update) Display Game Meta On Torrent List View 🚀 2019-07-25 13:55:59 -04:00
HDVinnie
839b471b39 (Update) TorrentController 🚀 2019-07-25 13:01:19 -04:00
HDVinnie
7fee0dc00c (Update) Meta Data Handeling 🚀 2019-07-24 13:32:19 -04:00
HDVinnie
20fa75131e (Update) Torrent Controller 🚀 2019-07-23 18:15:32 -04:00
HDVinnie
efecee743b (Update) Minor Cleanup 🚀 2019-07-21 11:36:23 -04:00
HDVinnie
03f828b7ef Merge branch 'master' into InternetGameDatabase 2019-07-02 16:05:18 -04:00
Jack Price-Burns
0f06920108 (Fix) StyleCI 2019-06-16 10:00:45 +01:00
Jack Price-Burns
0a7bb2ee25 (Fix) tags not eager loading when searching 2019-06-16 09:47:23 +01:00
Jack Price-Burns
aef8e89c14 (Fix) Slow torrent list 2019-06-16 09:26:09 +01:00
HDVinnie
206938ff77 (Fix) Activiy Log Typo 🐛 2019-06-10 15:41:15 -04:00
Max Kovalenko
9f8835b0ae phpdoc: missing $request parameter 2019-05-22 09:29:40 +03:00
Max Kovalenko
56c7e68b5f misc phpdoc fixes 2019-05-21 20:01:15 +03:00
HDVinnie
d2bbd9dae3 Merge pull request #725 from HDInnovations/shift-14576
(Update) Laravel Fixer
2019-05-13 11:22:44 -04:00
Morgan Wong
f7c871d57a (fix) missing SQL aggregate column
When user clicks the "size item", SQL returns error.
2019-05-13 04:05:17 +08:00
Laravel Shift
d9ddbe6159 Shift cleanup 2019-05-09 00:05:27 +00:00
Laravel Shift
4853105815 Shift to consistent, fluent response chains 2019-05-09 00:05:17 +00:00
Laravel Shift
97e88dd68b Leverage injected request object
Laravel automatically injects the current Http [request object][1] to all Controller actions and Middleware. Leveraging this object improves consistency and testability.

[1]: https://laravel.com/docs/5.7/requests#accessing-the-request
2019-05-09 00:05:13 +00:00
Laravel Shift
b0732954c4 Shift deprecated helpers
Laravel recommends using the `Str` and `Arr` class methods directly instead of the respective helper functions. These helper functions are [deprecated in Laravel 5.8][1] and will be removed in a future version.

[1]: https://github.com/laravel/framework/pull/26898
2019-05-09 00:05:08 +00:00
HDVinnie
907971d5ee (Fix) Torrent Tags System 🐛
- add/check torrent tags (genres) on torrent edit
- closes #695
2019-04-28 11:09:15 -04:00
Morgan Wong
c79078daaf (Fix) search result renders empty element
Resubmitted the change again.
When the $page posted back, it maybe 0. In order to use it for array index, we need to avoid negative value after deducting it by 1.
That 0 case occurs when the searching takes place at default Group View loading. On the other hand, if the searching combined with a click on Paginator, the Paginator already posts a correct $page value instead of 0.
2019-04-28 15:23:57 +08:00
HDVinnie
903c148391 Apply fixes from StyleCI
[ci skip] [skip ci]
2019-04-24 19:39:24 +00:00
Morgan Wong
367202603a (fix)wrong page array index value passed in during Group View pagination
The index value should be -1 since arrays start from 0. Otherwise, n+1-th page will be displayed when mouse clicked n-th page.
2019-04-25 00:58:04 +08:00
Morgan Wong
f6049ce88d (fix) Incorrect function parameter passing in
The object constructor used requires total elements in the second parameter which should not have been rounded down.
https://laravel.com/api/5.0/Illuminate/Pagination/LengthAwarePaginator.html#method___construct

Otherwise, the pagination list displays with one missing page.

Such bug occurs in Group View only. Torrent Lists and Card Views are not affected.
2019-04-25 00:49:41 +08:00