-
Notifications
You must be signed in to change notification settings - Fork 0
/
macosbeta.json
1411 lines (1411 loc) · 98.5 KB
/
macosbeta.json
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
{
"version": "https://jsonfeed.org/version/1.1",
"title": "r/macosbeta",
"description": "Welcome to /r/macOSBeta, Reddit's home for macOS beta software!",
"home_page_url": "https://reddit.com",
"feed_url": "https://raw.githubusercontent.com/jonathanlaniado/feeds/master/macosbeta.json",
"icon": "https://styles.redditmedia.com/t5_3954r/styles/communityIcon_32i3fcalolc61.png",
"favicon": "https://styles.redditmedia.com/t5_3954r/styles/communityIcon_32i3fcalolc61.png",
"items": [
{
"id": "1gp6nla",
"url": "/r/MacOSBeta/comments/1gp6nla/fuck/",
"external_url": "https://i.redd.it/04kl8z3oxc0e1.png",
"title": "Fuck",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1gp6nla/fuck/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1gp6nla/fuck/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/04kl8z3oxc0e1.png\" />",
"date_published": "2024-11-11T23:31:41+00:00",
"authors": [
{
"name": "Crazy-Newspaper-8523",
"url": "https://www.reddit.com/user/Crazy-Newspaper-8523"
}
]
},
{
"id": "1goyzi0",
"url": "/r/MacOSBeta/comments/1goyzi0/whats_new_in_152_beta_3/",
"external_url": "https://i.redd.it/rrmp032mdb0e1.jpeg",
"title": "What\u2019s new in 15.2 beta 3?",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1goyzi0/whats_new_in_152_beta_3/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1goyzi0/whats_new_in_152_beta_3/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/rrmp032mdb0e1.jpeg\" />",
"date_published": "2024-11-11T18:17:25+00:00",
"authors": [
{
"name": "mfarid2",
"url": "https://www.reddit.com/user/mfarid2"
}
]
},
{
"id": "1gkae2g",
"url": "/r/MacOSBeta/comments/1gkae2g/finally_got_image_playground_after_2_weeks/",
"external_url": "https://i.redd.it/42wvfc1ey3zd1.png",
"title": "Finally got Image Playground after 2 weeks!!",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1gkae2g/finally_got_image_playground_after_2_weeks/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1gkae2g/finally_got_image_playground_after_2_weeks/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/42wvfc1ey3zd1.png\" />",
"date_published": "2024-11-05T16:15:32+00:00",
"authors": [
{
"name": "Hvalomi",
"url": "https://www.reddit.com/user/Hvalomi"
}
]
},
{
"id": "1gjsh6n",
"url": "/r/MacOSBeta/comments/1gjsh6n/macos_152_beta_2_weather_in_menu_bar/",
"external_url": "https://i.redd.it/0xmfvd6qxyyd1.png",
"title": "macOS 15.2 beta 2 - Weather in Menu Bar",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1gjsh6n/macos_152_beta_2_weather_in_menu_bar/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1gjsh6n/macos_152_beta_2_weather_in_menu_bar/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/0xmfvd6qxyyd1.png\" />",
"date_published": "2024-11-04T23:23:03+00:00",
"authors": [
{
"name": "PatienceCandid3502",
"url": "https://www.reddit.com/user/PatienceCandid3502"
}
]
},
{
"id": "1gitnhg",
"url": "/r/MacOSBeta/comments/1gitnhg/finally_got_it/",
"external_url": "https://i.redd.it/y8lgcmhtcqyd1.jpeg",
"title": "Finally got it ",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1gitnhg/finally_got_it/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1gitnhg/finally_got_it/'>Reddit</a></caption><div><br></div><p>Brazil, requested it around 8 hours after it released.\nAnd by the way, how do you use Genmoji? Can\u2019t find the option </p><div><br></div><img src=\"https://i.redd.it/y8lgcmhtcqyd1.jpeg\" />",
"date_published": "2024-11-03T18:31:26+00:00",
"authors": [
{
"name": "Ok-Instruction-4467",
"url": "https://www.reddit.com/user/Ok-Instruction-4467"
}
]
},
{
"id": "1gfspp7",
"url": "/r/MacOSBeta/comments/1gfspp7/finally/",
"external_url": "https://i.redd.it/edcb2u86mxxd1.png",
"title": "FINALLY !!",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1gfspp7/finally/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1gfspp7/finally/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/edcb2u86mxxd1.png\" />",
"date_published": "2024-10-30T17:52:28+00:00",
"authors": [
{
"name": "someonerandomlmao",
"url": "https://www.reddit.com/user/someonerandomlmao"
}
]
},
{
"id": "1ge8k4w",
"url": "/r/MacOSBeta/comments/1ge8k4w/todays_apple_newsroom_release_shows_the/",
"external_url": "https://v.redd.it/nuyd64m4djxd1",
"title": "Today\u2019s Apple Newsroom release shows the redesigned Mail app working on macOS",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ge8k4w/todays_apple_newsroom_release_shows_the/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ge8k4w/todays_apple_newsroom_release_shows_the/'>Reddit</a></caption><div><br></div><p>If I had to guess, I\u2019d say it\u2019ll show up in macOS 15.2 but in a later beta as it\u2019s currently not available in 15.2 Beta 1</p>",
"date_published": "2024-10-28T17:56:33+00:00",
"authors": [
{
"name": "hazelfennec",
"url": "https://www.reddit.com/user/hazelfennec"
}
]
},
{
"id": "1gb13zk",
"url": "/r/MacOSBeta/comments/1gb13zk/macos_152_db_chatgpt_in_notes_with_a_real_example/",
"external_url": "https://v.redd.it/74jpcxaj3pwd1",
"title": "MacOS 15.2 DB - ChatGPT in Notes with a real example. IT'S INSANE",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1gb13zk/macos_152_db_chatgpt_in_notes_with_a_real_example/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1gb13zk/macos_152_db_chatgpt_in_notes_with_a_real_example/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-10-24T12:10:35+00:00",
"authors": [
{
"name": "PersonalityNo3031",
"url": "https://www.reddit.com/user/PersonalityNo3031"
}
]
},
{
"id": "1g8z8um",
"url": "/r/MacOSBeta/comments/1g8z8um/the_clean_up_feature_in_photos_app_on_macos_151/",
"external_url": "https://v.redd.it/pj01ygkw06wd1",
"title": "The Clean Up feature in Photos app on macOS 15.1 RC (24B82)",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1g8z8um/the_clean_up_feature_in_photos_app_on_macos_151/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1g8z8um/the_clean_up_feature_in_photos_app_on_macos_151/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-10-21T20:02:02+00:00",
"authors": [
{
"name": "GetVladimir",
"url": "https://www.reddit.com/user/GetVladimir"
}
]
},
{
"id": "1g8x14a",
"url": "/r/MacOSBeta/comments/1g8x14a/the_apple_intelligence_welcome_screen_on_macos/",
"external_url": "https://i.redd.it/sg6s20c1l5wd1.png",
"title": "The Apple Intelligence welcome screen on macOS 15.1 RC (24B82)",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1g8x14a/the_apple_intelligence_welcome_screen_on_macos/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1g8x14a/the_apple_intelligence_welcome_screen_on_macos/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/sg6s20c1l5wd1.png\" />",
"date_published": "2024-10-21T18:33:00+00:00",
"authors": [
{
"name": "GetVladimir",
"url": "https://www.reddit.com/user/GetVladimir"
}
]
},
{
"id": "1g4got7",
"url": "/r/MacOSBeta/comments/1g4got7/151_developer_beta_7_is_out_now/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1g4got7/151_developer_beta_7_is_out_now/",
"title": "15.1 Developer Beta 7 is out now.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1g4got7/151_developer_beta_7_is_out_now/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1g4got7/151_developer_beta_7_is_out_now/'>Reddit</a></caption><div><br></div><p>Once again it is time to hammer the update server.</p>",
"date_published": "2024-10-15T19:52:07+00:00",
"authors": [
{
"name": "ekinnee",
"url": "https://www.reddit.com/user/ekinnee"
}
]
},
{
"id": "1g4gwsq",
"url": "/r/MacOSBeta/comments/1g4gwsq/cannot_update_to_151_db7/",
"external_url": "https://i.redd.it/mkbb5trj7zud1.png",
"title": "Cannot update to 15.1 DB7",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1g4gwsq/cannot_update_to_151_db7/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1g4gwsq/cannot_update_to_151_db7/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/mkbb5trj7zud1.png\" />",
"date_published": "2024-10-15T20:01:28+00:00",
"authors": [
{
"name": "GH08TP",
"url": "https://www.reddit.com/user/GH08TP"
}
]
},
{
"id": "1fyd50p",
"url": "/r/MacOSBeta/comments/1fyd50p/macos_151_developer_beta_6_is_out_now/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1fyd50p/macos_151_developer_beta_6_is_out_now/",
"title": "macOS 15.1 Developer Beta 6 is out now",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fyd50p/macos_151_developer_beta_6_is_out_now/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fyd50p/macos_151_developer_beta_6_is_out_now/'>Reddit</a></caption><div><br></div><p>Build number is 24B5070a.</p>",
"date_published": "2024-10-07T17:19:42+00:00",
"authors": [
{
"name": "xbPorter",
"url": "https://www.reddit.com/user/xbPorter"
}
]
},
{
"id": "1ftb0ea",
"url": "/r/MacOSBeta/comments/1ftb0ea/ive_just_realized_that_you_can_drag_the_new_siri/",
"external_url": "https://v.redd.it/e3hocsi231sd1",
"title": "I've just realized that you can drag the new Siri UI Around your desktop.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ftb0ea/ive_just_realized_that_you_can_drag_the_new_siri/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ftb0ea/ive_just_realized_that_you_can_drag_the_new_siri/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-10-01T00:21:52+00:00",
"authors": [
{
"name": "charlsplayz",
"url": "https://www.reddit.com/user/charlsplayz"
}
]
},
{
"id": "1fnwbtk",
"url": "/r/MacOSBeta/comments/1fnwbtk/new_low_power_mode_toggle_in_battery_menu_bar/",
"external_url": "https://i.redd.it/dkh6r9yvpmqd1.png",
"title": "New Low Power Mode Toggle in Battery Menu Bar Icon! [MacOS 15.1 DB5]",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fnwbtk/new_low_power_mode_toggle_in_battery_menu_bar/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fnwbtk/new_low_power_mode_toggle_in_battery_menu_bar/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/dkh6r9yvpmqd1.png\" />",
"date_published": "2024-09-23T21:45:14+00:00",
"authors": [
{
"name": "IFURMLN",
"url": "https://www.reddit.com/user/IFURMLN"
}
]
},
{
"id": "1fkkrwa",
"url": "/r/MacOSBeta/comments/1fkkrwa/solved_failed_to_personalize_the_software_update/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1fkkrwa/solved_failed_to_personalize_the_software_update/",
"title": "SOLVED: Failed to Personalize the Software Update",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fkkrwa/solved_failed_to_personalize_the_software_update/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fkkrwa/solved_failed_to_personalize_the_software_update/'>Reddit</a></caption><div><br></div><p>I've been trying to install MacOS 15.1 beta 4 and kept getting the same error that everyone else is getting. I've seen a bunch of people around the internet saying the only solution was to put your mac in DFU mode, connect to another mac, and go through the recovery process. But, here's what I did to fix the problem:</p>\n<p>Step 1: Disable find my mac in icloud settings.</p>\n<p>Step 2: Install the update.</p>\n<p>That was it \ud83d\ude33</p>\n<p>Edit: Don't forget to re-enable find my mac. It won't turn itself back on!</p>",
"date_published": "2024-09-19T13:24:52+00:00",
"authors": [
{
"name": "FoShoMyUsername",
"url": "https://www.reddit.com/user/FoShoMyUsername"
}
]
},
{
"id": "1fjj8a6",
"url": "/r/MacOSBeta/comments/1fjj8a6/anyone_getting_new_login_screen_after_installing/",
"external_url": "https://i.redd.it/v2djx8c1khpd1.jpeg",
"title": "Anyone getting new login screen after installing MacOS 18.1 beta 4 ????\nThese words also also shines just like new siri animation, sry i couldn't record that..",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fjj8a6/anyone_getting_new_login_screen_after_installing/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fjj8a6/anyone_getting_new_login_screen_after_installing/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/v2djx8c1khpd1.jpeg\" />",
"date_published": "2024-09-18T03:19:12+00:00",
"authors": [
{
"name": "WillingnessSlow249",
"url": "https://www.reddit.com/user/WillingnessSlow249"
}
]
},
{
"id": "1fjcwv3",
"url": "/r/MacOSBeta/comments/1fjcwv3/straight_from_the_feedback_app_apple_is/",
"external_url": "https://i.redd.it/y30hdqw54gpd1.jpeg",
"title": "Straight from the feedback app. Apple is definitely aware the issues updating macOS. More than 10 recent reports (that\u2019s the max)",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fjcwv3/straight_from_the_feedback_app_apple_is/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fjcwv3/straight_from_the_feedback_app_apple_is/'>Reddit</a></caption><div><br></div><p>The </p><div><br></div><img src=\"https://i.redd.it/y30hdqw54gpd1.jpeg\" />",
"date_published": "2024-09-17T22:27:53+00:00",
"authors": [
{
"name": "Matuteg",
"url": "https://www.reddit.com/user/Matuteg"
}
]
},
{
"id": "1fj7uer",
"url": "/r/MacOSBeta/comments/1fj7uer/clean_up_available_in_eu_and_summarize/",
"external_url": "https://i.redd.it/7l6kjw6l4fpd1.jpeg",
"title": "Clean up available in EU and summarize notifications with Beta 4",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fj7uer/clean_up_available_in_eu_and_summarize/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fj7uer/clean_up_available_in_eu_and_summarize/'>Reddit</a></caption><div><br></div><p>I know clean up was available before but at least here in the eu from what i have read it wasnt and now it is showing up</p><div><br></div><img src=\"https://i.redd.it/7l6kjw6l4fpd1.jpeg\" />",
"date_published": "2024-09-17T19:08:30+00:00",
"authors": [
{
"name": "Prals",
"url": "https://www.reddit.com/user/Prals"
}
]
},
{
"id": "1fj4yo0",
"url": "/r/MacOSBeta/comments/1fj4yo0/macos_sequoia_151_beta_4_now_available/",
"external_url": "https://9to5mac.com/2024/09/17/macos-sequoia-151-beta-4-now-available/",
"title": "macOS Sequoia 15.1 beta 4 now available",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fj4yo0/macos_sequoia_151_beta_4_now_available/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fj4yo0/macos_sequoia_151_beta_4_now_available/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-09-17T17:16:45+00:00",
"authors": [
{
"name": "sicilian504",
"url": "https://www.reddit.com/user/sicilian504"
}
]
},
{
"id": "1fib5a2",
"url": "/r/MacOSBeta/comments/1fib5a2/same_problem_when_switching_to_the_official/",
"external_url": "https://www.reddit.com/gallery/1fib5a2",
"title": "Same problem when switching to the official release, beta updates are disabled",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fib5a2/same_problem_when_switching_to_the_official/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fib5a2/same_problem_when_switching_to_the_official/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-09-16T17:52:20+00:00",
"authors": [
{
"name": "DirectorX27",
"url": "https://www.reddit.com/user/DirectorX27"
}
]
},
{
"id": "1fekrsy",
"url": "/r/MacOSBeta/comments/1fekrsy/macos_needs_a_new_volume_hud_asap/",
"external_url": "https://i.redd.it/jgshaqa4t8od1.jpeg",
"title": "macOS needs a new Volume HUD asap.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fekrsy/macos_needs_a_new_volume_hud_asap/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fekrsy/macos_needs_a_new_volume_hud_asap/'>Reddit</a></caption><div><br></div><p>macOS needs a new Volume HUD asap, I think everyone is annoyed by the current one. I personally have been hoping Apple updates it for every major release for about 3 years. But still in 2024 everything remains unchanged.</p><div><br></div><img src=\"https://i.redd.it/jgshaqa4t8od1.jpeg\" />",
"date_published": "2024-09-11T20:49:22+00:00",
"authors": [
{
"name": "RealFerst",
"url": "https://www.reddit.com/user/RealFerst"
}
]
},
{
"id": "1fcy05v",
"url": "/r/MacOSBeta/comments/1fcy05v/macos_sequoia_150_rc_is_now_out/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1fcy05v/macos_sequoia_150_rc_is_now_out/",
"title": "macOS Sequoia 15.0 RC is now out!",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1fcy05v/macos_sequoia_150_rc_is_now_out/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1fcy05v/macos_sequoia_150_rc_is_now_out/'>Reddit</a></caption><div><br></div><p>Build number is 24A335.</p>",
"date_published": "2024-09-09T19:25:37+00:00",
"authors": [
{
"name": "xbPorter",
"url": "https://www.reddit.com/user/xbPorter"
}
]
},
{
"id": "1f3xwlk",
"url": "/r/MacOSBeta/comments/1f3xwlk/apple_intelligence_no_longer_requires_setting_the/",
"external_url": "https://9to5mac.com/2024/08/28/apple-intelligence-no-longer-requires-setting-the-device-region-to-the-us/",
"title": "Apple Intelligence no longer requires setting the device to US region [BUT... still no AI for folks in EU, China]",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1f3xwlk/apple_intelligence_no_longer_requires_setting_the/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1f3xwlk/apple_intelligence_no_longer_requires_setting_the/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-08-29T09:12:03+00:00",
"authors": [
{
"name": "Dreaming_Blackbirds",
"url": "https://www.reddit.com/user/Dreaming_Blackbirds"
}
]
},
{
"id": "1f3fq1i",
"url": "/r/MacOSBeta/comments/1f3fq1i/macos_151_beta_3_rolling_out/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1f3fq1i/macos_151_beta_3_rolling_out/",
"title": "macOS 15.1 beta 3 rolling out",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1f3fq1i/macos_151_beta_3_rolling_out/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1f3fq1i/macos_151_beta_3_rolling_out/'>Reddit</a></caption><div><br></div><p>According to <a href=\"https://9to5mac.com/2024/08/28/macos-sequoia-151-developer-beta-3-now-rolling-out/\">9to5mac</a>, the Beta 3 has now started rolling out. </p>",
"date_published": "2024-08-28T17:13:49+00:00",
"authors": [
{
"name": "chemical_context",
"url": "https://www.reddit.com/user/chemical_context"
}
]
},
{
"id": "1f3c5jk",
"url": "/r/MacOSBeta/comments/1f3c5jk/sequoia_background_time_also_shows_the_real_time/",
"external_url": "https://i.redd.it/2bndfqy54fld1.png",
"title": "Sequoia background time also shows the real time",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1f3c5jk/sequoia_background_time_also_shows_the_real_time/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1f3c5jk/sequoia_background_time_also_shows_the_real_time/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/2bndfqy54fld1.png\" />",
"date_published": "2024-08-28T14:50:02+00:00",
"authors": [
{
"name": "justareddituser404",
"url": "https://www.reddit.com/user/justareddituser404"
}
]
},
{
"id": "1f33u6x",
"url": "/r/MacOSBeta/comments/1f33u6x/sequoia_is_great/",
"external_url": "https://i.redd.it/yret6s35tcld1.png",
"title": "Sequoia is great!",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1f33u6x/sequoia_is_great/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1f33u6x/sequoia_is_great/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/yret6s35tcld1.png\" />",
"date_published": "2024-08-28T07:04:32+00:00",
"authors": [
{
"name": "Classic_Slip_9370",
"url": "https://www.reddit.com/user/Classic_Slip_9370"
}
]
},
{
"id": "1f0akr7",
"url": "/r/MacOSBeta/comments/1f0akr7/rogueamoebas_soundsource_now_works_on_macos_15/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1f0akr7/rogueamoebas_soundsource_now_works_on_macos_15/",
"title": "RogueAmoeba's SoundSource now works on macOS 15 Sequoia!",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1f0akr7/rogueamoebas_soundsource_now_works_on_macos_15/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1f0akr7/rogueamoebas_soundsource_now_works_on_macos_15/'>Reddit</a></caption><div><br></div><p>RogueAmoeba just released a beta test build for SoundSource, meaning it now works on Sequoia - on both 15.0 and 15.1 Developer and Public Betas).</p>\n<p>SoundSource is a per-app audio mixer, that also supports all installed AU Effects - including Sound Isolation.</p>\n<p>It also no longer requires running in Reduced Security Mode, which is very nice to see!</p>\n<p>If you want to use, follow their setup guide at: <a href=\"https://rogueamoeba.com/support/knowledgebase/?showArticle=Misc-AboutTestReleases\">https://rogueamoeba.com/support/knowledgebase/?showArticle=Misc-AboutTestReleases</a></p>",
"date_published": "2024-08-24T17:22:08+00:00",
"authors": [
{
"name": "tysonedwards",
"url": "https://www.reddit.com/user/tysonedwards"
}
]
},
{
"id": "1etotv5",
"url": "/r/MacOSBeta/comments/1etotv5/gatekeeper_can_be_disabled_via_spctl_again_as_of/",
"external_url": "https://i.redd.it/iqpnleiw21jd1.png",
"title": "Gatekeeper can be disabled via spctl again as of the most recent 15.0 dev betas (15.0 DB6)",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1etotv5/gatekeeper_can_be_disabled_via_spctl_again_as_of/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1etotv5/gatekeeper_can_be_disabled_via_spctl_again_as_of/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/iqpnleiw21jd1.png\" />",
"date_published": "2024-08-16T13:29:39+00:00",
"authors": [
{
"name": "xbPorter",
"url": "https://www.reddit.com/user/xbPorter"
}
]
},
{
"id": "1esedi0",
"url": "/r/MacOSBeta/comments/1esedi0/apple_intelligence_highlights_obvious_spam/",
"external_url": "https://www.reddit.com/gallery/1esedi0",
"title": "Apple Intelligence highlights obvious spam",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1esedi0/apple_intelligence_highlights_obvious_spam/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1esedi0/apple_intelligence_highlights_obvious_spam/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-08-14T22:14:26+00:00",
"authors": [
{
"name": "juggernaut365",
"url": "https://www.reddit.com/user/juggernaut365"
}
]
},
{
"id": "1ery9oc",
"url": "/r/MacOSBeta/comments/1ery9oc/macos_151db2_apple_intelligence_not_available/",
"external_url": "https://i.redd.it/2s704lfwxlid1.png",
"title": "macOS 15.1DB2 - Apple Intelligence not available when starting from external volume.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ery9oc/macos_151db2_apple_intelligence_not_available/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ery9oc/macos_151db2_apple_intelligence_not_available/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/2s704lfwxlid1.png\" />",
"date_published": "2024-08-14T10:36:00+00:00",
"authors": [
{
"name": "vikemosabe",
"url": "https://www.reddit.com/user/vikemosabe"
}
]
},
{
"id": "1erwm88",
"url": "/r/MacOSBeta/comments/1erwm88/this_is_the_only_title_that_doesnt_fit_on_system/",
"external_url": "https://i.redd.it/o3t577cfelid1.png",
"title": "This is the only title that doesn't fit on System Settings side bar. What do you think apple will do? Rename or make the side bar wider?",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1erwm88/this_is_the_only_title_that_doesnt_fit_on_system/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1erwm88/this_is_the_only_title_that_doesnt_fit_on_system/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/o3t577cfelid1.png\" />",
"date_published": "2024-08-14T08:47:40+00:00",
"authors": [
{
"name": "WeezyWally",
"url": "https://www.reddit.com/user/WeezyWally"
}
]
},
{
"id": "1erhy0x",
"url": "/r/MacOSBeta/comments/1erhy0x/new_backgrounds_for_facetime_includes_shots/",
"external_url": "https://i.redd.it/ewbbaef6ohid1.png",
"title": "New Backgrounds for Facetime includes shots around Apple Park. (Sequoia 16.1 DB2)",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1erhy0x/new_backgrounds_for_facetime_includes_shots/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1erhy0x/new_backgrounds_for_facetime_includes_shots/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/ewbbaef6ohid1.png\" />",
"date_published": "2024-08-13T20:13:32+00:00",
"authors": [
{
"name": "17parkc",
"url": "https://www.reddit.com/user/17parkc"
}
]
},
{
"id": "1eqthkq",
"url": "/r/MacOSBeta/comments/1eqthkq/macos_151_beta_2_pro_black_wallpaper_is_back/",
"external_url": "https://i.redd.it/kpidwyslnbid1.png",
"title": "macOS 15.1 Beta 2 - Pro Black wallpaper is back!",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1eqthkq/macos_151_beta_2_pro_black_wallpaper_is_back/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1eqthkq/macos_151_beta_2_pro_black_wallpaper_is_back/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/kpidwyslnbid1.png\" />",
"date_published": "2024-08-13T00:00:01+00:00",
"authors": [
{
"name": "krabbypat",
"url": "https://www.reddit.com/user/krabbypat"
}
]
},
{
"id": "1eqm34x",
"url": "/r/MacOSBeta/comments/1eqm34x/three_new_sequoia_wallpapers_available_for_151/",
"external_url": "https://i.redd.it/wwi5fcvq5aid1.png",
"title": "Three New Sequoia Wallpapers Available for 15.1 Beta 2 and 15.0 Beta 6.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1eqm34x/three_new_sequoia_wallpapers_available_for_151/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1eqm34x/three_new_sequoia_wallpapers_available_for_151/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/wwi5fcvq5aid1.png\" />",
"date_published": "2024-08-12T18:57:41+00:00",
"authors": [
{
"name": "17parkc",
"url": "https://www.reddit.com/user/17parkc"
}
]
},
{
"id": "1eqkknf",
"url": "/r/MacOSBeta/comments/1eqkknf/151_beta_2_is_out/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1eqkknf/151_beta_2_is_out/",
"title": "15.1 Beta 2 is out!",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1eqkknf/151_beta_2_is_out/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1eqkknf/151_beta_2_is_out/'>Reddit</a></caption><div><br></div><p>15.1 Beta 2 is out!</p>\n<p>macOS Sequoia 15.1 Developer Beta 2 (24B5024e)</p>\n<p>Looks like it's essentially the same as <a href=\"https://developer.apple.com/documentation/macos-release-notes/macos-15-release-notes\">macOS Sequoia 15 Beta 6</a>:</p>\n<p><a href=\"https://developer.apple.com/documentation/macos-release-notes/macos-15_1-release-notes\">https://developer.apple.com/documentation/macos-release-notes/macos-15_1-release-notes</a></p>\n<h1>macOS Sequoia 15.1 Beta 2 Release Notes</h1>\n<p>Update your apps to use new features, and test your apps against API changes.</p>\n<h1><a href=\"https://developer.apple.com/documentation/macos-release-notes/macos-15_1-release-notes#Overview\">Overview</a></h1>\n<p>The macOS 15.1 SDK provides support to develop apps for Mac computers running Sequoia 15.1 beta 2. The SDK comes bundled with Xcode 16.1, available from the Mac App Store. For information on the compatibility requirements for Xcode 16.1, see\u00a0<a href=\"https://developer.apple.com/documentation/Xcode-Release-Notes/xcode-16_1-release-notes\">Xcode 16.1 Release Notes</a>.</p>\n<h1><a href=\"https://developer.apple.com/documentation/macos-release-notes/macos-15_1-release-notes#General\">General</a></h1>\n<h1><a href=\"https://developer.apple.com/documentation/macos-release-notes/macos-15_1-release-notes#Notes\">Notes</a></h1>\n<ul>\n<li>See the\u00a0<a href=\"https://developer.apple.com/documentation/macos-release-notes/macos-15-release-notes\">macOS Sequoia 15 Beta 6 Release Notes</a>\u00a0for additional details about new features, resolved issues, known issues, and deprecations. (132606748)</li>\n</ul>\n<h1><a href=\"https://developer.apple.com/documentation/macos-release-notes/macos-15_1-release-notes#System-Integrity-Protection\">System Integrity Protection</a></h1>\n<h1><a href=\"https://developer.apple.com/documentation/macos-release-notes/macos-15_1-release-notes#Resolved-Issues\">Resolved Issues</a></h1>\n<ul>\n<li>Fixed: Users might be incorrectly prompted when an app that is distributed through TestFlight attempts to access an application group container. (131606564) (FB14288230)</li>\n</ul>",
"date_published": "2024-08-12T17:58:40+00:00",
"authors": [
{
"name": "chinese-telephone",
"url": "https://www.reddit.com/user/chinese-telephone"
}
]
},
{
"id": "1eopjtw",
"url": "/r/MacOSBeta/comments/1eopjtw/frustrated_that_the_macos_devs_cant_seem_to/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1eopjtw/frustrated_that_the_macos_devs_cant_seem_to/",
"title": "Frustrated that the macOS devs can't seem to design a fast, functional, and consistent system-wide Photos picker.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1eopjtw/frustrated_that_the_macos_devs_cant_seem_to/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1eopjtw/frustrated_that_the_macos_devs_cant_seem_to/'>Reddit</a></caption><div><br></div><p>Like the nerd I am, I was beyond elated when Apple revealed that the Photos picker was to be redesigned in macOS Sequoia. It's needed a redesign for some time and was sorely lacking in many functional aspects.</p>\n<p>https://preview.redd.it/9aycdjdu0thd1.png?width=1624&format=png&auto=webp&s=94ab0b455c072a21a9974789e5a9842cbf1a01e1</p>\n<p>This looks so fresh and it's mostly in-line with the design of modern macOS and iOS. However, this only extends to the version of the picker that's included in certain (mostly Catalyst) apps like Notes, Feedback, Shortcuts, Freeform, and (to a certain extent) Home. It even still shows smart albums which have been sorely neglected! I have only a few small suggestions for it to be even better:</p>\n<ol>\n<li>The picker window should be resizable. Interestingly, it is resizable in Pages, Numbers, and Keynote, but apparently not anywhere else.</li>\n<li>The album list on the sidebar looks a lil squished when the title takes up 2 lines, and the drop down arrow for album folders should not move the preview image to the right of where it would be on a singular album. It should be to the left of the preview image, without moving the preview image or the title text so that everything above and below can stay aligned. Picky me lol!</li>\n<li>The search bar should be visible on every screen, not just the main Photos screen.</li>\n<li>The option to enable/disable file titles would be nice. Currently they aren't visible.</li>\n</ol>\n<p><strong>And now y'all, this is where it all falls apart into a mess of old, new, and weird.</strong></p>\n<ul>\n<li>Visit the Messages app and you get a watered-down version of this picker, which has no sidebar of media types, albums, and other filters. You have to type in the search bar and hope that it recommends your desired filter in the limited number of options that pop up.</li>\n</ul>\n<p>https://preview.redd.it/mokgnt3q1thd1.jpg?width=3584&format=pjpg&auto=webp&s=355ad81e99a1e69ee6e66470bee9784a485be0f2</p>\n<ul>\n<li>The picker for room & home backgrounds in the Home app is much smaller than the picker in other apps since it's limited by the width of the Home/Room Settings window behind it. It also doesn't let you select and highlight an image in the grid before importing it so you could use QuickLook or navigate using your keyboard. You can Right Click / Ctrl + Click on an image to get the QuickLook option, but it's janky.</li>\n</ul>\n<p>https://preview.redd.it/zi4rfxjc0thd1.jpg?width=3584&format=pjpg&auto=webp&s=977b1a90317708e197e407a4405fc11576028bf4</p>\n<ul>\n<li>The Contacts app has its own special picker which doesn't have a search bar or media filters; only albums and Favorites.</li>\n</ul>\n<p>https://preview.redd.it/b33ibdpd2thd1.png?width=1904&format=png&auto=webp&s=e9514f3dccbfad448b39b60dc392f0ee50e26127</p>\n<ul>\n<li>The Mail app inexplicably still has the old picker. Additionally, at least on my Mac, I only add from Photo Booth, not Photos.</li>\n</ul>\n<p>https://preview.redd.it/7mcfs8993thd1.png?width=3360&format=png&auto=webp&s=3c06627350b0ae0c394a329c9cd478553bf2585a</p>\n<ul>\n<li>Lastly, we get to good ol' Finder. Well, that is the Finder file picker. That's what you get when you click Choose File on a website or import a file into any other app like Affinity. This has gotten progressively worse over the last couple years, most notably the loss of all the filters that used to exist at the top of that screen. All that's there now is a grid of photos sorted from newest to oldest. No options, no albums, no (good, proper) search, nothing. Compared to the new picker, it is insanely slow, taking ages to load your pictures if you have a large library.</li>\n</ul>\n<p>https://preview.redd.it/m2ung4e35thd1.jpg?width=2296&format=pjpg&auto=webp&s=4e3fb4f41ba4d088fc62e147a69e4bdff9899378</p>\n<p><a href=\"https://preview.redd.it/5fx0glu15thd1.jpg?width=1500&format=pjpg&auto=webp&s=88be54f79d0326ccde32e9d5573308545a022bc9\">Compare to this screenshot from Jarrod Blundy (HeyDingus) in January 2022, where you could filter by album or media type. Loading your library was just as slow as it is today, honestly maybe even slower.</a></p>\n<p><a href=\"https://heydingus.net/blog/2022/1/the-macos-photo-library-picker-doesnt-have-to-be-so-slow\">The macOS Photo Library Picker Doesn\u2019t Have to Be So Slow | HeyDingus</a></p>\n<p>Apple seriously needs to do some clean-up and replace the antiquated and quirky versions of the Photos picker with the new one shown in the very first screenshot. Finder definitely seems like it would be the hardest since it's such an old UI and framework in comparison to the new picker. But it needs doing sooner rather than later!</p>\n<p>I'd love to hear y'all's thoughts on this. Your frustrations, comments, other strange things you noticed about these pickers.</p>",
"date_published": "2024-08-10T10:08:51+00:00",
"authors": [
{
"name": "dollartreemustachio",
"url": "https://www.reddit.com/user/dollartreemustachio"
}
]
},
{
"id": "1emygdc",
"url": "/r/MacOSBeta/comments/1emygdc/couldnt_figure_out_how_to_stop_an_app_from/",
"external_url": "https://v.redd.it/20zfp1wirdhd1",
"title": "Couldn't figure out how to stop an app from downloading so I faded it out of existence",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1emygdc/couldnt_figure_out_how_to_stop_an_app_from/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1emygdc/couldnt_figure_out_how_to_stop_an_app_from/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-08-08T06:01:07+00:00",
"authors": [
{
"name": "Stinkeepoo",
"url": "https://www.reddit.com/user/Stinkeepoo"
}
]
},
{
"id": "1elsd5f",
"url": "/r/MacOSBeta/comments/1elsd5f/macos_sequoia_adds_weekly_permission_prompt_for/",
"external_url": "https://9to5mac.com/2024/08/06/macos-sequoia-screen-recording-privacy-prompt/",
"title": "macOS Sequoia adds weekly permission prompt for screenshot and screen recording apps",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1elsd5f/macos_sequoia_adds_weekly_permission_prompt_for/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1elsd5f/macos_sequoia_adds_weekly_permission_prompt_for/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-08-06T20:31:40+00:00",
"authors": [
{
"name": "fkick",
"url": "https://www.reddit.com/user/fkick"
}
]
},
{
"id": "1ei3hpi",
"url": "/r/MacOSBeta/comments/1ei3hpi/repeatedly_showing_app_name_can_access_this/",
"external_url": "https://i.redd.it/1ru4rtqt77gd1.png",
"title": "Repeatedly showing \"App name can access this computer's screen and audio. Do you want to continue to allow access? popup",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ei3hpi/repeatedly_showing_app_name_can_access_this/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ei3hpi/repeatedly_showing_app_name_can_access_this/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/1ru4rtqt77gd1.png\" />",
"date_published": "2024-08-02T06:55:39+00:00",
"authors": [
{
"name": "BTXYT",
"url": "https://www.reddit.com/user/BTXYT"
}
]
},
{
"id": "1ehivcp",
"url": "/r/MacOSBeta/comments/1ehivcp/macos_151_beta_1_apple_intelligence_backend/",
"external_url": "https://www.reddit.com/gallery/1ehivcp",
"title": "macOS 15.1 Beta 1 | Apple Intelligence Backend Prompts",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ehivcp/macos_151_beta_1_apple_intelligence_backend/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ehivcp/macos_151_beta_1_apple_intelligence_backend/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-08-01T15:02:00+00:00",
"authors": [
{
"name": "devanxd2000",
"url": "https://www.reddit.com/user/devanxd2000"
}
]
},
{
"id": "1ehg759",
"url": "/r/MacOSBeta/comments/1ehg759/intelligence_is_kinda_sick_what_funny_summaries/",
"external_url": "https://www.reddit.com/gallery/1ehg759",
"title": "\uf8ffIntelligence is kinda sick! What funny summaries have you guys had so far?",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ehg759/intelligence_is_kinda_sick_what_funny_summaries/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ehg759/intelligence_is_kinda_sick_what_funny_summaries/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-08-01T13:05:53+00:00",
"authors": [
{
"name": "Jackamo6200",
"url": "https://www.reddit.com/user/Jackamo6200"
}
]
},
{
"id": "1egok79",
"url": "/r/MacOSBeta/comments/1egok79/never_change_siri_never_change/",
"external_url": "https://i.redd.it/plrrf17l6vfd1.png",
"title": "never change siri, never change",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1egok79/never_change_siri_never_change/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1egok79/never_change_siri_never_change/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/plrrf17l6vfd1.png\" />",
"date_published": "2024-07-31T14:27:26+00:00",
"authors": [
{
"name": "league_9240",
"url": "https://www.reddit.com/user/league_9240"
}
]
},
{
"id": "1eg7zaq",
"url": "/r/MacOSBeta/comments/1eg7zaq/average_macos_15_experience/",
"external_url": "https://v.redd.it/x9z8o42zoqfd1",
"title": "Average macOS 15 experience",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1eg7zaq/average_macos_15_experience/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1eg7zaq/average_macos_15_experience/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-07-30T23:21:10+00:00",
"authors": [
{
"name": "Able_Rip6699",
"url": "https://www.reddit.com/user/Able_Rip6699"
}
]
},
{
"id": "1efxexa",
"url": "/r/MacOSBeta/comments/1efxexa/why_apple_didnt_bring_neural_engine_stats_to/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1efxexa/why_apple_didnt_bring_neural_engine_stats_to/",
"title": "Why apple didn\u2019t bring \u201cneural engine\u201d stats to Activity monitor?",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1efxexa/why_apple_didnt_bring_neural_engine_stats_to/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1efxexa/why_apple_didnt_bring_neural_engine_stats_to/'>Reddit</a></caption><div><br></div><p>Since we are approaching the first apple intelligence release, why apple didn\u2019t provide a way to monitor neural engines?</p>",
"date_published": "2024-07-30T16:13:27+00:00",
"authors": [
{
"name": "mfarid2",
"url": "https://www.reddit.com/user/mfarid2"
}
]
},
{
"id": "1efntoo",
"url": "/r/MacOSBeta/comments/1efntoo/touch_bar_siri_icon_not_updated_to_new_apple/",
"external_url": "https://i.redd.it/ln407x6m5mfd1.jpeg",
"title": "Touch Bar Siri Icon not updated to new Apple Intelligence logo?",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1efntoo/touch_bar_siri_icon_not_updated_to_new_apple/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1efntoo/touch_bar_siri_icon_not_updated_to_new_apple/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/ln407x6m5mfd1.jpeg\" />",
"date_published": "2024-07-30T08:05:27+00:00",
"authors": [
{
"name": "eXperienceddddd",
"url": "https://www.reddit.com/user/eXperienceddddd"
}
]
},
{
"id": "1ef7734",
"url": "/r/MacOSBeta/comments/1ef7734/macos_151b1_apple_intelligence/",
"external_url": "https://i.redd.it/1s1my07w5ifd1.jpeg",
"title": "[macOS 15.1b1] Apple Intelligence",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ef7734/macos_151b1_apple_intelligence/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ef7734/macos_151b1_apple_intelligence/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/1s1my07w5ifd1.jpeg\" />",
"date_published": "2024-07-29T18:39:51+00:00",
"authors": [
{
"name": "vincedes3",
"url": "https://www.reddit.com/user/vincedes3"
}
]
},
{
"id": "1ef7mit",
"url": "/r/MacOSBeta/comments/1ef7mit/macos_151b1_apple_intelligence_in_mail/",
"external_url": "https://i.redd.it/ho6jfauy8ifd1.jpeg",
"title": "[macOS 15.1b1] Apple Intelligence in Mail",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ef7mit/macos_151b1_apple_intelligence_in_mail/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ef7mit/macos_151b1_apple_intelligence_in_mail/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/ho6jfauy8ifd1.jpeg\" />",
"date_published": "2024-07-29T18:57:04+00:00",
"authors": [
{
"name": "vincedes3",
"url": "https://www.reddit.com/user/vincedes3"
}
]
},
{
"id": "1ef6wy3",
"url": "/r/MacOSBeta/comments/1ef6wy3/151_beta_1_apple_intelligence/",
"external_url": "https://i.redd.it/fwmbtg8w3ifd1.jpeg",
"title": "15.1 Beta 1 Apple Intelligence",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ef6wy3/151_beta_1_apple_intelligence/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ef6wy3/151_beta_1_apple_intelligence/'>Reddit</a></caption><div><br></div><p>Let's see how it goes.</p><div><br></div><img src=\"https://i.redd.it/fwmbtg8w3ifd1.jpeg\" />",
"date_published": "2024-07-29T18:28:35+00:00",
"authors": [
{
"name": "sicilian504",
"url": "https://www.reddit.com/user/sicilian504"
}
]
},
{
"id": "1ef6c1s",
"url": "/r/MacOSBeta/comments/1ef6c1s/151_developer_beta/",
"external_url": "https://i.redd.it/rtqcnatezhfd1.png",
"title": "15.1 Developer Beta",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ef6c1s/151_developer_beta/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ef6c1s/151_developer_beta/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/rtqcnatezhfd1.png\" />",
"date_published": "2024-07-29T18:05:18+00:00",
"authors": [
{
"name": "plastipar",
"url": "https://www.reddit.com/user/plastipar"
}
]
},
{
"id": "1ecop8w",
"url": "/r/MacOSBeta/comments/1ecop8w/now_you_can_resize_the_iphone_mirroring_window/",
"external_url": "https://v.redd.it/nwhdc90ecved1",
"title": "Now you can resize the iPhone Mirroring window",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ecop8w/now_you_can_resize_the_iphone_mirroring_window/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ecop8w/now_you_can_resize_the_iphone_mirroring_window/'>Reddit</a></caption><div><br></div><p>Just use the Command + or - shortcut. Don\u2019t know if it\u2019s new from beta 4 or before. </p>",
"date_published": "2024-07-26T13:55:15+00:00",
"authors": [
{
"name": "According_Cow_3522",
"url": "https://www.reddit.com/user/According_Cow_3522"
}
]
},
{
"id": "1ebl5xe",
"url": "/r/MacOSBeta/comments/1ebl5xe/sequoia_db4_apple_tv_remote_now_works_via_iphone/",
"external_url": "https://i.redd.it/zj3kbvls5led1.png",
"title": "[Sequoia DB4] Apple TV Remote now works via iPhone Mirroring",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ebl5xe/sequoia_db4_apple_tv_remote_now_works_via_iphone/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ebl5xe/sequoia_db4_apple_tv_remote_now_works_via_iphone/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/zj3kbvls5led1.png\" />",
"date_published": "2024-07-25T03:41:23+00:00",
"authors": [
{
"name": "amylaneio",
"url": "https://www.reddit.com/user/amylaneio"
}
]
},
{
"id": "1eaie7u",
"url": "/r/MacOSBeta/comments/1eaie7u/iphone_mirroring_adds_window_resizing_in_macos/",
"external_url": "https://9to5mac.com/2024/07/23/iphone-mirroring-adds-window-resizing-options-in-macos-sequoia-beta-4/",
"title": "iPhone Mirroring adds window resizing in macOS Sequoia beta 4",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1eaie7u/iphone_mirroring_adds_window_resizing_in_macos/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1eaie7u/iphone_mirroring_adds_window_resizing_in_macos/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-07-23T20:37:26+00:00",
"authors": [
{
"name": "oprahsballsack",
"url": "https://www.reddit.com/user/oprahsballsack"
}
]
},
{
"id": "1eae2g8",
"url": "/r/MacOSBeta/comments/1eae2g8/macos_beta_4_is_rolling_out_to_developers/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1eae2g8/macos_beta_4_is_rolling_out_to_developers/",
"title": "macOS beta 4 is rolling out to developers",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1eae2g8/macos_beta_4_is_rolling_out_to_developers/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1eae2g8/macos_beta_4_is_rolling_out_to_developers/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-07-23T17:43:43+00:00",
"authors": [
{
"name": "nathan12581",
"url": "https://www.reddit.com/user/nathan12581"
}
]
},
{
"id": "1ea7zun",
"url": "/r/MacOSBeta/comments/1ea7zun/macos_15_db3_iphone_mirroring_is_apples_it_just/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1ea7zun/macos_15_db3_iphone_mirroring_is_apples_it_just/",
"title": "[macOS 15 DB3] iPhone mirroring is Apple's \"it just works\" in a long time",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ea7zun/macos_15_db3_iphone_mirroring_is_apples_it_just/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ea7zun/macos_15_db3_iphone_mirroring_is_apples_it_just/'>Reddit</a></caption><div><br></div><p>There's no lag, no mis-touches. Works between devices, no common network needed. Keyboard, trackpad, mouse works. And notifications, so beautifully implemented. They've thought of edge scenarios and security - auto lock, remote login into mac with iPhone Mirroring, and so on.</p>\n<p>Sure, there are regular beta bugs in the overall OS as expected, but this feature - it just works.</p>",
"date_published": "2024-07-23T13:34:55+00:00",
"authors": [
{
"name": "rozmarra",
"url": "https://www.reddit.com/user/rozmarra"
}
]
},
{
"id": "1e5yz8h",
"url": "/r/MacOSBeta/comments/1e5yz8h/you_can_now_open_context_menus_using_the_keyboard/",
"external_url": "https://v.redd.it/2asy9ev3h6dd1",
"title": "You can now open context menus using the keyboard with Control-return! \ud83e\udd2f",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1e5yz8h/you_can_now_open_context_menus_using_the_keyboard/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1e5yz8h/you_can_now_open_context_menus_using_the_keyboard/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-07-18T01:13:28+00:00",
"authors": [
{
"name": "WesleyWex",
"url": "https://www.reddit.com/user/WesleyWex"
}
]
},
{
"id": "1e19smw",
"url": "/r/MacOSBeta/comments/1e19smw/minecraft_bedrock_on_mac/",
"external_url": "https://i.redd.it/qw5dm52rx0cd1.jpeg",
"title": "Minecraft Bedrock on Mac?",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1e19smw/minecraft_bedrock_on_mac/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1e19smw/minecraft_bedrock_on_mac/'>Reddit</a></caption><div><br></div><p>Works ok but I can\u2019t look around</p><div><br></div><img src=\"https://i.redd.it/qw5dm52rx0cd1.jpeg\" />",
"date_published": "2024-07-12T05:31:28+00:00",
"authors": [
{
"name": "Minivansegway",
"url": "https://www.reddit.com/user/Minivansegway"
}
]
},
{
"id": "1dye268",
"url": "/r/MacOSBeta/comments/1dye268/db2_this_looks_new/",
"external_url": "https://i.redd.it/isozevzdtbbd1.png",
"title": "[Db2] This looks new",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dye268/db2_this_looks_new/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dye268/db2_this_looks_new/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/isozevzdtbbd1.png\" />",
"date_published": "2024-07-08T17:02:39+00:00",
"authors": [
{
"name": "rozmarra",
"url": "https://www.reddit.com/user/rozmarra"
}
]
},
{
"id": "1dtv5au",
"url": "/r/MacOSBeta/comments/1dtv5au/apple_logo_offcenter/",
"external_url": "https://i.redd.it/aaz0rgtfv5ad1.jpeg",
"title": "Apple logo off-center",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dtv5au/apple_logo_offcenter/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dtv5au/apple_logo_offcenter/'>Reddit</a></caption><div><br></div><p>just updated my macbook to mac os 15 beta 2 and it\u2019s stuck like this lmao</p><div><br></div><img src=\"https://i.redd.it/aaz0rgtfv5ad1.jpeg\" />",
"date_published": "2024-07-02T19:59:10+00:00",
"authors": [
{
"name": "nickwzxx",
"url": "https://www.reddit.com/user/nickwzxx"
}
]
},
{
"id": "1dqkbjm",
"url": "/r/MacOSBeta/comments/1dqkbjm/tip_resize_the_iphone_mirroring_window/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1dqkbjm/tip_resize_the_iphone_mirroring_window/",
"title": "Tip: Resize the iPhone Mirroring window",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dqkbjm/tip_resize_the_iphone_mirroring_window/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dqkbjm/tip_resize_the_iphone_mirroring_window/'>Reddit</a></caption><div><br></div><p>Quit iPhone Mirroring.</p>\n<p>Open Terminal and run <code>defaults write com.apple.ScreenContinuity showScalingControls 1</code>.</p>\n<p>The UI is a little wonky \u2014 there\u2019s a slider in the window titlebar that overlaps with the close/minimize controls \u2014 but it works. Hopefully it gets added officially in one of the next betas.</p>\n<p>Found this one by running <code>strings</code> on the app binary.</p>",
"date_published": "2024-06-28T14:00:37+00:00",
"authors": [
{
"name": "freaktheclown",
"url": "https://www.reddit.com/user/freaktheclown"
}
]
},
{
"id": "1do2ofj",
"url": "/r/MacOSBeta/comments/1do2ofj/iphone_mirroring_faceid_authentication_uses_mac/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1do2ofj/iphone_mirroring_faceid_authentication_uses_mac/",
"title": "iPhone mirroring FaceID authentication uses Mac TouchID",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1do2ofj/iphone_mirroring_faceid_authentication_uses_mac/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1do2ofj/iphone_mirroring_faceid_authentication_uses_mac/'>Reddit</a></caption><div><br></div><p>https://preview.redd.it/5e0urhr52p8d1.png?width=1158&format=png&auto=webp&s=406d10856aa5374fb7d25b6c18440ace51140966</p>",
"date_published": "2024-06-25T10:23:44+00:00",
"authors": [
{
"name": "Justdroid",
"url": "https://www.reddit.com/user/Justdroid"
}
]
},
{
"id": "1dnnwt5",
"url": "/r/MacOSBeta/comments/1dnnwt5/iphone_mirroring_not_working_any_solution_macbook/",
"external_url": "https://v.redd.it/ssyfhiaxzk8d1",
"title": "iPhone mirroring not working. Any solution? (MacBook Pro M1 Pro Sequoia Beta 2 - iPhone 15 Pro Max iOS 18 Beta 2). ",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dnnwt5/iphone_mirroring_not_working_any_solution_macbook/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dnnwt5/iphone_mirroring_not_working_any_solution_macbook/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-06-24T20:44:43+00:00",
"authors": [
{
"name": "dijugar",
"url": "https://www.reddit.com/user/dijugar"
}
]
},
{
"id": "1dnm2sr",
"url": "/r/MacOSBeta/comments/1dnm2sr/what_the_full_window_looks_like_when_mirroring_an/",
"external_url": "https://i.redd.it/rr76etrnmk8d1.png",
"title": "What the full window looks like when mirroring an iPhone.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dnm2sr/what_the_full_window_looks_like_when_mirroring_an/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dnm2sr/what_the_full_window_looks_like_when_mirroring_an/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/rr76etrnmk8d1.png\" />",
"date_published": "2024-06-24T19:29:06+00:00",
"authors": [
{
"name": "ken27238",
"url": "https://www.reddit.com/user/ken27238"
}
]
},
{
"id": "1dnkftl",
"url": "/r/MacOSBeta/comments/1dnkftl/iphone_mirroring_is_smooth/",
"external_url": "https://www.reddit.com/r/MacOSBeta/comments/1dnkftl/iphone_mirroring_is_smooth/",
"title": "iPhone mirroring is smooth",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dnkftl/iphone_mirroring_is_smooth/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dnkftl/iphone_mirroring_is_smooth/'>Reddit</a></caption><div><br></div><p>ill probably find myself using this more than I think. especially when my phone is sitting on the wireless charger on my desk and I want to check something out on it. 10/10 feature.</p>\n<p>Edit*</p>\n<p>Using M2 MacBook Air and an iPhone 14 Pro Max</p>\n<p>Also to add, I just received a notification from my phone on my Mac, clicked it and it launched phone mirroring. this so nice.</p>\n<p>another post pointed it out but 3rd party mice do not currently work with scrolling in the iPhone mirroring.</p>",
"date_published": "2024-06-24T18:20:51+00:00",
"authors": [
{
"name": "SlothTheHeroo",
"url": "https://www.reddit.com/user/SlothTheHeroo"
}
]
},
{
"id": "1dnlwgu",
"url": "/r/MacOSBeta/comments/1dnlwgu/iphone_mirroring_in_db2/",
"external_url": "https://i.redd.it/p1m3v56ilk8d1.jpeg",
"title": "iPhone Mirroring in DB2",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dnlwgu/iphone_mirroring_in_db2/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dnlwgu/iphone_mirroring_in_db2/'>Reddit</a></caption><div><br></div><p>The iPhone Mirroring now open in DB2, and it appears in launchpad. I\u2019m updating my iPhone to DB2 and i\u2019ll try it. </p><div><br></div><img src=\"https://i.redd.it/p1m3v56ilk8d1.jpeg\" />",
"date_published": "2024-06-24T19:21:55+00:00",
"authors": [
{
"name": "Intelligent_Pin_8070",
"url": "https://www.reddit.com/user/Intelligent_Pin_8070"
}
]
},
{
"id": "1dnjiet",
"url": "/r/MacOSBeta/comments/1dnjiet/apple_seeds_second_beta_of_macos_sequoia_to/",
"external_url": "https://forums.macrumors.com/threads/apple-seeds-second-beta-of-macos-sequoia-to-developers.2429965/",
"title": "Apple Seeds Second Beta of macOS Sequoia to Developers",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dnjiet/apple_seeds_second_beta_of_macos_sequoia_to/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dnjiet/apple_seeds_second_beta_of_macos_sequoia_to/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-06-24T17:42:42+00:00",
"authors": [
{
"name": "jagajazzist",
"url": "https://www.reddit.com/user/jagajazzist"
}
]
},
{
"id": "1digna8",
"url": "/r/MacOSBeta/comments/1digna8/how_to_activate_the_new_siri_ui_in_macos_sequoia/",
"external_url": "https://x.com/aaronp613/status/1802840896917893386",
"title": "How to activate the new Siri UI in MacOS Sequoia Developer Beta 1 ",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1digna8/how_to_activate_the_new_siri_ui_in_macos_sequoia/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1digna8/how_to_activate_the_new_siri_ui_in_macos_sequoia/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-06-18T03:07:29+00:00",
"authors": [
{
"name": "Jmaster_888",
"url": "https://www.reddit.com/user/Jmaster_888"
}
]
},
{
"id": "1dg0lgz",
"url": "/r/MacOSBeta/comments/1dg0lgz/passwords_app_available_in_menu_bar_and_it_gives/",
"external_url": "https://i.redd.it/wdz6k1wbll6d1.png",
"title": "Passwords app available in menu bar, and it gives suggestions based on what app is currently open.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1dg0lgz/passwords_app_available_in_menu_bar_and_it_gives/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1dg0lgz/passwords_app_available_in_menu_bar_and_it_gives/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/wdz6k1wbll6d1.png\" />",
"date_published": "2024-06-14T20:34:51+00:00",
"authors": [
{
"name": "Leading-Control-8503",
"url": "https://www.reddit.com/user/Leading-Control-8503"
}
]
},
{
"id": "1depcgw",
"url": "/r/MacOSBeta/comments/1depcgw/parallels_running_windows_11_arm_in_macos_15/",
"external_url": "https://i.redd.it/15ma6bthc96d1.png",
"title": "Parallels Running Windows 11 ARM in MacOS 15",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1depcgw/parallels_running_windows_11_arm_in_macos_15/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1depcgw/parallels_running_windows_11_arm_in_macos_15/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/15ma6bthc96d1.png\" />",
"date_published": "2024-06-13T03:24:10+00:00",
"authors": [
{
"name": "Bansheeback",
"url": "https://www.reddit.com/user/Bansheeback"
}
]
},
{
"id": "1defvub",
"url": "/r/MacOSBeta/comments/1defvub/new_fullscreen_button_menu/",
"external_url": "https://i.redd.it/7ote5jnm476d1.png",
"title": "New Fullscreen Button Menu?",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1defvub/new_fullscreen_button_menu/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1defvub/new_fullscreen_button_menu/'>Reddit</a></caption><div><br></div><div><br></div><img src=\"https://i.redd.it/7ote5jnm476d1.png\" />",
"date_published": "2024-06-12T19:55:55+00:00",
"authors": [
{
"name": "rjdnl",
"url": "https://www.reddit.com/user/rjdnl"
}
]
},
{
"id": "1ddhhl9",
"url": "/r/MacOSBeta/comments/1ddhhl9/the_hidden_screen_mirroring_app_in_macos_sequoia/",
"external_url": "https://www.reddit.com/gallery/1ddhhl9",
"title": "The \u201chidden\u201d screen mirroring app in MacOS Sequoia DB 1.",
"content_html": "<caption>Open: <a href='winstonapp:///r/MacOSBeta/comments/1ddhhl9/the_hidden_screen_mirroring_app_in_macos_sequoia/'>Winston</a> | <a href='https://reddit.com/r/MacOSBeta/comments/1ddhhl9/the_hidden_screen_mirroring_app_in_macos_sequoia/'>Reddit</a></caption><div><br></div><p>Keeps crashing\u2026</p>",
"date_published": "2024-06-11T15:51:44+00:00",
"authors": [
{
"name": "Applebuyer7610",
"url": "https://www.reddit.com/user/Applebuyer7610"