-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathatom.xml
More file actions
2267 lines (1910 loc) · 78.1 KB
/
Copy pathatom.xml
File metadata and controls
2267 lines (1910 loc) · 78.1 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
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>SnapEnhance, branch HEAD</title>
<subtitle>An Xposed module offering an enhanced Snapchat experience
</subtitle>
<entry>
<id>aea5922e0ebf4843934941e1320953d74b97964b</id>
<published>2025-10-03T21:43:10Z</published>
<updated>2025-10-03T21:43:10Z</updated>
<title type="text">fix(core): spotlight not loading</title>
<link rel="alternate" type="text/html" href="commit/aea5922e0ebf4843934941e1320953d74b97964b.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit aea5922e0ebf4843934941e1320953d74b97964b
parent c29d142f9180f91c2dbde73b517b15eff4720aeb
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Fri, 3 Oct 2025 23:43:10 +0200
fix(core): spotlight not loading
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>c29d142f9180f91c2dbde73b517b15eff4720aeb</id>
<published>2025-08-28T13:39:23Z</published>
<updated>2025-08-28T13:39:23Z</updated>
<title type="text">fix(core): font crash</title>
<link rel="alternate" type="text/html" href="commit/c29d142f9180f91c2dbde73b517b15eff4720aeb.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit c29d142f9180f91c2dbde73b517b15eff4720aeb
parent fafb88d9ce9fa111584565a317b3b19691488bc1
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Thu, 28 Aug 2025 15:39:23 +0200
fix(core): font crash
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>fafb88d9ce9fa111584565a317b3b19691488bc1</id>
<published>2025-08-28T13:22:34Z</published>
<updated>2025-08-28T13:22:34Z</updated>
<title type="text">fix(core): syncRemote crash</title>
<link rel="alternate" type="text/html" href="commit/fafb88d9ce9fa111584565a317b3b19691488bc1.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit fafb88d9ce9fa111584565a317b3b19691488bc1
parent d4c8a21504ec1e4f724557b0213b8b8d949e22e6
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Thu, 28 Aug 2025 15:22:34 +0200
fix(core): syncRemote crash
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>d4c8a21504ec1e4f724557b0213b8b8d949e22e6</id>
<published>2025-08-26T12:13:26Z</published>
<updated>2025-08-26T12:13:26Z</updated>
<title type="text">feat(core): stealth mode save snap in chat</title>
<link rel="alternate" type="text/html" href="commit/d4c8a21504ec1e4f724557b0213b8b8d949e22e6.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit d4c8a21504ec1e4f724557b0213b8b8d949e22e6
parent 3fb05c764e5c7e3040192b200cbf8fcd360c9ccd
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 26 Aug 2025 14:13:26 +0200
feat(core): stealth mode save snap in chat
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>3fb05c764e5c7e3040192b200cbf8fcd360c9ccd</id>
<published>2025-08-26T10:06:04Z</published>
<updated>2025-08-26T10:06:04Z</updated>
<title type="text">fix(core): send override for memories</title>
<link rel="alternate" type="text/html" href="commit/3fb05c764e5c7e3040192b200cbf8fcd360c9ccd.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 3fb05c764e5c7e3040192b200cbf8fcd360c9ccd
parent f3465a69d03c8018436e7e4c8f5182b92aaf4a36
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 26 Aug 2025 12:06:04 +0200
fix(core): send override for memories
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>f3465a69d03c8018436e7e4c8f5182b92aaf4a36</id>
<published>2025-08-26T09:39:45Z</published>
<updated>2025-08-26T09:39:45Z</updated>
<title type="text">feat(core): prevent forced keyboard</title>
<link rel="alternate" type="text/html" href="commit/f3465a69d03c8018436e7e4c8f5182b92aaf4a36.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit f3465a69d03c8018436e7e4c8f5182b92aaf4a36
parent bf5d92a2c4e4ebb9cb53fbd480e394e590a79a1b
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 26 Aug 2025 11:39:45 +0200
feat(core): prevent forced keyboard
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>bf5d92a2c4e4ebb9cb53fbd480e394e590a79a1b</id>
<published>2025-08-26T09:35:45Z</published>
<updated>2025-08-26T09:35:45Z</updated>
<title type="text">fix(core): database feed entries</title>
<link rel="alternate" type="text/html" href="commit/bf5d92a2c4e4ebb9cb53fbd480e394e590a79a1b.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit bf5d92a2c4e4ebb9cb53fbd480e394e590a79a1b
parent 7880b024ea819fcd9b474177f7e18f20011f2812
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 26 Aug 2025 11:35:45 +0200
fix(core): database feed entries
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>7880b024ea819fcd9b474177f7e18f20011f2812</id>
<published>2025-08-22T09:05:05Z</published>
<updated>2025-08-22T09:05:05Z</updated>
<title type="text">fix(core): disable snap splitting</title>
<link rel="alternate" type="text/html" href="commit/7880b024ea819fcd9b474177f7e18f20011f2812.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 7880b024ea819fcd9b474177f7e18f20011f2812
parent 2f808685e8522beb9379ca1c6dc2b1492d25aedd
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Fri, 22 Aug 2025 11:05:05 +0200
fix(core): disable snap splitting
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>2f808685e8522beb9379ca1c6dc2b1492d25aedd</id>
<published>2025-08-06T07:51:45Z</published>
<updated>2025-08-06T07:51:45Z</updated>
<title type="text">fix(core): streak expiration</title>
<link rel="alternate" type="text/html" href="commit/2f808685e8522beb9379ca1c6dc2b1492d25aedd.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 2f808685e8522beb9379ca1c6dc2b1492d25aedd
parent 3951d30f2b6e5a1071ccb48be5793fda23baa9ba
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Wed, 6 Aug 2025 09:51:45 +0200
fix(core): streak expiration
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>3951d30f2b6e5a1071ccb48be5793fda23baa9ba</id>
<published>2025-08-02T12:54:29Z</published>
<updated>2025-08-02T12:54:29Z</updated>
<title type="text">feat(common): map live location notification</title>
<link rel="alternate" type="text/html" href="commit/3951d30f2b6e5a1071ccb48be5793fda23baa9ba.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 3951d30f2b6e5a1071ccb48be5793fda23baa9ba
parent 9c3cfb06851d2a9743347ee659cce22d49f1589b
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sat, 2 Aug 2025 14:54:29 +0200
feat(common): map live location notification
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>9c3cfb06851d2a9743347ee659cce22d49f1589b</id>
<published>2025-08-02T12:09:08Z</published>
<updated>2025-08-02T12:09:08Z</updated>
<title type="text">feat: translations (#1410)</title>
<link rel="alternate" type="text/html" href="commit/9c3cfb06851d2a9743347ee659cce22d49f1589b.html" />
<author>
<name>RSR/</name>
<email>52901789+RSR1337@users.noreply.github.com</email>
</author>
<content type="text">commit 9c3cfb06851d2a9743347ee659cce22d49f1589b
parent 621c16d7f4c01bdfae42e9bfcb0238c445452034
Author: RSR/ <52901789+RSR1337@users.noreply.github.com>
Date: Sat, 2 Aug 2025 16:09:08 +0400
feat: translations (#1410)
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
Co-authored-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>621c16d7f4c01bdfae42e9bfcb0238c445452034</id>
<published>2025-08-02T11:44:22Z</published>
<updated>2025-08-02T11:44:22Z</updated>
<title type="text">feat(core/scripting): disable script optimization</title>
<link rel="alternate" type="text/html" href="commit/621c16d7f4c01bdfae42e9bfcb0238c445452034.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 621c16d7f4c01bdfae42e9bfcb0238c445452034
parent 93358d97f45020dbeb6686e937a96dd9854e548f
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sat, 2 Aug 2025 13:44:22 +0200
feat(core/scripting): disable script optimization
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>93358d97f45020dbeb6686e937a96dd9854e548f</id>
<published>2025-08-01T13:59:10Z</published>
<updated>2025-08-01T13:59:10Z</updated>
<title type="text">refactor(core): remove simple snapchat</title>
<link rel="alternate" type="text/html" href="commit/93358d97f45020dbeb6686e937a96dd9854e548f.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 93358d97f45020dbeb6686e937a96dd9854e548f
parent 4e60b01dd00e850264ad6609a3cdb52b7b6ce279
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Fri, 1 Aug 2025 15:59:10 +0200
refactor(core): remove simple snapchat
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>4e60b01dd00e850264ad6609a3cdb52b7b6ce279</id>
<published>2025-08-01T13:54:25Z</published>
<updated>2025-08-01T13:54:25Z</updated>
<title type="text">fix(core): hide story suggestions</title>
<link rel="alternate" type="text/html" href="commit/4e60b01dd00e850264ad6609a3cdb52b7b6ce279.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 4e60b01dd00e850264ad6609a3cdb52b7b6ce279
parent ca01565d68beb81b3536e4d1952cc38b45151b51
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Fri, 1 Aug 2025 15:54:25 +0200
fix(core): hide story suggestions
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>ca01565d68beb81b3536e4d1952cc38b45151b51</id>
<published>2025-07-31T14:31:12Z</published>
<updated>2025-07-31T14:31:12Z</updated>
<title type="text">refactor(core): remove edit message feature It's now implemented for everyone in newer versions</title>
<link rel="alternate" type="text/html" href="commit/ca01565d68beb81b3536e4d1952cc38b45151b51.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit ca01565d68beb81b3536e4d1952cc38b45151b51
parent 3170809666e2432346b90bbae63be4f7d3fb52d3
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Thu, 31 Jul 2025 16:31:12 +0200
refactor(core): remove edit message feature
It's now implemented for everyone in newer versions
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>3170809666e2432346b90bbae63be4f7d3fb52d3</id>
<published>2025-07-31T14:12:42Z</published>
<updated>2025-07-31T14:12:42Z</updated>
<title type="text">feat(core): remove friend feed ads</title>
<link rel="alternate" type="text/html" href="commit/3170809666e2432346b90bbae63be4f7d3fb52d3.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 3170809666e2432346b90bbae63be4f7d3fb52d3
parent 4841e3aec3cbe25e2c1114cedaade6088e8763e6
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Thu, 31 Jul 2025 16:12:42 +0200
feat(core): remove friend feed ads
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>4841e3aec3cbe25e2c1114cedaade6088e8763e6</id>
<published>2025-07-30T15:05:19Z</published>
<updated>2025-07-30T15:05:19Z</updated>
<title type="text">fix(core): direct link sharing</title>
<link rel="alternate" type="text/html" href="commit/4841e3aec3cbe25e2c1114cedaade6088e8763e6.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 4841e3aec3cbe25e2c1114cedaade6088e8763e6
parent 9d4256ffe8a3f796723e79c0bb3ef00cb98d0f38
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Wed, 30 Jul 2025 17:05:19 +0200
fix(core): direct link sharing
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>9d4256ffe8a3f796723e79c0bb3ef00cb98d0f38</id>
<published>2025-07-30T14:49:42Z</published>
<updated>2025-07-30T14:49:42Z</updated>
<title type="text">Merge branch 'refs/heads/loading_fix' into dev</title>
<link rel="alternate" type="text/html" href="commit/9d4256ffe8a3f796723e79c0bb3ef00cb98d0f38.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 9d4256ffe8a3f796723e79c0bb3ef00cb98d0f38
parent e26ea0121fdda620a0a1be2910effcb3c4e8048e
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Wed, 30 Jul 2025 16:49:42 +0200
Merge branch 'refs/heads/loading_fix' into dev
</content>
</entry>
<entry>
<id>e26ea0121fdda620a0a1be2910effcb3c4e8048e</id>
<published>2025-07-30T14:38:21Z</published>
<updated>2025-07-30T14:38:21Z</updated>
<title type="text">fix(core): snapchat plus support sc >=13.51.0.56</title>
<link rel="alternate" type="text/html" href="commit/e26ea0121fdda620a0a1be2910effcb3c4e8048e.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit e26ea0121fdda620a0a1be2910effcb3c4e8048e
parent d05ef5d7a4666d3881d018728d94345cac29b4e6
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Wed, 30 Jul 2025 16:38:21 +0200
fix(core): snapchat plus
support sc >=13.51.0.56
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>d05ef5d7a4666d3881d018728d94345cac29b4e6</id>
<published>2025-07-21T15:02:52Z</published>
<updated>2025-07-21T15:02:52Z</updated>
<title type="text">fix(core): current main activity</title>
<link rel="alternate" type="text/html" href="commit/d05ef5d7a4666d3881d018728d94345cac29b4e6.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit d05ef5d7a4666d3881d018728d94345cac29b4e6
parent b1abac22ee38a9db35c893f8cc469e6cd7af7454
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Mon, 21 Jul 2025 17:02:52 +0200
fix(core): current main activity
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>b1abac22ee38a9db35c893f8cc469e6cd7af7454</id>
<published>2025-07-21T14:33:09Z</published>
<updated>2025-07-21T14:33:09Z</updated>
<title type="text">fix(core): arroyo conversation</title>
<link rel="alternate" type="text/html" href="commit/b1abac22ee38a9db35c893f8cc469e6cd7af7454.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit b1abac22ee38a9db35c893f8cc469e6cd7af7454
parent 68c9a4cc4e589daa9af4a08282f3f7c4eaaacb3e
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Mon, 21 Jul 2025 16:33:09 +0200
fix(core): arroyo conversation
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>68c9a4cc4e589daa9af4a08282f3f7c4eaaacb3e</id>
<published>2025-07-21T14:19:21Z</published>
<updated>2025-07-21T14:19:21Z</updated>
<title type="text">chore(media_file_picker): spelling</title>
<link rel="alternate" type="text/html" href="commit/68c9a4cc4e589daa9af4a08282f3f7c4eaaacb3e.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 68c9a4cc4e589daa9af4a08282f3f7c4eaaacb3e
parent f16ab5604d5de6604cb59a57f98c35f5cfb60e10
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Mon, 21 Jul 2025 16:19:21 +0200
chore(media_file_picker): spelling
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>f16ab5604d5de6604cb59a57f98c35f5cfb60e10</id>
<published>2025-07-10T14:10:22Z</published>
<updated>2025-07-10T14:10:22Z</updated>
<title type="text">fix(translation): json parsing error</title>
<link rel="alternate" type="text/html" href="commit/f16ab5604d5de6604cb59a57f98c35f5cfb60e10.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit f16ab5604d5de6604cb59a57f98c35f5cfb60e10
parent 814a0cdb373d80b21b5400e4ab770c9ac2bd3ccd
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Thu, 10 Jul 2025 16:10:22 +0200
fix(translation): json parsing error
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>814a0cdb373d80b21b5400e4ab770c9ac2bd3ccd</id>
<published>2025-07-08T21:50:42Z</published>
<updated>2025-07-08T21:50:42Z</updated>
<title type="text">fix(message_logger): chat edit history</title>
<link rel="alternate" type="text/html" href="commit/814a0cdb373d80b21b5400e4ab770c9ac2bd3ccd.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 814a0cdb373d80b21b5400e4ab770c9ac2bd3ccd
parent b11504ad9b32f64da09c4255a11e494ec8200c4b
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 8 Jul 2025 23:50:42 +0200
fix(message_logger): chat edit history
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>b11504ad9b32f64da09c4255a11e494ec8200c4b</id>
<published>2025-07-08T21:02:49Z</published>
<updated>2025-07-08T21:02:49Z</updated>
<title type="text">feat(core): disable attestation job</title>
<link rel="alternate" type="text/html" href="commit/b11504ad9b32f64da09c4255a11e494ec8200c4b.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit b11504ad9b32f64da09c4255a11e494ec8200c4b
parent 83878be58a2d00ab869dc65c1285ec48b7885af8
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 8 Jul 2025 23:02:49 +0200
feat(core): disable attestation job
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>83878be58a2d00ab869dc65c1285ec48b7885af8</id>
<published>2025-07-08T20:59:06Z</published>
<updated>2025-07-08T20:59:06Z</updated>
<title type="text">fix: remote media resolver</title>
<link rel="alternate" type="text/html" href="commit/83878be58a2d00ab869dc65c1285ec48b7885af8.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 83878be58a2d00ab869dc65c1285ec48b7885af8
parent e18243ff792a260c840f3783a1b43effa5fed00c
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 8 Jul 2025 22:59:06 +0200
fix: remote media resolver
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>e18243ff792a260c840f3783a1b43effa5fed00c</id>
<published>2025-07-07T20:31:27Z</published>
<updated>2025-07-07T20:31:27Z</updated>
<title type="text">fix(composer): first created username</title>
<link rel="alternate" type="text/html" href="commit/e18243ff792a260c840f3783a1b43effa5fed00c.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit e18243ff792a260c840f3783a1b43effa5fed00c
parent deae5f301387c48ed16c46c9a9ab8a67293a26dd
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Mon, 7 Jul 2025 22:31:27 +0200
fix(composer): first created username
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>deae5f301387c48ed16c46c9a9ab8a67293a26dd</id>
<published>2025-07-07T20:17:13Z</published>
<updated>2025-07-07T20:17:13Z</updated>
<title type="text">fix(core): composer native bridge</title>
<link rel="alternate" type="text/html" href="commit/deae5f301387c48ed16c46c9a9ab8a67293a26dd.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit deae5f301387c48ed16c46c9a9ab8a67293a26dd
parent 6bae2de516919226e4e959fda3ef4163124d0ed9
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Mon, 7 Jul 2025 22:17:13 +0200
fix(core): composer native bridge
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>6bae2de516919226e4e959fda3ef4163124d0ed9</id>
<published>2025-07-06T11:22:43Z</published>
<updated>2025-07-06T11:22:43Z</updated>
<title type="text">fix(core): crashes</title>
<link rel="alternate" type="text/html" href="commit/6bae2de516919226e4e959fda3ef4163124d0ed9.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 6bae2de516919226e4e959fda3ef4163124d0ed9
parent e7822d8fc50dc5ce45b8e234f83651679aa357b4
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sun, 6 Jul 2025 13:22:43 +0200
fix(core): crashes
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>e7822d8fc50dc5ce45b8e234f83651679aa357b4</id>
<published>2025-07-05T14:45:39Z</published>
<updated>2025-07-05T14:45:39Z</updated>
<title type="text">feat(app): ffmpeg prebuilt</title>
<link rel="alternate" type="text/html" href="commit/e7822d8fc50dc5ce45b8e234f83651679aa357b4.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit e7822d8fc50dc5ce45b8e234f83651679aa357b4
parent 5702420f89061d79c4ecc2af560f3fcf0fb2b5b5
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sat, 5 Jul 2025 16:45:39 +0200
feat(app): ffmpeg prebuilt
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>5702420f89061d79c4ecc2af560f3fcf0fb2b5b5</id>
<published>2025-07-05T14:40:36Z</published>
<updated>2025-07-05T14:40:36Z</updated>
<title type="text">refactor: security features - remove remote shared library manager - prevent plugin from loading in newer versions</title>
<link rel="alternate" type="text/html" href="commit/5702420f89061d79c4ecc2af560f3fcf0fb2b5b5.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 5702420f89061d79c4ecc2af560f3fcf0fb2b5b5
parent 56e434cb15307c6bf53a2acd7eb62e725c0902fb
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sat, 5 Jul 2025 16:40:36 +0200
refactor: security features
- remove remote shared library manager
- prevent plugin from loading in newer versions
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>56e434cb15307c6bf53a2acd7eb62e725c0902fb</id>
<published>2025-07-04T22:49:59Z</published>
<updated>2025-07-04T22:49:59Z</updated>
<title type="text">feat(core): notification transcript</title>
<link rel="alternate" type="text/html" href="commit/56e434cb15307c6bf53a2acd7eb62e725c0902fb.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 56e434cb15307c6bf53a2acd7eb62e725c0902fb
parent dc5b91a42ad3a741d59ec010e4eb442a8d8e7800
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sat, 5 Jul 2025 00:49:59 +0200
feat(core): notification transcript
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>dc5b91a42ad3a741d59ec010e4eb442a8d8e7800</id>
<published>2025-07-04T16:57:30Z</published>
<updated>2025-07-04T16:57:30Z</updated>
<title type="text">refactor: remove deprecated transcript api</title>
<link rel="alternate" type="text/html" href="commit/dc5b91a42ad3a741d59ec010e4eb442a8d8e7800.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit dc5b91a42ad3a741d59ec010e4eb442a8d8e7800
parent 4e4f77a21323907b612979904495aa93cada7af3
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Fri, 4 Jul 2025 18:57:30 +0200
refactor: remove deprecated transcript api
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>4e4f77a21323907b612979904495aa93cada7af3</id>
<published>2025-07-03T23:28:33Z</published>
<updated>2025-07-03T23:28:33Z</updated>
<title type="text">fix: prevent message list auto scroll</title>
<link rel="alternate" type="text/html" href="commit/4e4f77a21323907b612979904495aa93cada7af3.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 4e4f77a21323907b612979904495aa93cada7af3
parent 0f2edca45959d9b441f9b24ea186ed2a93d55505
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Fri, 4 Jul 2025 01:28:33 +0200
fix: prevent message list auto scroll
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>0f2edca45959d9b441f9b24ea186ed2a93d55505</id>
<published>2025-07-01T10:30:39Z</published>
<updated>2025-07-01T10:30:39Z</updated>
<title type="text">feat(app/better_location): search location by name</title>
<link rel="alternate" type="text/html" href="commit/0f2edca45959d9b441f9b24ea186ed2a93d55505.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 0f2edca45959d9b441f9b24ea186ed2a93d55505
parent c57fbdb6448cecd0ba570b91627a1d5e2ee5aa88
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 1 Jul 2025 12:30:39 +0200
feat(app/better_location): search location by name
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>c57fbdb6448cecd0ba570b91627a1d5e2ee5aa88</id>
<published>2025-07-01T09:27:09Z</published>
<updated>2025-07-01T09:27:09Z</updated>
<title type="text">feat(common): bolt resolver api</title>
<link rel="alternate" type="text/html" href="commit/c57fbdb6448cecd0ba570b91627a1d5e2ee5aa88.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit c57fbdb6448cecd0ba570b91627a1d5e2ee5aa88
parent 0a395627efc5740e9d99c1c09d230419d0dfafff
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Tue, 1 Jul 2025 11:27:09 +0200
feat(common): bolt resolver api
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>0a395627efc5740e9d99c1c09d230419d0dfafff</id>
<published>2025-06-28T09:33:26Z</published>
<updated>2025-06-28T09:33:26Z</updated>
<title type="text">chore: readme</title>
<link rel="alternate" type="text/html" href="commit/0a395627efc5740e9d99c1c09d230419d0dfafff.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 0a395627efc5740e9d99c1c09d230419d0dfafff
parent 502e19aac77db31330e5e08f4dcf2cf0fd7f6dfd
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sat, 28 Jun 2025 11:33:26 +0200
chore: readme
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>502e19aac77db31330e5e08f4dcf2cf0fd7f6dfd</id>
<published>2025-06-28T09:27:46Z</published>
<updated>2025-06-28T09:27:46Z</updated>
<title type="text">chore: mod detection version check</title>
<link rel="alternate" type="text/html" href="commit/502e19aac77db31330e5e08f4dcf2cf0fd7f6dfd.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 502e19aac77db31330e5e08f4dcf2cf0fd7f6dfd
parent 83e3b46f012c1161e2aad27e240a2dc4b1d77d12
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sat, 28 Jun 2025 11:27:46 +0200
chore: mod detection version check
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>83e3b46f012c1161e2aad27e240a2dc4b1d77d12</id>
<published>2025-06-18T14:32:41Z</published>
<updated>2025-06-18T14:32:41Z</updated>
<title type="text">fix(native): unary call signature</title>
<link rel="alternate" type="text/html" href="commit/83e3b46f012c1161e2aad27e240a2dc4b1d77d12.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit 83e3b46f012c1161e2aad27e240a2dc4b1d77d12
parent b4d3cfd5e04c798713c0f653e232e55fcafe837b
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Wed, 18 Jun 2025 16:32:41 +0200
fix(native): unary call signature
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>b4d3cfd5e04c798713c0f653e232e55fcafe837b</id>
<published>2025-06-18T14:24:27Z</published>
<updated>2025-06-18T14:24:27Z</updated>
<title type="text">fix(native): out of bounds signature crash</title>
<link rel="alternate" type="text/html" href="commit/b4d3cfd5e04c798713c0f653e232e55fcafe837b.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit b4d3cfd5e04c798713c0f653e232e55fcafe837b
parent acc92ce907b903a011bcb32e026265629304b88f
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Wed, 18 Jun 2025 16:24:27 +0200
fix(native): out of bounds signature crash
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>acc92ce907b903a011bcb32e026265629304b88f</id>
<published>2025-06-06T12:19:51Z</published>
<updated>2025-06-06T12:19:51Z</updated>
<title type="text">refactor: remove theming feature Deprecated after SC v13.7.0.42</title>
<link rel="alternate" type="text/html" href="commit/acc92ce907b903a011bcb32e026265629304b88f.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit acc92ce907b903a011bcb32e026265629304b88f
parent ba848dfd9d3ddd0a7218312639d33a34efee73a7
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Fri, 6 Jun 2025 14:19:51 +0200
refactor: remove theming feature
Deprecated after SC v13.7.0.42
Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
</content>
</entry>
<entry>
<id>ba848dfd9d3ddd0a7218312639d33a34efee73a7</id>
<published>2025-06-01T13:04:49Z</published>
<updated>2025-06-01T13:04:49Z</updated>
<title type="text">Merge branch 'dev' into dev_gh</title>
<link rel="alternate" type="text/html" href="commit/ba848dfd9d3ddd0a7218312639d33a34efee73a7.html" />
<author>
<name>rhunk</name>
<email>101876869+rhunk@users.noreply.github.com</email>
</author>
<content type="text">commit ba848dfd9d3ddd0a7218312639d33a34efee73a7
parent 81ef4537e2f39ce0730ae1b358c66db3f3657e6c
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date: Sun, 1 Jun 2025 15:04:49 +0200
Merge branch 'dev' into dev_gh
</content>
</entry>
<entry>
<id>81ef4537e2f39ce0730ae1b358c66db3f3657e6c</id>
<published>2025-05-20T09:00:31Z</published>
<updated>2025-05-20T09:00:31Z</updated>
<title type="text">chore: translations (#1261)</title>
<link rel="alternate" type="text/html" href="commit/81ef4537e2f39ce0730ae1b358c66db3f3657e6c.html" />
<author>
<name>Weblate (bot)</name>
<email>hosted@weblate.org</email>
</author>
<content type="text">commit 81ef4537e2f39ce0730ae1b358c66db3f3657e6c
parent 872be7dbda4c36a54b70b2b9283c5e881cb63d87
Author: Weblate (bot) <hosted@weblate.org>
Date: Tue, 20 May 2025 11:00:31 +0200
chore: translations (#1261)
* translated: (Finnish)
Currently translated at 49.7% (492 of 989 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/fi/
* addon runthrough
updated by "Cleanup translation files" hook
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/
* translated: (French)
Currently translated at 100.0% (1003 of 1003 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/fr/
* translated: (Slovenian)
Currently translated at 3.9% (40 of 1003 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/sl/
* addon runthrough
updated by "Cleanup translation files" hook
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/
* translated: (Indonesian)
Currently translated at 5.3% (54 of 1011 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/id/
* translated: (Ukrainian)
Currently translated at 1.0% (11 of 1011 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/uk/
* translated: (French)
Currently translated at 100.0% (1011 of 1011 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/fr/
* translated: (Indonesian)
Currently translated at 13.5% (137 of 1011 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/id/
* translated: (Chinese (Simplified) (zh_SIMPLIFIED))
Currently translated at 25.2% (255 of 1011 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/zh_SIMPLIFIED/
* translated: (Ukrainian)
Currently translated at 40.6% (411 of 1011 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/uk/
* translation: (Tamil)
* translated: (Ukrainian)
Currently translated at 50.5% (511 of 1011 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/uk/
* translated: (Ukrainian)
Currently translated at 60.4% (611 of 1011 strings)
Translation: SnapEnhance/SnapEnhance
Translate-URL: https://hosted.weblate.org/projects/snapenhance/app/uk/
* translated: (Ukrainian)