-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsejson.json
More file actions
2736 lines (2736 loc) · 126 KB
/
Copy pathresponsejson.json
File metadata and controls
2736 lines (2736 loc) · 126 KB
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
[
{
"id": "52457239880",
"type": "PullRequestReviewEvent",
"actor": {
"id": 4313123,
"login": "georgemoralis",
"display_login": "georgemoralis",
"gravatar_id": "",
"url": "https://api.github.com/users/georgemoralis",
"avatar_url": "https://avatars.githubusercontent.com/u/4313123?"
},
"repo": {
"id": 556675672,
"name": "shadps4-emu/shadPS4",
"url": "https://api.github.com/repos/shadps4-emu/shadPS4"
},
"payload": {
"action": "created",
"review": {
"id": 3048313126,
"node_id": "PRR_kwDOIS4yWM61sZEm",
"user": {
"login": "georgemoralis",
"id": 4313123,
"node_id": "MDQ6VXNlcjQzMTMxMjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/4313123?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/georgemoralis",
"html_url": "https://github.com/georgemoralis",
"followers_url": "https://api.github.com/users/georgemoralis/followers",
"following_url": "https://api.github.com/users/georgemoralis/following{/other_user}",
"gists_url": "https://api.github.com/users/georgemoralis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/georgemoralis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/georgemoralis/subscriptions",
"organizations_url": "https://api.github.com/users/georgemoralis/orgs",
"repos_url": "https://api.github.com/users/georgemoralis/repos",
"events_url": "https://api.github.com/users/georgemoralis/events{/privacy}",
"received_events_url": "https://api.github.com/users/georgemoralis/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"body": null,
"commit_id": "1ca2207ace5023b4b7eb1edf5099703dc160a870",
"submitted_at": "2025-07-23T17:00:05Z",
"state": "approved",
"html_url": "https://github.com/shadps4-emu/shadPS4/pull/3292#pullrequestreview-3048313126",
"pull_request_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292",
"author_association": "COLLABORATOR",
"_links": {
"html": {
"href": "https://github.com/shadps4-emu/shadPS4/pull/3292#pullrequestreview-3048313126"
},
"pull_request": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292"
}
}
},
"pull_request": {
"url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292",
"id": 2686965486,
"node_id": "PR_kwDOIS4yWM6gJ9bu",
"html_url": "https://github.com/shadps4-emu/shadPS4/pull/3292",
"diff_url": "https://github.com/shadps4-emu/shadPS4/pull/3292.diff",
"patch_url": "https://github.com/shadps4-emu/shadPS4/pull/3292.patch",
"issue_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292",
"number": 3292,
"state": "open",
"locked": false,
"title": "Network config",
"user": {
"login": "mikusp",
"id": 2052578,
"node_id": "MDQ6VXNlcjIwNTI1Nzg=",
"avatar_url": "https://avatars.githubusercontent.com/u/2052578?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mikusp",
"html_url": "https://github.com/mikusp",
"followers_url": "https://api.github.com/users/mikusp/followers",
"following_url": "https://api.github.com/users/mikusp/following{/other_user}",
"gists_url": "https://api.github.com/users/mikusp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mikusp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mikusp/subscriptions",
"organizations_url": "https://api.github.com/users/mikusp/orgs",
"repos_url": "https://api.github.com/users/mikusp/repos",
"events_url": "https://api.github.com/users/mikusp/events{/privacy}",
"received_events_url": "https://api.github.com/users/mikusp/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"body": null,
"created_at": "2025-07-22T22:24:05Z",
"updated_at": "2025-07-23T17:00:05Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": "4ab5cf72d26cc7c896d49efada97118a1e83f6d2",
"assignee": null,
"assignees": [],
"requested_reviewers": [
{
"login": "StevenMiller123",
"id": 56742918,
"node_id": "MDQ6VXNlcjU2NzQyOTE4",
"avatar_url": "https://avatars.githubusercontent.com/u/56742918?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/StevenMiller123",
"html_url": "https://github.com/StevenMiller123",
"followers_url": "https://api.github.com/users/StevenMiller123/followers",
"following_url": "https://api.github.com/users/StevenMiller123/following{/other_user}",
"gists_url": "https://api.github.com/users/StevenMiller123/gists{/gist_id}",
"starred_url": "https://api.github.com/users/StevenMiller123/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/StevenMiller123/subscriptions",
"organizations_url": "https://api.github.com/users/StevenMiller123/orgs",
"repos_url": "https://api.github.com/users/StevenMiller123/repos",
"events_url": "https://api.github.com/users/StevenMiller123/events{/privacy}",
"received_events_url": "https://api.github.com/users/StevenMiller123/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
],
"requested_teams": [],
"labels": [],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292/commits",
"review_comments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292/comments",
"review_comment_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292/comments",
"statuses_url": "https://api.github.com/repos/shadps4-emu/shadPS4/statuses/1ca2207ace5023b4b7eb1edf5099703dc160a870",
"head": {
"label": "mikusp:network_config",
"ref": "network_config",
"sha": "1ca2207ace5023b4b7eb1edf5099703dc160a870",
"user": {
"login": "mikusp",
"id": 2052578,
"node_id": "MDQ6VXNlcjIwNTI1Nzg=",
"avatar_url": "https://avatars.githubusercontent.com/u/2052578?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mikusp",
"html_url": "https://github.com/mikusp",
"followers_url": "https://api.github.com/users/mikusp/followers",
"following_url": "https://api.github.com/users/mikusp/following{/other_user}",
"gists_url": "https://api.github.com/users/mikusp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mikusp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mikusp/subscriptions",
"organizations_url": "https://api.github.com/users/mikusp/orgs",
"repos_url": "https://api.github.com/users/mikusp/repos",
"events_url": "https://api.github.com/users/mikusp/events{/privacy}",
"received_events_url": "https://api.github.com/users/mikusp/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"repo": {
"id": 866687537,
"node_id": "R_kgDOM6iaMQ",
"name": "shadPS4",
"full_name": "mikusp/shadPS4",
"private": false,
"owner": {
"login": "mikusp",
"id": 2052578,
"node_id": "MDQ6VXNlcjIwNTI1Nzg=",
"avatar_url": "https://avatars.githubusercontent.com/u/2052578?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mikusp",
"html_url": "https://github.com/mikusp",
"followers_url": "https://api.github.com/users/mikusp/followers",
"following_url": "https://api.github.com/users/mikusp/following{/other_user}",
"gists_url": "https://api.github.com/users/mikusp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mikusp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mikusp/subscriptions",
"organizations_url": "https://api.github.com/users/mikusp/orgs",
"repos_url": "https://api.github.com/users/mikusp/repos",
"events_url": "https://api.github.com/users/mikusp/events{/privacy}",
"received_events_url": "https://api.github.com/users/mikusp/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/mikusp/shadPS4",
"description": "PS4 emulator for Windows,Linux,MacOS",
"fork": true,
"url": "https://api.github.com/repos/mikusp/shadPS4",
"forks_url": "https://api.github.com/repos/mikusp/shadPS4/forks",
"keys_url": "https://api.github.com/repos/mikusp/shadPS4/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/mikusp/shadPS4/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/mikusp/shadPS4/teams",
"hooks_url": "https://api.github.com/repos/mikusp/shadPS4/hooks",
"issue_events_url": "https://api.github.com/repos/mikusp/shadPS4/issues/events{/number}",
"events_url": "https://api.github.com/repos/mikusp/shadPS4/events",
"assignees_url": "https://api.github.com/repos/mikusp/shadPS4/assignees{/user}",
"branches_url": "https://api.github.com/repos/mikusp/shadPS4/branches{/branch}",
"tags_url": "https://api.github.com/repos/mikusp/shadPS4/tags",
"blobs_url": "https://api.github.com/repos/mikusp/shadPS4/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/mikusp/shadPS4/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/mikusp/shadPS4/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/mikusp/shadPS4/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/mikusp/shadPS4/statuses/{sha}",
"languages_url": "https://api.github.com/repos/mikusp/shadPS4/languages",
"stargazers_url": "https://api.github.com/repos/mikusp/shadPS4/stargazers",
"contributors_url": "https://api.github.com/repos/mikusp/shadPS4/contributors",
"subscribers_url": "https://api.github.com/repos/mikusp/shadPS4/subscribers",
"subscription_url": "https://api.github.com/repos/mikusp/shadPS4/subscription",
"commits_url": "https://api.github.com/repos/mikusp/shadPS4/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/mikusp/shadPS4/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/mikusp/shadPS4/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/mikusp/shadPS4/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/mikusp/shadPS4/contents/{+path}",
"compare_url": "https://api.github.com/repos/mikusp/shadPS4/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/mikusp/shadPS4/merges",
"archive_url": "https://api.github.com/repos/mikusp/shadPS4/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/mikusp/shadPS4/downloads",
"issues_url": "https://api.github.com/repos/mikusp/shadPS4/issues{/number}",
"pulls_url": "https://api.github.com/repos/mikusp/shadPS4/pulls{/number}",
"milestones_url": "https://api.github.com/repos/mikusp/shadPS4/milestones{/number}",
"notifications_url": "https://api.github.com/repos/mikusp/shadPS4/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/mikusp/shadPS4/labels{/name}",
"releases_url": "https://api.github.com/repos/mikusp/shadPS4/releases{/id}",
"deployments_url": "https://api.github.com/repos/mikusp/shadPS4/deployments",
"created_at": "2024-10-02T17:41:44Z",
"updated_at": "2024-10-02T17:41:44Z",
"pushed_at": "2025-07-23T16:48:59Z",
"git_url": "git://github.com/mikusp/shadPS4.git",
"ssh_url": "git@github.com:mikusp/shadPS4.git",
"clone_url": "https://github.com/mikusp/shadPS4.git",
"svn_url": "https://github.com/mikusp/shadPS4",
"homepage": "https://shadps4.net/",
"size": 42826,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "gpl-2.0",
"name": "GNU General Public License v2.0",
"spdx_id": "GPL-2.0",
"url": "https://api.github.com/licenses/gpl-2.0",
"node_id": "MDc6TGljZW5zZTg="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
}
},
"base": {
"label": "shadps4-emu:main",
"ref": "main",
"sha": "800b332f605806f59404c2d3f53f93c3c348f177",
"user": {
"login": "shadps4-emu",
"id": 152868421,
"node_id": "O_kgDOCRyWRQ",
"avatar_url": "https://avatars.githubusercontent.com/u/152868421?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shadps4-emu",
"html_url": "https://github.com/shadps4-emu",
"followers_url": "https://api.github.com/users/shadps4-emu/followers",
"following_url": "https://api.github.com/users/shadps4-emu/following{/other_user}",
"gists_url": "https://api.github.com/users/shadps4-emu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shadps4-emu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shadps4-emu/subscriptions",
"organizations_url": "https://api.github.com/users/shadps4-emu/orgs",
"repos_url": "https://api.github.com/users/shadps4-emu/repos",
"events_url": "https://api.github.com/users/shadps4-emu/events{/privacy}",
"received_events_url": "https://api.github.com/users/shadps4-emu/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"repo": {
"id": 556675672,
"node_id": "R_kgDOIS4yWA",
"name": "shadPS4",
"full_name": "shadps4-emu/shadPS4",
"private": false,
"owner": {
"login": "shadps4-emu",
"id": 152868421,
"node_id": "O_kgDOCRyWRQ",
"avatar_url": "https://avatars.githubusercontent.com/u/152868421?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shadps4-emu",
"html_url": "https://github.com/shadps4-emu",
"followers_url": "https://api.github.com/users/shadps4-emu/followers",
"following_url": "https://api.github.com/users/shadps4-emu/following{/other_user}",
"gists_url": "https://api.github.com/users/shadps4-emu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shadps4-emu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shadps4-emu/subscriptions",
"organizations_url": "https://api.github.com/users/shadps4-emu/orgs",
"repos_url": "https://api.github.com/users/shadps4-emu/repos",
"events_url": "https://api.github.com/users/shadps4-emu/events{/privacy}",
"received_events_url": "https://api.github.com/users/shadps4-emu/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/shadps4-emu/shadPS4",
"description": "PlayStation 4 emulator for Windows, Linux and macOS written in C++",
"fork": false,
"url": "https://api.github.com/repos/shadps4-emu/shadPS4",
"forks_url": "https://api.github.com/repos/shadps4-emu/shadPS4/forks",
"keys_url": "https://api.github.com/repos/shadps4-emu/shadPS4/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shadps4-emu/shadPS4/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shadps4-emu/shadPS4/teams",
"hooks_url": "https://api.github.com/repos/shadps4-emu/shadPS4/hooks",
"issue_events_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/events{/number}",
"events_url": "https://api.github.com/repos/shadps4-emu/shadPS4/events",
"assignees_url": "https://api.github.com/repos/shadps4-emu/shadPS4/assignees{/user}",
"branches_url": "https://api.github.com/repos/shadps4-emu/shadPS4/branches{/branch}",
"tags_url": "https://api.github.com/repos/shadps4-emu/shadPS4/tags",
"blobs_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shadps4-emu/shadPS4/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shadps4-emu/shadPS4/languages",
"stargazers_url": "https://api.github.com/repos/shadps4-emu/shadPS4/stargazers",
"contributors_url": "https://api.github.com/repos/shadps4-emu/shadPS4/contributors",
"subscribers_url": "https://api.github.com/repos/shadps4-emu/shadPS4/subscribers",
"subscription_url": "https://api.github.com/repos/shadps4-emu/shadPS4/subscription",
"commits_url": "https://api.github.com/repos/shadps4-emu/shadPS4/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shadps4-emu/shadPS4/contents/{+path}",
"compare_url": "https://api.github.com/repos/shadps4-emu/shadPS4/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shadps4-emu/shadPS4/merges",
"archive_url": "https://api.github.com/repos/shadps4-emu/shadPS4/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shadps4-emu/shadPS4/downloads",
"issues_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues{/number}",
"pulls_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shadps4-emu/shadPS4/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shadps4-emu/shadPS4/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shadps4-emu/shadPS4/labels{/name}",
"releases_url": "https://api.github.com/repos/shadps4-emu/shadPS4/releases{/id}",
"deployments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/deployments",
"created_at": "2022-10-24T09:48:37Z",
"updated_at": "2025-07-23T16:46:11Z",
"pushed_at": "2025-07-23T16:46:06Z",
"git_url": "git://github.com/shadps4-emu/shadPS4.git",
"ssh_url": "git@github.com:shadps4-emu/shadPS4.git",
"clone_url": "https://github.com/shadps4-emu/shadPS4.git",
"svn_url": "https://github.com/shadps4-emu/shadPS4",
"homepage": "https://shadps4.net/",
"size": 42590,
"stargazers_count": 25061,
"watchers_count": 25061,
"language": "C++",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 1613,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 132,
"license": {
"key": "gpl-2.0",
"name": "GNU General Public License v2.0",
"spdx_id": "GPL-2.0",
"url": "https://api.github.com/licenses/gpl-2.0",
"node_id": "MDc6TGljZW5zZTg="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cpp",
"cpp20",
"emulation",
"emulator",
"imgui",
"linux",
"macos",
"playstation4",
"ps4",
"sdl3",
"vulkan",
"windows"
],
"visibility": "public",
"forks": 1613,
"open_issues": 132,
"watchers": 25061,
"default_branch": "main"
}
},
"_links": {
"self": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292"
},
"html": {
"href": "https://github.com/shadps4-emu/shadPS4/pull/3292"
},
"issue": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292"
},
"comments": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292/commits"
},
"statuses": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/statuses/1ca2207ace5023b4b7eb1edf5099703dc160a870"
}
},
"author_association": "CONTRIBUTOR",
"auto_merge": null,
"active_lock_reason": null
}
},
"public": true,
"created_at": "2025-07-23T17:00:06Z",
"org": {
"id": 152868421,
"login": "shadps4-emu",
"gravatar_id": "",
"url": "https://api.github.com/orgs/shadps4-emu",
"avatar_url": "https://avatars.githubusercontent.com/u/152868421?"
}
},
{
"id": "52457217218",
"type": "IssueCommentEvent",
"actor": {
"id": 4313123,
"login": "georgemoralis",
"display_login": "georgemoralis",
"gravatar_id": "",
"url": "https://api.github.com/users/georgemoralis",
"avatar_url": "https://avatars.githubusercontent.com/u/4313123?"
},
"repo": {
"id": 556675672,
"name": "shadps4-emu/shadPS4",
"url": "https://api.github.com/repos/shadps4-emu/shadPS4"
},
"payload": {
"action": "created",
"issue": {
"url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292",
"repository_url": "https://api.github.com/repos/shadps4-emu/shadPS4",
"labels_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292/labels{/name}",
"comments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292/comments",
"events_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292/events",
"html_url": "https://github.com/shadps4-emu/shadPS4/pull/3292",
"id": 3254245249,
"node_id": "PR_kwDOIS4yWM6gJ9bu",
"number": 3292,
"title": "Network config",
"user": {
"login": "mikusp",
"id": 2052578,
"node_id": "MDQ6VXNlcjIwNTI1Nzg=",
"avatar_url": "https://avatars.githubusercontent.com/u/2052578?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mikusp",
"html_url": "https://github.com/mikusp",
"followers_url": "https://api.github.com/users/mikusp/followers",
"following_url": "https://api.github.com/users/mikusp/following{/other_user}",
"gists_url": "https://api.github.com/users/mikusp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mikusp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mikusp/subscriptions",
"organizations_url": "https://api.github.com/users/mikusp/orgs",
"repos_url": "https://api.github.com/users/mikusp/repos",
"events_url": "https://api.github.com/users/mikusp/events{/privacy}",
"received_events_url": "https://api.github.com/users/mikusp/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 2,
"created_at": "2025-07-22T22:24:05Z",
"updated_at": "2025-07-23T16:59:32Z",
"closed_at": null,
"author_association": "CONTRIBUTOR",
"type": null,
"active_lock_reason": null,
"draft": false,
"pull_request": {
"url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3292",
"html_url": "https://github.com/shadps4-emu/shadPS4/pull/3292",
"diff_url": "https://github.com/shadps4-emu/shadPS4/pull/3292.diff",
"patch_url": "https://github.com/shadps4-emu/shadPS4/pull/3292.patch",
"merged_at": null
},
"body": null,
"reactions": {
"url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292/timeline",
"performed_via_github_app": null,
"state_reason": null
},
"comment": {
"url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/comments/3109429796",
"html_url": "https://github.com/shadps4-emu/shadPS4/pull/3292#issuecomment-3109429796",
"issue_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3292",
"id": 3109429796,
"node_id": "IC_kwDOIS4yWM65ViIk",
"user": {
"login": "georgemoralis",
"id": 4313123,
"node_id": "MDQ6VXNlcjQzMTMxMjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/4313123?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/georgemoralis",
"html_url": "https://github.com/georgemoralis",
"followers_url": "https://api.github.com/users/georgemoralis/followers",
"following_url": "https://api.github.com/users/georgemoralis/following{/other_user}",
"gists_url": "https://api.github.com/users/georgemoralis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/georgemoralis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/georgemoralis/subscriptions",
"organizations_url": "https://api.github.com/users/georgemoralis/orgs",
"repos_url": "https://api.github.com/users/georgemoralis/repos",
"events_url": "https://api.github.com/users/georgemoralis/events{/privacy}",
"received_events_url": "https://api.github.com/users/georgemoralis/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"created_at": "2025-07-23T16:59:32Z",
"updated_at": "2025-07-23T16:59:32Z",
"author_association": "COLLABORATOR",
"body": "i think it is ok @StevenMiller123 ?\r\n",
"reactions": {
"url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/comments/3109429796/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"performed_via_github_app": null
}
},
"public": true,
"created_at": "2025-07-23T16:59:33Z",
"org": {
"id": 152868421,
"login": "shadps4-emu",
"gravatar_id": "",
"url": "https://api.github.com/orgs/shadps4-emu",
"avatar_url": "https://avatars.githubusercontent.com/u/152868421?"
}
},
{
"id": "52456662336",
"type": "PushEvent",
"actor": {
"id": 4313123,
"login": "georgemoralis",
"display_login": "georgemoralis",
"gravatar_id": "",
"url": "https://api.github.com/users/georgemoralis",
"avatar_url": "https://avatars.githubusercontent.com/u/4313123?"
},
"repo": {
"id": 556675672,
"name": "shadps4-emu/shadPS4",
"url": "https://api.github.com/repos/shadps4-emu/shadPS4"
},
"payload": {
"repository_id": 556675672,
"push_id": 25681317763,
"size": 1,
"distinct_size": 1,
"ref": "refs/heads/main",
"head": "4d3578edbe35acc343d04ed91be6f9391bbd8dc6",
"before": "800b332f605806f59404c2d3f53f93c3c348f177",
"commits": [
{
"sha": "4d3578edbe35acc343d04ed91be6f9391bbd8dc6",
"author": { "email": "geoster3d@gmail.com", "name": "TheTurtle" },
"message": "shader_recompiler: Fix incorrect bary coord loads when unsupported (#3303)\n\n* shader_recompiler: Fix incorrect bary coord loads when unsupported\n\nAlso properly set sample rate shading\n\n* emit_spirv: Implement BaryCoordSmoothCentroid",
"distinct": true,
"url": "https://api.github.com/repos/shadps4-emu/shadPS4/commits/4d3578edbe35acc343d04ed91be6f9391bbd8dc6"
}
]
},
"public": true,
"created_at": "2025-07-23T16:46:08Z",
"org": {
"id": 152868421,
"login": "shadps4-emu",
"gravatar_id": "",
"url": "https://api.github.com/orgs/shadps4-emu",
"avatar_url": "https://avatars.githubusercontent.com/u/152868421?"
}
},
{
"id": "52456661791",
"type": "PullRequestEvent",
"actor": {
"id": 4313123,
"login": "georgemoralis",
"display_login": "georgemoralis",
"gravatar_id": "",
"url": "https://api.github.com/users/georgemoralis",
"avatar_url": "https://avatars.githubusercontent.com/u/4313123?"
},
"repo": {
"id": 556675672,
"name": "shadps4-emu/shadPS4",
"url": "https://api.github.com/repos/shadps4-emu/shadPS4"
},
"payload": {
"action": "closed",
"number": 3303,
"pull_request": {
"url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3303",
"id": 2688786185,
"node_id": "PR_kwDOIS4yWM6gQ58J",
"html_url": "https://github.com/shadps4-emu/shadPS4/pull/3303",
"diff_url": "https://github.com/shadps4-emu/shadPS4/pull/3303.diff",
"patch_url": "https://github.com/shadps4-emu/shadPS4/pull/3303.patch",
"issue_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3303",
"number": 3303,
"state": "closed",
"locked": false,
"title": "shader_recompiler: Fix incorrect bary coord loads when unsupported",
"user": {
"login": "raphaelthegreat",
"id": 47210458,
"node_id": "MDQ6VXNlcjQ3MjEwNDU4",
"avatar_url": "https://avatars.githubusercontent.com/u/47210458?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/raphaelthegreat",
"html_url": "https://github.com/raphaelthegreat",
"followers_url": "https://api.github.com/users/raphaelthegreat/followers",
"following_url": "https://api.github.com/users/raphaelthegreat/following{/other_user}",
"gists_url": "https://api.github.com/users/raphaelthegreat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/raphaelthegreat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/raphaelthegreat/subscriptions",
"organizations_url": "https://api.github.com/users/raphaelthegreat/orgs",
"repos_url": "https://api.github.com/users/raphaelthegreat/repos",
"events_url": "https://api.github.com/users/raphaelthegreat/events{/privacy}",
"received_events_url": "https://api.github.com/users/raphaelthegreat/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"body": "Should fix https://github.com/shadps4-emu/shadPS4/pull/3245#issuecomment-3086406855 and https://github.com/shadps4-emu/shadPS4/pull/3245#issuecomment-3105738985",
"created_at": "2025-07-23T12:56:53Z",
"updated_at": "2025-07-23T16:46:06Z",
"closed_at": "2025-07-23T16:46:06Z",
"merged_at": "2025-07-23T16:46:06Z",
"merge_commit_sha": "4d3578edbe35acc343d04ed91be6f9391bbd8dc6",
"assignee": null,
"assignees": [],
"requested_reviewers": [],
"requested_teams": [],
"labels": [],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3303/commits",
"review_comments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3303/comments",
"review_comment_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3303/comments",
"statuses_url": "https://api.github.com/repos/shadps4-emu/shadPS4/statuses/2de7e5e22ccc81289f8998a9e0231daab70cba6b",
"head": {
"label": "raphaelthegreat:main",
"ref": "main",
"sha": "2de7e5e22ccc81289f8998a9e0231daab70cba6b",
"user": {
"login": "raphaelthegreat",
"id": 47210458,
"node_id": "MDQ6VXNlcjQ3MjEwNDU4",
"avatar_url": "https://avatars.githubusercontent.com/u/47210458?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/raphaelthegreat",
"html_url": "https://github.com/raphaelthegreat",
"followers_url": "https://api.github.com/users/raphaelthegreat/followers",
"following_url": "https://api.github.com/users/raphaelthegreat/following{/other_user}",
"gists_url": "https://api.github.com/users/raphaelthegreat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/raphaelthegreat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/raphaelthegreat/subscriptions",
"organizations_url": "https://api.github.com/users/raphaelthegreat/orgs",
"repos_url": "https://api.github.com/users/raphaelthegreat/repos",
"events_url": "https://api.github.com/users/raphaelthegreat/events{/privacy}",
"received_events_url": "https://api.github.com/users/raphaelthegreat/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"repo": {
"id": 708368859,
"node_id": "R_kgDOKjjZ2w",
"name": "shadPS4",
"full_name": "raphaelthegreat/shadPS4",
"private": false,
"owner": {
"login": "raphaelthegreat",
"id": 47210458,
"node_id": "MDQ6VXNlcjQ3MjEwNDU4",
"avatar_url": "https://avatars.githubusercontent.com/u/47210458?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/raphaelthegreat",
"html_url": "https://github.com/raphaelthegreat",
"followers_url": "https://api.github.com/users/raphaelthegreat/followers",
"following_url": "https://api.github.com/users/raphaelthegreat/following{/other_user}",
"gists_url": "https://api.github.com/users/raphaelthegreat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/raphaelthegreat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/raphaelthegreat/subscriptions",
"organizations_url": "https://api.github.com/users/raphaelthegreat/orgs",
"repos_url": "https://api.github.com/users/raphaelthegreat/repos",
"events_url": "https://api.github.com/users/raphaelthegreat/events{/privacy}",
"received_events_url": "https://api.github.com/users/raphaelthegreat/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/raphaelthegreat/shadPS4",
"description": "PS4 emulator for windows",
"fork": true,
"url": "https://api.github.com/repos/raphaelthegreat/shadPS4",
"forks_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/forks",
"keys_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/teams",
"hooks_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/hooks",
"issue_events_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/issues/events{/number}",
"events_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/events",
"assignees_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/assignees{/user}",
"branches_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/branches{/branch}",
"tags_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/tags",
"blobs_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/statuses/{sha}",
"languages_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/languages",
"stargazers_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/stargazers",
"contributors_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/contributors",
"subscribers_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/subscribers",
"subscription_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/subscription",
"commits_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/contents/{+path}",
"compare_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/merges",
"archive_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/downloads",
"issues_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/issues{/number}",
"pulls_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/pulls{/number}",
"milestones_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/milestones{/number}",
"notifications_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/labels{/name}",
"releases_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/releases{/id}",
"deployments_url": "https://api.github.com/repos/raphaelthegreat/shadPS4/deployments",
"created_at": "2023-10-22T11:08:14Z",
"updated_at": "2025-07-23T14:47:08Z",
"pushed_at": "2025-07-23T16:39:43Z",
"git_url": "git://github.com/raphaelthegreat/shadPS4.git",
"ssh_url": "git@github.com:raphaelthegreat/shadPS4.git",
"clone_url": "https://github.com/raphaelthegreat/shadPS4.git",
"svn_url": "https://github.com/raphaelthegreat/shadPS4",
"homepage": "https://shadps4.net/",
"size": 43350,
"stargazers_count": 5,
"watchers_count": 5,
"language": "C++",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 3,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "gpl-2.0",
"name": "GNU General Public License v2.0",
"spdx_id": "GPL-2.0",
"url": "https://api.github.com/licenses/gpl-2.0",
"node_id": "MDc6TGljZW5zZTg="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "public",
"forks": 3,
"open_issues": 0,
"watchers": 5,
"default_branch": "main"
}
},
"base": {
"label": "shadps4-emu:main",
"ref": "main",
"sha": "800b332f605806f59404c2d3f53f93c3c348f177",
"user": {
"login": "shadps4-emu",
"id": 152868421,
"node_id": "O_kgDOCRyWRQ",
"avatar_url": "https://avatars.githubusercontent.com/u/152868421?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shadps4-emu",
"html_url": "https://github.com/shadps4-emu",
"followers_url": "https://api.github.com/users/shadps4-emu/followers",
"following_url": "https://api.github.com/users/shadps4-emu/following{/other_user}",
"gists_url": "https://api.github.com/users/shadps4-emu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shadps4-emu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shadps4-emu/subscriptions",
"organizations_url": "https://api.github.com/users/shadps4-emu/orgs",
"repos_url": "https://api.github.com/users/shadps4-emu/repos",
"events_url": "https://api.github.com/users/shadps4-emu/events{/privacy}",
"received_events_url": "https://api.github.com/users/shadps4-emu/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"repo": {
"id": 556675672,
"node_id": "R_kgDOIS4yWA",
"name": "shadPS4",
"full_name": "shadps4-emu/shadPS4",
"private": false,
"owner": {
"login": "shadps4-emu",
"id": 152868421,
"node_id": "O_kgDOCRyWRQ",
"avatar_url": "https://avatars.githubusercontent.com/u/152868421?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shadps4-emu",
"html_url": "https://github.com/shadps4-emu",
"followers_url": "https://api.github.com/users/shadps4-emu/followers",
"following_url": "https://api.github.com/users/shadps4-emu/following{/other_user}",
"gists_url": "https://api.github.com/users/shadps4-emu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shadps4-emu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shadps4-emu/subscriptions",
"organizations_url": "https://api.github.com/users/shadps4-emu/orgs",
"repos_url": "https://api.github.com/users/shadps4-emu/repos",
"events_url": "https://api.github.com/users/shadps4-emu/events{/privacy}",
"received_events_url": "https://api.github.com/users/shadps4-emu/received_events",
"type": "Organization",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/shadps4-emu/shadPS4",
"description": "PlayStation 4 emulator for Windows, Linux and macOS written in C++",
"fork": false,
"url": "https://api.github.com/repos/shadps4-emu/shadPS4",
"forks_url": "https://api.github.com/repos/shadps4-emu/shadPS4/forks",
"keys_url": "https://api.github.com/repos/shadps4-emu/shadPS4/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/shadps4-emu/shadPS4/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/shadps4-emu/shadPS4/teams",
"hooks_url": "https://api.github.com/repos/shadps4-emu/shadPS4/hooks",
"issue_events_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/events{/number}",
"events_url": "https://api.github.com/repos/shadps4-emu/shadPS4/events",
"assignees_url": "https://api.github.com/repos/shadps4-emu/shadPS4/assignees{/user}",
"branches_url": "https://api.github.com/repos/shadps4-emu/shadPS4/branches{/branch}",
"tags_url": "https://api.github.com/repos/shadps4-emu/shadPS4/tags",
"blobs_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/shadps4-emu/shadPS4/statuses/{sha}",
"languages_url": "https://api.github.com/repos/shadps4-emu/shadPS4/languages",
"stargazers_url": "https://api.github.com/repos/shadps4-emu/shadPS4/stargazers",
"contributors_url": "https://api.github.com/repos/shadps4-emu/shadPS4/contributors",
"subscribers_url": "https://api.github.com/repos/shadps4-emu/shadPS4/subscribers",
"subscription_url": "https://api.github.com/repos/shadps4-emu/shadPS4/subscription",
"commits_url": "https://api.github.com/repos/shadps4-emu/shadPS4/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/shadps4-emu/shadPS4/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/shadps4-emu/shadPS4/contents/{+path}",
"compare_url": "https://api.github.com/repos/shadps4-emu/shadPS4/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/shadps4-emu/shadPS4/merges",
"archive_url": "https://api.github.com/repos/shadps4-emu/shadPS4/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/shadps4-emu/shadPS4/downloads",
"issues_url": "https://api.github.com/repos/shadps4-emu/shadPS4/issues{/number}",
"pulls_url": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls{/number}",
"milestones_url": "https://api.github.com/repos/shadps4-emu/shadPS4/milestones{/number}",
"notifications_url": "https://api.github.com/repos/shadps4-emu/shadPS4/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/shadps4-emu/shadPS4/labels{/name}",
"releases_url": "https://api.github.com/repos/shadps4-emu/shadPS4/releases{/id}",
"deployments_url": "https://api.github.com/repos/shadps4-emu/shadPS4/deployments",
"created_at": "2022-10-24T09:48:37Z",
"updated_at": "2025-07-23T16:28:17Z",
"pushed_at": "2025-07-23T16:26:39Z",
"git_url": "git://github.com/shadps4-emu/shadPS4.git",
"ssh_url": "git@github.com:shadps4-emu/shadPS4.git",
"clone_url": "https://github.com/shadps4-emu/shadPS4.git",
"svn_url": "https://github.com/shadps4-emu/shadPS4",
"homepage": "https://shadps4.net/",
"size": 42590,
"stargazers_count": 25061,
"watchers_count": 25061,
"language": "C++",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 1613,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 134,
"license": {
"key": "gpl-2.0",
"name": "GNU General Public License v2.0",
"spdx_id": "GPL-2.0",
"url": "https://api.github.com/licenses/gpl-2.0",
"node_id": "MDc6TGljZW5zZTg="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"cpp",
"cpp20",
"emulation",
"emulator",
"imgui",
"linux",
"macos",
"playstation4",
"ps4",
"sdl3",
"vulkan",
"windows"
],
"visibility": "public",
"forks": 1613,
"open_issues": 134,
"watchers": 25061,
"default_branch": "main"
}
},
"_links": {
"self": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/pulls/3303"
},
"html": {
"href": "https://github.com/shadps4-emu/shadPS4/pull/3303"
},
"issue": {
"href": "https://api.github.com/repos/shadps4-emu/shadPS4/issues/3303"
},
"comments": {