-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
h
7993 lines (5369 loc) · 231 KB
/
h
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
[33mcommit c244d5306ccaac74f333ac14ea9674fef2e808f8[m[33m ([m[1;36mHEAD -> [m[1;32mstaging[m[33m)[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 22 16:43:03 2022 +0300
Fixed all phones and accounts fragments showing the same data
[33mcommit f35dd07364c41f028eb45a34a10dcf00ab17ee6d[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 22 16:35:22 2022 +0300
Improved brief contact ui
[33mcommit 35f39b40cbe6bf9eb267c1d235ce16c37e584f01[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 22 16:23:18 2022 +0300
Added raw contacts list (only accounts) to brief contact fragmnet
[33mcommit fa145241ea8f85db697e597bb3bb45a29fb40b1e[m[33m ([m[1;31morigin/staging[m[33m)[m
Merge: cf8b8e1e 7a914e64
Author: Roei Edri <[email protected]>
Date: Tue Apr 19 13:45:49 2022 +0300
Merge pull request #418 from Chooloo/feature/whatsapp
Added whatsapp button to contact numbers and recents
[33mcommit cf8b8e1ea929e76209786753ed2ac6b7cffaee02[m
Merge: c3ff2f0d 0532c345
Author: Roei Edri <[email protected]>
Date: Tue Apr 19 13:45:25 2022 +0300
Merge pull request #417 from Chooloo/fix/statusbar
Fixed status bar is white in dark mode, Fixes #416
[33mcommit 7a914e645bc4218473513a3d3c496e4ad950c510[m
Author: Roei Edri <[email protected]>
Date: Tue Apr 19 13:44:33 2022 +0300
Added whatsapp button to contact numbers and recents
[33mcommit 0532c345d9d7ea248b002ea8fe4f86b14d7500bb[m
Author: Roei Edri <[email protected]>
Date: Tue Apr 19 12:59:42 2022 +0300
Fixed status bar is white in dark mode, Fixes #416
[33mcommit c3ff2f0d00eb96da24b9b43e285cca8142af8f42[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 15 20:06:08 2022 +0300
Increased app version
[33mcommit 6aaf68d39a8f7b1373a3bb9bed4c27ce5d30e0ab[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 15 19:44:19 2022 +0300
Fixed permissions related crashes, fixes #408
[33mcommit 277790420446c77a01da49411ef50cec48b1d9ff[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 15 19:25:00 2022 +0300
Fixed call type icon position
[33mcommit afea99ef8a5bca19b4df00e154dc168f92e64f85[m
Merge: 8c9421fa 03386932
Author: Roei Edri <[email protected]>
Date: Fri Apr 15 19:16:49 2022 +0300
Merge pull request #414 from Chooloo/fix/blackimages
Fixed some recents image renders as a black image
[33mcommit 8c9421faa56285616c59ae0b8f3a9e210b2729d4[m
Merge: 9355c038 a25c251b
Author: Roei Edri <[email protected]>
Date: Fri Apr 15 19:16:04 2022 +0300
Merge pull request #413 from Chooloo/feature/groups
Feature/groups
[33mcommit 03386932816e0a9b34f8f445739267fb76d0b64b[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 15 19:13:51 2022 +0300
Fixed some recents image renders as a black image
[33mcommit a25c251b4f49939614804edbe1db4a6e9afb5577[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 15 19:06:30 2022 +0300
Added group recents preference and improved groups ux
[33mcommit 9355c03875eb9940deaeb125dcd60b6420b2d34e[m
Merge: 4d343ea4 410e7f5c
Author: Roei Edri <[email protected]>
Date: Fri Apr 15 18:09:27 2022 +0300
Merge pull request #412 from inkh0rn/master
ptbr update
[33mcommit 410e7f5cf841c25237836f969ed687a41cfa4f40[m
Author: inkhorn <[email protected]>
Date: Thu Apr 14 19:08:38 2022 -0300
few fixes
[33mcommit 880ba76d605a8e0c556e5db19a58f88caa2e5a01[m
Author: inkhorn <[email protected]>
Date: Thu Apr 14 17:09:42 2022 -0300
ptbr update
[33mcommit 680bd07641f682074c7914962c015c738f8d1424[m
Merge: 4d343ea4 73af5fdf
Author: Roei Edri <[email protected]>
Date: Wed Apr 13 21:47:21 2022 +0300
Merge pull request #409 from vbh/group-recents
Group recent calls
[33mcommit 4d343ea437ba8e2231b3550f489373c2007dca3b[m
Author: Roei Edri <[email protected]>
Date: Wed Apr 13 21:44:15 2022 +0300
Fixed and improved status bar color pr
[33mcommit 078642a581cd1ec2b92fa7e2c53bdb6ac8fa76b7[m
Merge: 4379aaf5 bde05cc4
Author: Roei Edri <[email protected]>
Date: Wed Apr 13 21:33:13 2022 +0300
Merge branch 'staging' of github.com:Chooloo/koler into staging
[33mcommit bde05cc4d762da1ba51100f4d6d4f30b64f03e60[m
Merge: 8991add1 336d4702
Author: Roei Edri <[email protected]>
Date: Wed Apr 13 21:33:07 2022 +0300
Merge pull request #411 from Esarve/fix/fixed_light_mode_statusbar_color_android12
Fixed an issue where statusbar icons where not visible in light mode (Android 12)
[33mcommit 4379aaf5323013981f51dcadaf38cc382706dc86[m
Merge: 6790b8cd 8991add1
Author: Roei Edri <[email protected]>
Date: Wed Apr 13 21:33:03 2022 +0300
Merge branch 'staging' of github.com:Chooloo/koler into staging
[33mcommit 336d470291956b55dc55d40b3322dcce732cab73[m
Author: Sourav Das <[email protected]>
Date: Wed Apr 13 19:38:51 2022 +0600
removed unnecesarry window flags and implemented a working one
[33mcommit 6790b8cd48c6e1cfd8c6bd209590f2ce37286dad[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:53:22 2022 +0300
Increased app version
[33mcommit 1318483308e8001126081b84499dc387ff3d1d24[m
Author: Mojienjoynent <[email protected]>
Date: Wed Mar 30 12:32:23 2022 +0430
Update Persian translation
[33mcommit 06813c9532c42c83bf4f26633578a6e7caeaf801[m
Author: Mojienjoynent <[email protected]>
Date: Wed Mar 30 12:19:25 2022 +0430
update Persian translation
[33mcommit 129c40e3bf3a691cdba55bbc0b4492c34bfecb8f[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:47:34 2022 +0300
Fixed dialpad reverse on rtl, fixes #392
[33mcommit 88ae99d327004df0e86a510614fda7a3441ae1ca[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:44:45 2022 +0300
Fixed search bar icon position
[33mcommit 05608b23e7b5c758f307bd92dfc2948a1eabd35d[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:31:47 2022 +0300
Removed numbers background from dialpad
[33mcommit 84f3e681615d07c62313755a69355a40df5aeedf[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:27:54 2022 +0300
Changed recent type image to be the contact's image, and moved the type image
[33mcommit 0c1c5245fe5ffe12c75409425663904a723fed9b[m
Author: Bindu <[email protected]>
Date: Fri Apr 8 07:17:48 2022 -0700
fix: settings text color not visible in dark theme mode
[33mcommit 86912a3dd50f957388d8ed73a881d5c3444ada8b[m
Author: Roei Edri <[email protected]>
Date: Wed Apr 6 21:03:39 2022 +0300
Fix numbers custom label showing as 'custom', Fixes #397
[33mcommit ba437153cb3f2d4af4db040455353d77ec8424d3[m
Author: Roei Edri <[email protected]>
Date: Wed Apr 6 20:47:30 2022 +0300
Fixed PRs code
[33mcommit 7ae82372107f50a6a1bbbc7e4c65ea4d102b5471[m
Merge: e3c38de3 c704f13a
Author: Roei Edri <[email protected]>
Date: Sun Apr 10 10:40:27 2022 +0300
Merge pull request #407 from igorkietrz/master
Fix Polish Language
[33mcommit 73af5fdf5ad53f51fa7c236a23efd47a7beab998[m
Author: Bindu <[email protected]>
Date: Sat Apr 9 10:02:11 2022 -0700
Group recent calls
[33mcommit c704f13acc5fb6d75d58179ccd35594d6bb2d7f7[m
Author: igorkietrz <[email protected]>
Date: Sat Apr 9 00:20:15 2022 +0200
Create strings.xml
[33mcommit 986f183052075f293f63774105f494d975b37624[m
Author: igorkietrz <[email protected]>
Date: Sat Apr 9 00:17:22 2022 +0200
Delete app/src/main/res/values-pl directory
[33mcommit e3c38de358f9c3866a95d37dd16e214ea3007569[m[33m ([m[1;33mtag: v1.4.4[m[33m)[m
Merge: 32855446 8991add1
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:53:51 2022 +0300
Merge pull request #405 from Chooloo/staging
Increased app version
[33mcommit 8991add1d5c63d3cce8e02329fb8ad8c72d026e1[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:53:22 2022 +0300
Increased app version
[33mcommit 32855446dd9a4ef82f65a75d80048babd7dd54cc[m
Merge: 30781aa4 b9379d9c
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:52:39 2022 +0300
Merge pull request #404 from Chooloo/staging
Staging
[33mcommit b9379d9c46c069ff07e93a7037ca0fb39c4c82af[m
Merge: 0247988f 59253508
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:47:57 2022 +0300
Merge branch 'staging' of github.com:Chooloo/koler into staging
[33mcommit 0247988fad4a3240e3e02a8de0fbb3a3ae03b81b[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:47:34 2022 +0300
Fixed dialpad reverse on rtl, fixes #392
[33mcommit 14c903ed750d36b50f147443a93f27e21e7295f6[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:44:45 2022 +0300
Fixed search bar icon position
[33mcommit 3182984081b5907ca8ffb6c11ecafea4119457ff[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:31:47 2022 +0300
Removed numbers background from dialpad
[33mcommit 017f3589ee79f2fbc4018570031a4ee58b318a6f[m
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:27:54 2022 +0300
Changed recent type image to be the contact's image, and moved the type image
[33mcommit 30781aa442b35d305fc21474e724fc68ed26147f[m
Merge: 8d3da7cd 2e906599
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:12:17 2022 +0300
Merge pull request #293 from igorkietrz/master
Added Polish Language (Only strings file)
[33mcommit 8d3da7cd589af8e8ce0ad35b375794f5c67af201[m
Merge: 66c981b0 907508fa
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:11:52 2022 +0300
Merge pull request #364 from Ilithy/master
Improved French translation
[33mcommit 592535083acd3f96813a9057bcbb9729b92e6e44[m
Merge: 8635495b 9d63c0b5
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 18:10:07 2022 +0300
Merge pull request #391 from Mojienjoynent/Persian-translation
update Persian translation
[33mcommit 8635495bded93953c9735128d235b5ad2c2d3e92[m
Merge: 57a8123f 4f43ffde
Author: Roei Edri <[email protected]>
Date: Fri Apr 8 17:49:53 2022 +0300
Merge pull request #403 from vbh/settings-textcolor
fix: settings text color not visible in dark theme mode
[33mcommit 4f43ffdebfa1e741205e1d74c24bfe07b79cc541[m
Author: Bindu <[email protected]>
Date: Fri Apr 8 07:17:48 2022 -0700
fix: settings text color not visible in dark theme mode
[33mcommit 57a8123f13e93d95a7a71c26933378f5558015dd[m
Author: Roei Edri <[email protected]>
Date: Wed Apr 6 21:03:39 2022 +0300
Fix numbers custom label showing as 'custom', Fixes #397
[33mcommit 52cae6cbe4892a545dda69d5d045f6a779559305[m
Author: Roei Edri <[email protected]>
Date: Wed Apr 6 20:47:30 2022 +0300
Fixed PRs code
[33mcommit 66c981b02af07ca434696fe32d64fd7cb2f2d1d7[m
Merge: 5c28de0c ab8387b5
Author: Roei Edri <[email protected]>
Date: Wed Apr 6 20:13:34 2022 +0300
Merge pull request #368 from vbh/theme-change
Fix: Theme change
[33mcommit 5c28de0cb7ad6eb1a3e1299db439404feb972f43[m
Merge: 9d8d46ff 103f5e9b
Author: Roei Edri <[email protected]>
Date: Wed Apr 6 20:12:31 2022 +0300
Merge pull request #377 from vbh/fix-repetitive-text
fix: repetitive text while searching
[33mcommit 9d8d46ff8ada29099dcca0b6e2ca527df7f6c84c[m
Merge: 80966ead fd3f5de0
Author: Roei Edri <[email protected]>
Date: Wed Apr 6 20:10:27 2022 +0300
Merge pull request #400 from vbh/paste-number-dialer
fix: paste number in dialer gets changed when called
[33mcommit fd3f5de0ddb616a3976c7345e20653414f2c7635[m
Author: Bindu <[email protected]>
Date: Sat Apr 2 08:05:10 2022 -0700
fix: paste number in dialer gets changed when called
Closes #381
[33mcommit 9d63c0b5fb6dae95681944870c5c7eb89de0fbe2[m
Author: Mojienjoynent <[email protected]>
Date: Wed Mar 30 12:32:23 2022 +0430
Update Persian translation
[33mcommit 0577025741c18e7800b591382c16f9ba1d7cd56d[m
Author: Mojienjoynent <[email protected]>
Date: Wed Mar 30 12:19:25 2022 +0430
update Persian translation
[33mcommit 103f5e9b1b00783b09998403b518028212180f64[m
Author: Bindu <[email protected]>
Date: Mon Mar 21 07:43:35 2022 -0700
fix: repetitive text while searching
[33mcommit ab8387b51c231db602cbf87ebf839f76c07b4a36[m
Author: Bindu <[email protected]>
Date: Sat Mar 19 02:12:33 2022 -0700
Fix: Theme change
Application requires restart for the theme to change. This patch
now changes the theme on selection
[33mcommit 907508faa157e85e25133a0eeb0c26d040f5f61e[m
Merge: 9730f6cc 80966ead
Author: Ilithy <[email protected]>
Date: Tue Mar 15 15:05:15 2022 +0100
Merge branch 'Chooloo:master' into master
[33mcommit 9730f6cc1128a286ebfbf68bf0f56d0f3d4b0b52[m
Author: Ilithy <[email protected]>
Date: Tue Mar 15 15:05:06 2022 +0100
Update strings.xml
Thanks @DodoLeDev for the verification and optimization of the French translation
[33mcommit 80966ead3527d5172763b902a248c5b8e77c31d9[m[33m ([m[1;33mtag: v1.4.3[m[33m)[m
Merge: 1d92c418 2ff219ba
Author: Roei Edri <[email protected]>
Date: Sun Mar 13 17:32:08 2022 +0200
Merge pull request #361 from Chooloo/staging
Staging
[33mcommit 2ff219ba6305468812379f4b088cfa82c47be505[m
Author: Roei Edri <[email protected]>
Date: Sun Mar 13 17:29:38 2022 +0200
Fixed strings and improved UI
[33mcommit 322baefd863fad7b5c352927c4434393c1d255ef[m
Merge: 9e8b5f73 ea56c5d9
Author: Roei Edri <[email protected]>
Date: Sun Mar 13 17:15:11 2022 +0200
Merge pull request #352 from Mojienjoynent/Persian-translation
added Persian translation
[33mcommit 9e8b5f730b77274a12c4a5c2f4d5cdfe34e19fa1[m
Merge: 224552b8 b580c1b7
Author: Roei Edri <[email protected]>
Date: Sun Mar 13 17:14:50 2022 +0200
Merge pull request #357 from orionn333/master
Improved Spanish translation
[33mcommit 224552b8c4f6552cd2b29f2c794c8ffbbd921c0a[m
Merge: 377f102e b7b742bb
Author: Roei Edri <[email protected]>
Date: Sun Mar 13 17:14:22 2022 +0200
Merge pull request #359 from metezd/master
Updated Turkish Translations
[33mcommit 377f102e573f3ccf65dccead66ba65f663d9592e[m
Author: Roei Edri <[email protected]>
Date: Sun Mar 13 17:13:45 2022 +0200
Increased Koler version
[33mcommit 256940fdde547693b6a628832c580473eaa6bbca[m
Author: Roei Edri <[email protected]>
Date: Sat Mar 12 17:01:36 2022 +0200
Fixed voicemail not working, fixes #358
[33mcommit b7b742bbf004b729cb016b565d06d10b527ce8a0[m
Author: Mete <[email protected]>
Date: Sat Mar 12 17:37:32 2022 +0300
Update strings.xml
[33mcommit b580c1b7f07984dae9e8888697402c963a3709f3[m
Author: Anael González Paz <[email protected]>
Date: Thu Mar 10 20:17:20 2022 +0100
Improved Spanish translation
[33mcommit 18d64c9c101d3adb67f9735697551a8f317307b5[m
Author: Roei Edri <[email protected]>
Date: Thu Mar 10 11:49:46 2022 +0200
Improved brief contact phones background
[33mcommit 52c2985c913c8dddf7b8eb732156b2d35f645f64[m
Author: Roei Edri <[email protected]>
Date: Thu Mar 10 11:39:53 2022 +0200
Added Kontacts contact activity and improved UI
[33mcommit 34446a6790d401beeb4d92060f74259a92ad470b[m
Author: Ilithy <[email protected]>
Date: Wed Mar 9 18:25:12 2022 +0100
Update strings.xml
[33mcommit b8fb966fd55ab957897662a0acc86c99c786ac06[m
Merge: 5ad8a396 1d92c418
Author: Ilithy <[email protected]>
Date: Wed Mar 9 17:50:54 2022 +0100
Merge branch 'Chooloo:master' into master
[33mcommit 5ad8a396e3e687024f4ec8a3fd27afa8b800f7ca[m
Author: Ilithy <[email protected]>
Date: Wed Mar 9 17:50:40 2022 +0100
Update strings.xml
Update to follow the additions
[33mcommit 8071828ed9031be74479bc1efd6d62b6d9371bcd[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 9 16:26:02 2022 +0200
Fixed brief contact call and sms not working
[33mcommit 1d92c41804e4cdbbb50654bd6b5104d35b96dd74[m
Merge: 8d8d785f c6cbd082
Author: Roei Edri <[email protected]>
Date: Wed Mar 9 15:48:21 2022 +0200
Merge pull request #355 from Chooloo/kontacts
Kontacts
[33mcommit c6cbd082587474c0fa36d55bfb6809bb9ace09a6[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 9 15:46:53 2022 +0200
Fixed fast scroller color
[33mcommit ad5a5a1d4d0088f67bd5a2bf755ff924b0900810[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 9 15:45:41 2022 +0200
Improved colors
[33mcommit 96f40e80aeb8f13449966bdfe0d05d0d44821c64[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 9 15:18:17 2022 +0200
Added Kontacts contact fragment and improved list items in koler
[33mcommit 29a6d3e0b996e425b3e6819363ba7ec1da9bfa02[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 9 12:48:57 2022 +0200
Improved search bar font
[33mcommit ae3fcec5825fdc9b6b55a04c764137bd74ee4ee1[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 9 11:54:20 2022 +0200
Improved icon button sizing
[33mcommit dce0f504b3130cc3f453823a04d984e214a7bf0a[m
Merge: 8d8d785f 552e94df
Author: Roei Edri <[email protected]>
Date: Tue Mar 8 16:33:31 2022 +0200
Merge branch 'staging' of github.com:Chooloo/koler into staging
[33mcommit 552e94df138ab30dd9dbe0af5f36dae32ddf0a5a[m
Author: Roei Edri <[email protected]>
Date: Tue Mar 8 16:15:33 2022 +0200
Added numebr copying from recents on long click, fixes #328
[33mcommit c7e525c9efe140d37ded7f05d6018b5a909d470e[m
Author: Roei Edri <[email protected]>
Date: Tue Mar 8 15:21:00 2022 +0200
Changed icon button to inherit image button
[33mcommit 8d8d785fdb0612afd6252f66063394b058a1fac0[m[33m ([m[1;33mtag: v1.4.2[m[33m)[m
Merge: f100abd1 618dea83
Author: Roei Edri <[email protected]>
Date: Tue Mar 8 09:33:26 2022 +0200
Merge pull request #354 from Chooloo/staging
Increased Koler version
[33mcommit 618dea83682bcc5f1de45be090875d85e9de4a68[m
Author: Roei Edri <[email protected]>
Date: Tue Mar 8 09:30:46 2022 +0200
Increased Koler version
[33mcommit f100abd11fd6c53336dd61c0ee494d55e5493cf0[m
Merge: 8413b7da 6c540a27
Author: Roei Edri <[email protected]>
Date: Tue Mar 8 09:26:50 2022 +0200
Merge pull request #353 from Chooloo/fix/rotation
Fixed rotation to be according to phone setting
[33mcommit 6c540a27a9b654f2a587b9e4c84004bb66ec6f54[m
Author: Roei Edri <[email protected]>
Date: Tue Mar 8 09:24:31 2022 +0200
Fixed rotation to be according to phone setting
[33mcommit ea56c5d909333f4e9c31499ec305d5bb607301e5[m
Author: Mojienjoynent <[email protected]>
Date: Sun Mar 6 15:58:20 2022 +0330
added Persian translation
added Persian translation
[33mcommit 8413b7da12cdc4920410cd232ea83a770d5d0cd0[m
Author: Roei Edri <[email protected]>
Date: Sat Mar 5 21:58:20 2022 +0200
Idk
[33mcommit c253619e607c399642c55be4439d63b0354d45ef[m
Author: Roei Edri <[email protected]>
Date: Sat Mar 5 21:53:52 2022 +0200
Update README.md
[33mcommit c2fa331de79e0a5407bc1baf38d72a7279092cfe[m
Merge: 0e53d679 ea5a807f
Author: Roei Edri <[email protected]>
Date: Fri Mar 4 11:49:34 2022 +0200
Merge pull request #350 from Chooloo/fix/dupsettings
Fixed settings gets duplicated when reopening, fixes #346
[33mcommit 0e53d679907409ce1eb1c07df08702aaf9a5ca95[m
Merge: df45a59c 97c34462
Author: Roei Edri <[email protected]>
Date: Fri Mar 4 11:48:42 2022 +0200
Merge pull request #349 from Chooloo/fix/pluskey
Fixed plus key cant be added in dialer, fixes #348
[33mcommit ea5a807f33a577a8cd9c9a2f32dff1ec59594190[m
Author: Roei Edri <[email protected]>
Date: Fri Mar 4 11:48:18 2022 +0200
Fixed settings gets duplicated when reopening, fixes #346
[33mcommit 97c344627e99e749312296ca0066fbaad02ba856[m
Author: Roei Edri <[email protected]>
Date: Fri Mar 4 11:43:32 2022 +0200
Fixed plus key cant be added in dialer, fixes #348
[33mcommit df45a59c2282c71726e5d368f94961ddb49b1cff[m[33m ([m[1;33mtag: v1.4.1[m[33m)[m
Author: Roei Edri <[email protected]>
Date: Thu Mar 3 18:20:30 2022 +0200
Increased package version and updated apk
[33mcommit 310216e45622aab5cebe9e319851f3435a5b83b4[m
Merge: 663e856b 45a4f52f
Author: Roei Edri <[email protected]>
Date: Thu Mar 3 18:13:37 2022 +0200
Merge pull request #345 from Chooloo/fix/accounts
Fix/accounts
[33mcommit 45a4f52ff53272de9d9a665ac470051bad13ab9e[m
Author: Roei Edri <[email protected]>
Date: Thu Mar 3 18:13:16 2022 +0200
Removed should ask sim menu item
[33mcommit 0d6143434fbf210a3722d7b315e464e361a038c7[m
Author: Roei Edri <[email protected]>
Date: Thu Mar 3 18:12:24 2022 +0200
Fixed sim selection shows up twice and removed sim preference
[33mcommit 663e856b9515fe422b3636ee9a3a7b9dada2db30[m
Merge: 734bc6d3 3f5b8469
Author: Roei Edri <[email protected]>
Date: Wed Mar 2 23:08:12 2022 +0200
Merge pull request #344 from Chooloo/ui
UI
[33mcommit 3f5b84699847a4250a24ba417989c4d0814b378b[m
Merge: 9b39d402 734bc6d3
Author: Roei Edri <[email protected]>
Date: Wed Mar 2 23:08:04 2022 +0200
Merge branch 'master' into ui
[33mcommit 734bc6d32c9ce479ae2debc5f99e0405b33f8bb9[m
Merge: 163f3047 54965855
Author: Roei Edri <[email protected]>
Date: Wed Mar 2 23:06:10 2022 +0200
Merge pull request #343 from Chooloo/fix/callkeys
Fixed call diapad keys not working
[33mcommit 9b39d402f33c5a061681bf28edd5b21f575cd279[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 2 23:05:58 2022 +0200
Fixed (hopefully) sim selection dialog
[33mcommit 549658554a3dfbf3fb5eafa26f364876c8d7d052[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 2 22:54:38 2022 +0200
Fixed call diapad keys not working
[33mcommit 087695960d7ae082541db8ece28c31752ba860ac[m
Author: Roei Edri <[email protected]>
Date: Wed Mar 2 21:51:10 2022 +0200
Removed borders from all icon buttons and organized style usage
[33mcommit 926f9903552c41a2431bbf560c70c8f5291769fb[m
Author: Roei Edri <[email protected]>
Date: Mon Feb 28 20:22:23 2022 +0200
Improved star indication, recent image and contact/recent alignment
[33mcommit d63b084a96b418e8709e78ace633e6b87b4dca62[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 27 21:42:28 2022 +0200
Made buttons less round
[33mcommit 69f9e51fe08552723ad9c195daf76d58b898ffbf[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 27 20:25:11 2022 +0200
Added SELECT_PHONE_ACCOUNT call state handling
[33mcommit 163f304795bb5644604ae59168c95f8ddd0791e0[m
Merge: c4e5df06 5dce7250
Author: Roei Edri <[email protected]>
Date: Tue Feb 22 00:38:55 2022 +0200
Merge pull request #336 from Ilithy/master
Small correction
[33mcommit 5dce7250e2f7d770dcee927730a899f6b58124a5[m
Merge: 0855e72c c4e5df06
Author: Ilithy <[email protected]>
Date: Mon Feb 21 21:26:19 2022 +0100
Merge branch 'Chooloo:master' into master
[33mcommit 0855e72c6fdb72b7e09c1f81ac2c7b702f017e0f[m
Author: Ilithy <[email protected]>
Date: Mon Feb 21 21:25:32 2022 +0100
Small correction
just modified Availablity to Availability
[33mcommit c4e5df06e4cc4f884ad8e2e6e350c304472ea873[m
Merge: eb4c4c49 9fa10ee5
Author: Roei Edri <[email protected]>
Date: Sun Feb 20 20:46:23 2022 +0200
Merge pull request #335 from Chooloo/dev
Dev
[33mcommit eb4c4c49870a5e3f6aa0e4dae745c0b59c94f092[m
Merge: 4580a905 36b1f837
Author: Roei Edri <[email protected]>
Date: Sun Feb 20 20:42:41 2022 +0200
Merge pull request #330 from Ilithy/master
Correction of errors in the French translation
[33mcommit 4580a9054c4027a017be41e0f34fbc994a42f1ab[m
Merge: 5ff56f7c 524b53e5
Author: Roei Edri <[email protected]>
Date: Sun Feb 20 20:42:26 2022 +0200
Merge pull request #331 from gdonisi/master
Added Italian Translation
[33mcommit 5ff56f7cb87e17d0e55362d4f0a364d5149777d5[m
Merge: fe2be78a 7cddae10
Author: Roei Edri <[email protected]>
Date: Sun Feb 20 20:41:29 2022 +0200
Merge pull request #333 from shuvashish76/patch-1
Update README.md with playstore link
[33mcommit 7cddae10836285ec69e3cdb7eb49edc79c2aacf1[m
Author: Shuvashish Sahoo <[email protected]>
Date: Sun Feb 20 14:23:48 2022 +0530
Update README.md
[33mcommit 524b53e5085a85148184840b9786ee72b6bf3d25[m
Author: Giovanni <[email protected]>
Date: Fri Feb 18 17:27:07 2022 +0100
Added Italian Translation
[33mcommit 36b1f837b7f08c012c000f1c4556be04d4262c7f[m
Author: Ilithy <[email protected]>
Date: Fri Feb 18 15:29:33 2022 +0100
Update strings.xml
[33mcommit 103c95cfd3f6bd13b7946299b0985303d860ee4d[m
Merge: bba5d031 fe2be78a
Author: Ilithy <[email protected]>
Date: Fri Feb 18 15:26:18 2022 +0100
Merge branch 'Chooloo:master' into master
[33mcommit bba5d031a511440a4ea6da4208a0c69d81801bef[m
Author: Ilithy <[email protected]>
Date: Fri Feb 18 15:25:27 2022 +0100
Update and rename string.xml to strings.xml
[33mcommit fe2be78a42e930b477a88c975491dd49c9ffbd80[m
Merge: 5cb19f7e 47b6866a
Author: Roei Edri <[email protected]>
Date: Thu Feb 17 19:16:22 2022 +0200
Merge pull request #324 from offa/fdroid_link
Add F-Droid link
[33mcommit 5cb19f7e483999b5d37f5fefed68bd969ae454e6[m
Merge: 7e784c11 40096d8c
Author: Roei Edri <[email protected]>
Date: Thu Feb 17 19:15:17 2022 +0200
Merge pull request #321 from Ilithy/master
French translation
[33mcommit 47b6866af1c33d88edee31d50d2eac30232335fe[m
Author: offa <[email protected]>
Date: Wed Feb 2 16:32:53 2022 +0100
Add F-Droid link (#3)
[33mcommit 9fa10ee512207e582eb10d7c0cb1b288b3046df6[m
Author: Roei Edri <[email protected]>
Date: Mon Feb 14 14:38:49 2022 +0200
Fixed call notification button dont work
[33mcommit 40096d8c934e110e895e5a246a803306ad984e0b[m
Author: Ilithy <[email protected]>
Date: Sun Feb 13 20:36:39 2022 +0100
Update full_description.txt
[33mcommit fa7cf03e993e4c00571f879c14bc96ab5728fd97[m
Author: Ilithy <[email protected]>
Date: Sun Feb 13 20:27:31 2022 +0100
Update string.xml
[33mcommit ce2466c7ef98a681bb2b31969355d4f2c826c906[m
Merge: 1dcc56f8 7e784c11
Author: Ilithy <[email protected]>
Date: Sun Feb 13 19:14:03 2022 +0100
Merge branch 'Chooloo:master' into master
[33mcommit 4476a1c97860e48927a73885ac203b6c3745636e[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 18:41:00 2022 +0200
Removed unecessary png files
[33mcommit 7e784c1143c18d31b0dbce4bbab328946fbd166f[m
Merge: 679c21b1 a6fcd4f1
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 18:40:14 2022 +0200
Merge pull request #323 from offa/image_link
Fix Readme image
[33mcommit 679c21b1525943dfee59bc773a79a9dc2d8fd142[m[33m ([m[1;33mtag: v1.4.0[m[33m)[m
Merge: 6c5aae04 3d432178
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 17:50:01 2022 +0200
Merge pull request #327 from Chooloo/dev
Dev
[33mcommit 3d43217885ef3af41b50f5e4d6c757a44ea8f3d0[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 16:18:19 2022 +0200
Fixed show last call on call click #224
[33mcommit 14a7f86e761f96b43326b3f869fe137852695629[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 16:06:32 2022 +0200
Added dialpad vibration preference #269
[33mcommit 890154328068563551cdbeac6218ab2cac691b62[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 15:48:39 2022 +0200
Fixed dialpad tones not working
[33mcommit 840a2f43f56579aae5a5877d3b68d71f52fdb5b5[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 15:44:26 2022 +0200
Added dialpad notes toggle preference and better favorite contact indication #314
[33mcommit 526b3277ac5f4f08407e2cae0e03ed47ca50828c[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 14:57:30 2022 +0200
Improved recent time indications
[33mcommit 6c5bd7b1c1032698b8059bb3e00056fd43f83505[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 14:25:03 2022 +0200
Improved phones list under contact fragment
[33mcommit b90b0ce44c7c073115e86b88ef3077989533e584[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 13:30:30 2022 +0200
Fixed compact mode toggle #326
[33mcommit b0884418fecd7eb207c05e96345d7f203307a117[m
Author: Roei Edri <[email protected]>
Date: Sun Feb 13 02:23:33 2022 +0200
Converted all icons to google icons and improved ui
[33mcommit 6bc8b1bf21a1175b2c3147ecec7688cfa0a19ef1[m
Author: Roei Edri <[email protected]>
Date: Sat Feb 12 21:20:11 2022 +0200
Made call notification cancel when app crashes
[33mcommit 3797d08a108228455666b65654263384905245a8[m
Author: Roei Edri <[email protected]>
Date: Sat Feb 12 18:39:06 2022 +0200
Ran and resolved full code inspection.
[33mcommit 8a6ece75e67745b54444f04add8af625c123da89[m
Author: Roei Edri <[email protected]>
Date: Sat Feb 12 16:22:09 2022 +0200
Fixed call screen isnt showing in top of lock screen
[33mcommit a1bcb8dcf650ec82745915226846793abbaf940d[m
Author: Roei Edri <[email protected]>
Date: Sat Feb 12 13:38:47 2022 +0200
Fixed some call actions disabled by default