forked from openmrs/openmrs-contrib-android-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq
More file actions
6832 lines (4565 loc) · 216 KB
/
q
File metadata and controls
6832 lines (4565 loc) · 216 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
[33mcommit 597552747ca21501880b6a9493397620852acfdf[m[33m ([m[1;36mHEAD -> [m[1;32mProvider_Module[m[33m, [m[1;31morigin/Provider_Module[m[33m)[m
Author: Deepak Prasad <[email protected]>
Date: Tue Jun 18 16:25:43 2019 +0530
AC-402: Resolve failing test cases
[33mcommit a5b8b91721ad9f98e23b93453e16ee039dd70907[m
Author: Deepak Prasad <[email protected]>
Date: Tue Jun 18 10:56:35 2019 +0530
AC-402
[33mcommit aa2c8ea14984e4d32c4ca856164d148a3bdf66ea[m
Author: Deepak Prasad <[email protected]>
Date: Wed Jun 5 12:59:44 2019 +0530
AC-402: Implement Provider Module
[33mcommit 3a94d55f865efa63d5051f04cba190ef73158565[m[33m ([m[1;31morigin/master[m[33m, [m[1;31morigin/HEAD[m[33m, [m[1;32mmaster[m[33m)[m
Author: Deepak Prasad <[email protected]>
Date: Sun Jun 16 20:47:08 2019 +0530
AC-620: Make UI more consistent (#607)
[33mcommit b8f5f4a11971f0f6f97f71c8aaa9e05050759815[m[33m ([m[1;32mAC-551[m[33m)[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Tue Jun 11 22:55:55 2019 +0800
Release v2.7.3: Update notes and fix publishing
[33mcommit 61319ec62ce612e4778823b22749824135cc3ee0[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Mon Jun 10 23:45:03 2019 +0800
Release 2.7.3, remove unused files
[33mcommit a68157aae4596fbc359d9544579fa4fdb72029b2[m
Author: Prayas Jain <[email protected]>
Date: Mon Jun 10 20:32:54 2019 +0530
AC:534 Integrating android snooper for debugging purpose (#606)
[33mcommit c21a940f85de8fc442cbcc98b5dd23226369b6e5[m
Author: Deepak Prasad <[email protected]>
Date: Mon Jun 10 20:28:40 2019 +0530
AC-618: Revamp Settings Page (#604)
[33mcommit 8f6ab2557054c4c7484cfde2fe7c0fa41f6d58fd[m
Author: Deepak Prasad <[email protected]>
Date: Sun Jun 9 06:35:31 2019 +0530
AC-611: Make Search primary function for Find Patients (#593)
[33mcommit b45b731d3ced2fe8fc9a7de53a39bb93ba910d7c[m
Author: Prayas Jain <[email protected]>
Date: Thu Jun 6 08:23:31 2019 +0530
AC:480 Patient model should extend Person (#586)
[33mcommit d23c576f609d29bb7dad56fc78849c2a70b0a7e9[m
Author: Deepak Prasad <[email protected]>
Date: Tue Jun 4 08:57:05 2019 +0530
AC-607: Replace Apache HTTP API Client library (#592)
[33mcommit dd72f26cac03fc4aa883f4630d067847d6be85d2[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Tue Jun 4 01:21:13 2019 +0800
AC-616: Encrypt play store files earlier, disable publishing on debug builds (#602)
[33mcommit 82c22efaa2e0a99a1a44d2363ff4fa07cb8970a5[m
Author: Deepak Prasad <[email protected]>
Date: Sun Jun 2 08:58:38 2019 +0530
AC-613: Change file structure to match play-publisher's conventions (#601)
[33mcommit 99496f87bcd020c61c0cdc6a84819edd132a7a30[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Sat Jun 1 09:30:40 2019 +0800
Remove unused service account email
[33mcommit 7c51166d75f746082da57978ebf5ddf19cb7e5e4[m
Author: Deepak Prasad <[email protected]>
Date: Thu May 30 21:10:20 2019 +0530
AC-613: Job 'generateReleasePlayResources' failed (#596)
[33mcommit 55a2bbbd0370e67751de92c4c1b9c84b8b9fbf3b[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Thu May 30 00:27:29 2019 +0800
AC-612: Release v2.7.2 (#591)
[33mcommit 1e85180114e0260c49fa189c99129acb64c87eb1[m
Author: Deepak Prasad <[email protected]>
Date: Wed May 29 20:46:16 2019 +0530
AC-609: Change Gradle to latest version (#587)
[33mcommit d64fd5ce7fda8c01db636886673e13907b01f337[m
Author: Deepak Prasad <[email protected]>
Date: Tue May 28 21:00:28 2019 +0530
AC-606: Cannot Initailize SQLCipher (#588)
[33mcommit d3d3d500d392fbb94ad496b30e1c76000596bcdc[m
Author: Deepak Prasad <[email protected]>
Date: Tue May 21 20:58:12 2019 +0530
AC-605: Add release folder to gitignore (#584)
[33mcommit d4ada1a8d402bd848454e942245bd56179b43d4c[m
Author: Deepak Prasad <[email protected]>
Date: Sun May 19 20:29:11 2019 +0530
AC-603: Release notes 2.7 (#582)
[33mcommit ae424ff31863219f55267e993692a471097f8288[m
Author: Deepak Prasad <[email protected]>
Date: Tue May 14 21:04:29 2019 +0530
Added Kotlin dependency to app level build.gradle file (#581)
[33mcommit 2a3bec7388fbc932bb89bba1323e9cc8f8d09ef7[m
Author: Abdelaty Mohammedmagdi Abdelaty <[email protected]>
Date: Mon May 13 03:35:52 2019 +0200
AC-597:Using left/right instead of start/end attributes. (#572)
[33mcommit 47e51587f9cfc1526d40d112d4ea365fc82d8891[m
Author: Vansh Arora <[email protected]>
Date: Mon May 13 06:59:21 2019 +0530
AC 557 - Add Contextual Action Bar in Synced Patients to delete multiple patients at once (#565)
[33mcommit ac1458d2d1b3ca4c5cf92f47bdbed673b8db551c[m
Author: Rohan Sharma <[email protected]>
Date: Sat May 11 21:19:31 2019 +0530
AC-471 Setup Room and Create Entities (#488)
[33mcommit 548a376333aab67a966322a38eb19874a840cc5d[m
Author: Deepak Prasad <[email protected]>
Date: Fri May 10 20:38:51 2019 +0530
AC-601: Clicking on Privacy Policy in settings opens the Privacy Policy (#580)
[33mcommit 0b1b9ca94ded8276bd459f73a21dde45e24a8205[m
Author: Rohan Sharma <[email protected]>
Date: Tue May 7 08:15:50 2019 +0530
Added country picker to Register patient activity (#571)
[33mcommit 69dcdd3c521f8a4b29269ab4fa9665fcffb98bbd[m
Author: Vankineeni Tawrun <[email protected]>
Date: Sun May 5 13:25:13 2019 +0530
AC-498 Added Delete Image for Uploaded image (#542)
[33mcommit 4ccbc4caad7b666e38ba6c1b11d01edaa5a167ae[m
Author: Abdelaty Mohammedmagdi Abdelaty <[email protected]>
Date: Sun May 5 03:31:35 2019 +0200
AC 538: Add Toast Message when going online. (#562)
* Update openmrs-client/src/main/res/values/strings.xml
[33mcommit d7aa3833a5a6c6527f52d6977d0a76961104b39e[m
Author: Abdelaty Mohammedmagdi Abdelaty <[email protected]>
Date: Sun May 5 03:28:37 2019 +0200
AC-566: Replace Explicit types with <> (#549)
[33mcommit d7a11cc66b58ea0d46b66e93ba2275b3a94a5c39[m
Author: Vankineeni Tawrun <[email protected]>
Date: Sun May 5 06:55:26 2019 +0530
AC-594 Travis CI Error Added dist: trusty (#570)
[33mcommit c0b2f9bc1c77df4ba443cb3e2e04c435b5266c11[m
Author: Rohan Sharma <[email protected]>
Date: Sat May 4 07:03:01 2019 +0530
App now reverts back to register patient activity on clicking cancel (#544)
[33mcommit 16a3a1228229b13b071b23a8e4cbe0394a557c35[m
Author: Deepak Prasad <[email protected]>
Date: Sat May 4 06:52:54 2019 +0530
AC-592: Buttons should follow Material design guideline (#567)
[33mcommit bd9c2a2176f85d9e5e727b03e8058e0f6be71026[m
Author: Abdelaty Mohammedmagdi Abdelaty <[email protected]>
Date: Wed May 1 14:39:35 2019 +0200
AC-565: Replace anonymous types with Java 8 lamdas (#552)
[33mcommit dcc07b10e930e2aacc0c412bc26f3f1fdca24ee1[m
Author: Deepak Prasad <[email protected]>
Date: Wed Apr 24 13:30:51 2019 +0530
AC-544: Re-developing OpenMRSLogger (#564)
[33mcommit 79f0e9032142a2873c56cf7b74339b607e6522e9[m
Author: Deepak Prasad <[email protected]>
Date: Wed Apr 24 13:26:44 2019 +0530
AC-579: Added Privacy Policy link to Settings page (#563)
[33mcommit 7e686b236c1de25f34610f4bcd5814272f61e110[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Wed Apr 24 15:54:20 2019 +0800
Update Codecov badge link
[33mcommit 6d8fbe42868176b01dec48ed322a1873ff5e93cd[m
Author: Vankineeni Tawrun <[email protected]>
Date: Wed Apr 24 13:12:38 2019 +0530
AC-483 Added codecov to repository (#545)
[33mcommit 152a882b05abf61c4e45d83a91dda57690e4789c[m
Author: Vansh Arora <[email protected]>
Date: Wed Apr 24 13:06:56 2019 +0530
AC587: Obsolete SDK_INT Version Check (#557)
[33mcommit 680934703b287d3a82f204059a5cbe4136b31782[m
Author: Vansh Arora <[email protected]>
Date: Wed Apr 24 12:52:31 2019 +0530
AC 554 Visit Note not visible after clicking "Show Details" on a saved Visit Note (#556)
[33mcommit bee21deb6d7b713aa35050f2a40bf64deb46e63e[m
Author: Sanjula Madurapperuma <[email protected]>
Date: Tue Apr 23 07:30:22 2019 +0530
AC-571 - Application Crashes when click download concepts (#534)
[33mcommit 0e3a94df9b9d1998ba978e51e45ade62f8259d26[m
Author: Vankineeni Tawrun <[email protected]>
Date: Tue Apr 23 07:27:56 2019 +0530
AC-586 Show Toast when App is in Foreground (#554)
[33mcommit 0e4dd1dc9886890f57dacff45e8f75f5933c816c[m
Author: Vankineeni Tawrun <[email protected]>
Date: Sun Apr 21 07:11:40 2019 +0530
AC-590 Removed unused namespaces in xml files (#555)
[33mcommit 934e55bd84a7c9a7a8f46ab80059bff436f9257b[m
Author: Vankineeni Tawrun <[email protected]>
Date: Sun Apr 21 07:10:33 2019 +0530
AC-588 removed static snackbar (#561)
[33mcommit cfadc9da713891be810a96cac93c41b9ce6c3356[m
Author: Vankineeni Tawrun <[email protected]>
Date: Sun Apr 21 06:32:58 2019 +0530
AC-589 added baselineAligned attribute (#558)
[33mcommit 4c461ea2dcf0f63adf88485a0649b9cd95e63228[m
Author: Vansh Arora <[email protected]>
Date: Sat Apr 20 08:59:02 2019 +0530
AC 563: Show/Hide password brings cursor of EditText to beginning (#523)
[33mcommit 5a566f1574718b3cfc5aba966e22fbf2bd6795ed[m
Author: Madhur Gupta <[email protected]>
Date: Sat Apr 20 08:42:04 2019 +0530
AC-569: Added Toast after User Logout (#513)
* Added Toast after User Logout
* Update openmrs-client/src/main/res/values/strings.xml
[33mcommit 2609a35d6a1a8f498cd52d17fc9088fddd24ee11[m
Author: Vankineeni Tawrun <[email protected]>
Date: Thu Apr 18 19:42:06 2019 +0530
AC-585 Changed APK location in build.gradle (#553)
[33mcommit cbc3b51c9d638cde6e25154c9e42a02a98f4c925[m
Author: Vankineeni Tawrun <[email protected]>
Date: Thu Apr 18 09:11:48 2019 +0530
AC-485 Set Custom Path for Release APK (#543)
[33mcommit 01d2adce7050e1ab4cc95d438b74bbdb7c3c32f4[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Sun Apr 14 23:34:08 2019 +0800
AC-584: Renew GITHUB API key to deploy to Play store (#541)
[33mcommit 2b8bc47ed4c30cccad722934075a6094f8ea724e[m
Author: Deepak Prasad <[email protected]>
Date: Fri Apr 12 08:37:01 2019 +0530
AC-581: Failed to resolve variable ${project.groupId} (#540)
[33mcommit 6a7b7d24b50e204d204d8bdafa4d8f0833b75a34[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Wed Apr 10 23:26:13 2019 +0800
AC-580: Release 2.7.0 (#538)
[33mcommit 85388e72243cd56f22e32ca0784a2a9da6e347d8[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Wed Apr 10 22:42:06 2019 +0800
AC-580: Release 2.7.0 (#537)
- Remove code coverage for now
- Remove unused code in Travis CI
[33mcommit 392b3e508b19bf28181499790a366d717b4fbe06[m
Author: Deepak Prasad <[email protected]>
Date: Sun Apr 7 19:38:35 2019 +0530
AC-561: Add a Privacy Policy (#517)
[33mcommit 556778cf9f22d94c01765ebb3496c1f09dda5368[m
Author: Tarek Alabd <[email protected]>
Date: Sun Mar 31 03:18:21 2019 +0200
Annotate NotNull / Nullable on every Java class where needed. (#518)
[33mcommit df105c5590acbb8e9d2c8b40234a873a3ee64332[m
Author: Vankineeni Tawrun <[email protected]>
Date: Sun Mar 31 06:45:32 2019 +0530
AC-568 : removed PHONE STATE and WIFI STATE permission (#514)
[33mcommit c14d2a0209c1381e0dd7c2115f84c5d4ff63d5db[m
Author: Rimjhim Bhadani <[email protected]>
Date: Thu Mar 21 08:37:46 2019 +0530
AC-542: Saving the vitals on screen rotation (#495)
[33mcommit 1094dc1e333a34985d6e0c855e2e69bfc54108e5[m
Author: Vankineeni Tawrun <[email protected]>
Date: Tue Mar 19 21:30:45 2019 +0530
AC 467: user details change detection (#491)
[33mcommit fc41718f99078b2a94b562357b8ad067b249ca44[m
Author: Shubham Pinjwani <[email protected]>
Date: Mon Mar 18 06:47:38 2019 +0530
Prevented crashing when selecting "Take a photo" option (#494)
[33mcommit e7ddfedae08b67e7e27656fb316b6bfcb7432507[m
Author: Shubham Pinjwani <[email protected]>
Date: Sun Mar 17 21:25:55 2019 +0530
AC-489: Non Alphanumeric Value in Postal Code Field (#493)
[33mcommit 34be4c926dfbef4fa7e66f9bb6db9ca50da98c87[m
Author: Deepak Prasad <[email protected]>
Date: Thu Mar 14 08:22:10 2019 +0530
AC-539: Added Outlined Box and Error messages in Patient Info Form (#487)
[33mcommit c72595df2b9e20482abc25aeed2aea39c7bd70c5[m
Author: Rimjhim Bhadani <[email protected]>
Date: Thu Mar 14 07:05:00 2019 +0530
AC-541: Handling multiple network calls (#490)
[33mcommit d008659420eb6fdbe2d1a2ee77741db17d0d3e58[m
Author: Rimjhim Bhadani <[email protected]>
Date: Wed Mar 13 21:18:15 2019 +0530
AC-527: Bad request when trying to start a visit (#472)
[33mcommit 5680890716aecbb419236c081c1232fab0575711[m
Author: Rimjhim Bhadani <[email protected]>
Date: Tue Mar 12 06:02:17 2019 +0530
AC-526 Fix Lint Errors in XML files (#489)
[33mcommit ac40c5a8e1eac9e3bac572a465d5193308c4fef2[m
Author: Rimjhim Bhadani <[email protected]>
Date: Sat Mar 9 13:10:58 2019 +0530
AC-499 Bad request in Form Entry (#482)
[33mcommit 34dc69a6b1cab94e8ec081396652597ba817d2a1[m
Author: Vankineeni Tawrun <[email protected]>
Date: Thu Mar 7 07:21:31 2019 +0530
AC-462: Improve Progress Dialog (#483)
[33mcommit e2692a2f1f618cb592fb6d0916ff19d09a3d396a[m
Author: Asgardian8740 <[email protected]>
Date: Thu Mar 7 07:18:08 2019 +0530
AC-532 Adding validation to fields of contact information (#479)
[33mcommit dccc081fbdbc73786da3b8d6fb341c3853f441ee[m
Author: SIDDHANT SINGH <[email protected]>
Date: Thu Mar 7 07:14:47 2019 +0530
AC-500: Missing validation on patient's name during registration (#484)
[33mcommit d1781f7b979c277cb0e8dcf508f09537a0853321[m
Author: Pulkit Aggarwal <[email protected]>
Date: Wed Mar 6 12:12:37 2019 +0530
AC-535:Migrate To Androidx (#481)
[33mcommit 9a3ec0415526672f5bb705c7a11472d71231a5f0[m
Author: Rimjhim Bhadani <[email protected]>
Date: Tue Mar 5 13:39:18 2019 +0530
AC-528: Warning dialog when back is pressed (#473)
[33mcommit 540276d7bad52c9a31daeead85db86a1124ae253[m
Author: Rimjhim Bhadani <[email protected]>
Date: Mon Mar 4 21:05:26 2019 +0530
AC-529: 'No internet connection' when online (#476)
[33mcommit 101acc2f9858bdf8beb2cfe9c4a6e288defc35fd[m
Author: Rohan Sharma <[email protected]>
Date: Mon Mar 4 20:32:11 2019 +0530
AC-519: updated versions of required components (#463)
[33mcommit e2629d635f0ee1a0ed2d330aa23a191f8d16b852[m
Author: haripriya999 <[email protected]>
Date: Sun Mar 3 20:48:30 2019 +0530
AC-485 Fixed crash when updating non-synchronized patient (#475)
[33mcommit e07d853b4657265bb6f54c0fc987ebc1925a2ed0[m
Author: HelioStrike <[email protected]>
Date: Sat Mar 2 13:12:56 2019 +0530
AC-487: Fixed client's force stop loop
[33mcommit eae2b8207c4160f9312a48e43f71965da122149a[m
Author: Sai Sandeep Mutyala <[email protected]>
Date: Thu Feb 28 13:42:35 2019 +0530
AC-506: Show toasts when toggling sync button (#465)
[33mcommit c78840102b7dd7d820b00ff3450886d78d55130f[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Sun Feb 24 14:39:56 2019 +0800
AC-525: Convert URLValidatorTest to a unit test (#462)
[33mcommit 023b2b52346b079b0c44a1a29e1754d137ccc42c[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Wed Feb 20 09:01:39 2019 +0800
AC-483: Adding Codecov to openmrs-contrib-anroid-client repository (#460)
[33mcommit 698acb171ecaf013ab40ba901d87fabda7c2335c[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Mon Jan 21 09:22:56 2019 +0800
Update PR Template forbr better readability (#452)
[33mcommit f2dfca924f50029b2189223bcd6117deb77341b0[m
Merge: 39b827ed 625dae71
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Mon Jan 21 08:47:01 2019 +0800
Merge pull request #450 from ykarim/AC-443
AC-443: Folder values-v14 is unnecessary
[33mcommit 625dae7188fa1672b816fe32f8fcaf14777d1462[m
Author: Yusuf Karim <[email protected]>
Date: Sun Jan 20 17:13:43 2019 -0500
AC-443: Folder values-v14 is unnecessary
[33mcommit 39b827ed90366a98dc143112309a7a03cdc90b29[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Wed Dec 19 21:54:18 2018 +0800
AC-514: PatientBirthDateValidatorWatcherTest returns a NullPointerException (#449)
[33mcommit 9463a349d177cca953e535459a16704cd164468a[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Tue Dec 18 00:05:36 2018 +0800
AC-512: Removing OpenMRSInstrumentionTestRunner Class (#448)
[33mcommit 25387736ab9b1fc2ba420a0e02ea039634827d55[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Sun Dec 16 23:13:08 2018 +0800
AC-513: Move DateUtilsTest to a Unit test (#447)
[33mcommit cc749c100009dcf2a912592bda495409a10d494d[m
Author: Aditya Bisht <[email protected]>
Date: Mon Dec 10 22:10:53 2018 +0530
GCI-286: Improve Code Coverage for the Android client (#445)
[33mcommit 87aef95ac89da94953f2e8847dd8700a561abe67[m
Author: Lana Honcharuk <[email protected]>
Date: Sun Dec 2 13:07:50 2018 +0200
AC-496: Adding a PR template to openmrs-contrib-anroid-client repository (#444)
[33mcommit 8bbe13dc95d872d3de8bb50974ed8ffd4f02655d[m
Author: Satvik Shrivastava <[email protected]>
Date: Tue Nov 27 18:27:48 2018 +0530
Update README.md (#443)
[33mcommit 23dc903a592b35d2f7fc0e918f84f70e9d909ed6[m
Author: Aleksander Wójtowicz <[email protected]>
Date: Thu Nov 22 23:01:07 2018 +0100
GCI-286: Added tests for DBOpenHelper (#442)
[33mcommit ac236ce475d292c62a7e46ca1dde1785b7fe12fb[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Wed Nov 21 18:43:29 2018 +0800
AC-483 Adding coveralls to openmrs-contrib-anroid-client repository (#441)
[33mcommit f63bbc273706b5a3a81f9a81586f7c2963e1fa6b[m
Author: Aleksander Wójtowicz <[email protected]>
Date: Mon Nov 19 03:30:06 2018 +0100
AC-493: Use editor.apply() instead of editor.commit() (#439)
[33mcommit 917e7d85d3f4db5d2081137f00c4f0222708760f[m
Author: Lana Honcharuk <[email protected]>
Date: Sun Nov 18 18:14:24 2018 +0200
AC-483: Adding coveralls to openmrs-contrib-anroid-client repository (#440)
[33mcommit 78bbe8bd974d18f5c0de9507744e0ec3d4615e03[m
Author: Aleksander Wójtowicz <[email protected]>
Date: Sat Nov 17 04:45:49 2018 +0100
AC-465: Encrypt database from the details derived from the username and password (#437)
[33mcommit 1f0b689500df93dbc57605cb97e8024ad22aa3d9[m
Author: Lana Honcharuk <[email protected]>
Date: Mon Nov 12 16:52:48 2018 +0200
GCI-286: Improve Code Coverage for the Android client (#434)
[33mcommit 6f0eaf8d1b1891ccae7a79796516ba95462d98bd[m
Author: KredkaOfficial <[email protected]>
Date: Mon Nov 12 14:06:21 2018 +0000
AC-429: Can login without specifying location for systems that have login locations (#435)
AC-429: Can login without specifying location for systems that have login locations
[33mcommit d64e591f4a61afc6c8a13db744946c35f5313c5f[m
Merge: 5bc4bf26 2b53b6f9
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Fri Nov 9 22:02:50 2018 +0800
Merge pull request #433 from anuar2k/AC-481
AC-481: Fixed build.gradle file to fix build issues
[33mcommit 5bc4bf268f3c37079c25635946e0bb212ea3e4ec[m
Author: Aleksander Wójtowicz <[email protected]>
Date: Fri Nov 9 14:42:04 2018 +0100
AC-484: Made SecretKeyGenerator.bytesToHex() more efficient (#436)
[33mcommit 2b53b6f9128e036bf6af9218de9b67bbbbdd2cd9[m
Author: Aleksander Wójtowicz <[email protected]>
Date: Fri Nov 9 14:17:29 2018 +0100
AC-481: Fixed build.gradle file to fix build issues
[33mcommit 9a37f0b3c6d6f2f2ea3f2ac0f0fa764df5ae7797[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Thu Aug 23 17:33:35 2018 +0800
[AC-460] The TabHost component is not correctly displaying TabNames in Patient Dashboard (#429)
[33mcommit ef6b54f69771f68ac64b482532d2f4704ead475c[m
Author: Maharaj Fawwaz Almuqaddim Yusran <[email protected]>
Date: Thu Aug 23 05:20:09 2018 +0800
[AC-466] Update Android plugin for Gradle and other libraries (#430)
[33mcommit 1f393c4c3750b5d14e90491c82044944206cbc3d[m
Author: csmuthukuda <[email protected]>
Date: Wed Jul 11 13:21:11 2018 +0530
AC-463:Improve Charts in Patient Dashboard (#426)
[33mcommit 8d0603d49d6a12cb09e5fcdefc4a94fe9fc924e4[m
Merge: 9c6a9d47 a762cf30
Author: Shivang Nagaria <[email protected]>
Date: Sun May 27 01:55:17 2018 +0530
Merge pull request #421 from csmuthukuda/AC-377
AC-377:Add option to change session location from within the app
[33mcommit a762cf3033d56636220aa76890ed9d88830eb681[m
Author: csmuthukuda <[email protected]>
Date: Sun May 13 15:20:04 2018 +0530
AC-377:Add option to change session location from within the app
[33mcommit 9c6a9d47b4573f57e16ab9afc5a141eb39de9d8d[m
Author: 宁月 <[email protected]>
Date: Thu May 10 22:26:56 2018 +0800
AC-454:Fixed button is still clickable when registering patient (#420)
[33mcommit 9f12992f5ecacb0efa52489d478a824de47cbce6[m
Merge: 5d65adf6 6c27ed26
Author: Shivang Nagaria <[email protected]>
Date: Sat Mar 17 03:11:52 2018 +0530
Merge pull request #417 from StonyMoon/master
AC-455: Fixed App crashes while showing toast.
[33mcommit 6c27ed268e057916abc7487caa5d85bda83ca5a6[m
Author: StonyMoon <[email protected]>
Date: Wed Mar 7 12:48:50 2018 +0800
AC-455:Fixed App crashes while showing toast
[33mcommit 5d65adf62d42e041f5d471f37e5462585255738a[m
Merge: 2feba482 364b6549
Author: Shivang Nagaria <[email protected]>
Date: Mon Mar 5 13:33:03 2018 +0530
Merge pull request #409 from shivtej1505/AC-442
AC-442: Check for honeycomb or above is not necessary
[33mcommit 364b6549167b924c36d411be345f6552933461b4[m
Author: Shivang Nagaria <[email protected]>
Date: Mon Mar 5 13:26:32 2018 +0530
AC-442: Check for honeycomb or above is not necessary
[33mcommit 2feba482ce41fbe853aaa9df6d65048fedb56289[m
Author: Manish Kumar <[email protected]>
Date: Wed Feb 28 01:30:29 2018 +0530
AC-452 :Fixed app crash on opening Form entry (#414)
[33mcommit 90ff4aa42964a5dd2c345819389dca8cc3d0e94a[m
Author: Manish Kumar <[email protected]>
Date: Sun Feb 25 11:17:12 2018 +0530
AC-445: Removed redundant variables (#412)
[33mcommit 219b3d1f7173d1ebc04be9e26e4845a96b469024[m
Author: Jimi <[email protected]>
Date: Wed Feb 21 14:56:48 2018 +0800
AC-453 :Fixed app crashes when the vitals list is opened (#416)
[33mcommit 45ffa9834f7a4a45cd7a632be0ce0b6fdcc2c537[m
Author: Manish Kumar <[email protected]>
Date: Thu Feb 15 02:55:53 2018 +0530
AC-444 : Replaced deprecated Build.version.SDK (#413)
[33mcommit 12ce446b04244c8e271a8553b5fffa19f075d3a9[m
Author: Maharaj Fawwaz A. Yusran <[email protected]>
Date: Thu Feb 15 04:19:06 2018 +0700
[AC-447] Add Data Validation when registering patients (#406)
[33mcommit 21a7509c6519f89e0d62c2ae9042d126d5d43e22[m
Author: ARKADEEP <[email protected]>
Date: Thu Feb 15 02:40:02 2018 +0530
[AC-449] Uncaught java.lang.NullPointerException in LoginFragment (#410)
[33mcommit 1ba96b77fd4e4ec61fb4b1a6a337862a6e6703b4[m
Author: Manish Kumar <[email protected]>
Date: Thu Feb 15 02:32:27 2018 +0530
AC-430: Added a loading spinner when registering a new patient (#411)
[33mcommit 1603ce47b04cbe8c393bc9d00aeed87d250f0b83[m
Author: Maharaj Fawwaz A. Yusran <[email protected]>
Date: Tue Feb 13 02:58:38 2018 +0700
[AC-438] Upgrade to support latest Android Version (#404)
[33mcommit cac076a9946656644bb5d28871b7a1caa510d91b[m
Author: Matthew Whitaker <[email protected]>
Date: Mon Feb 12 06:51:46 2018 -0700
[AC-437] Update dependencies and gradle version (#405)
[33mcommit 34b20b496457c3251071d3975f70ac5ead505a77[m
Author: Manish Kumar <[email protected]>
Date: Sun Feb 11 16:52:37 2018 +0530
fix:issue AC-441 (#408)
[33mcommit eae03ad73e2bf3b192311019a785e516159c315e[m
Author: Ben Ho <[email protected]>
Date: Sun Feb 11 06:20:13 2018 -0500
AC-446: Variable obscreateList is redundant (#407)
AC-446: (Suggestion) Add line breaks
[33mcommit 3c225ef009d52972bca4db381c35351e96a0f363[m
Merge: 85eb3d1e dd85ee64
Author: Shivang Nagaria <[email protected]>
Date: Sat Jan 13 09:44:33 2018 +0530
Merge pull request #403 from f4ww4z/AC-439
[AC-439] Write unit test for validateDate method
[33mcommit dd85ee64eff020883c82732ccded2d26be8ffe3a[m
Author: f4ww4z <[email protected]>
Date: Fri Jan 12 19:24:21 2018 +0700
[AC-439] Write unit test for validateDate method
And removed swapping functionality of minDate and maxDate
[33mcommit 85eb3d1e2df9329494a6daca15bf8b57d0a7abbc[m
Merge: 1c79fd68 b432a68d
Author: Shivang Nagaria <[email protected]>
Date: Sat Jan 13 00:41:50 2018 +0530
Merge pull request #400 from JyothsnaAshok/AC-431
[AC-431] Make the toast mesage standard
[33mcommit b432a68dcc968a6e14ac0361c36fa5e99fa0f701[m
Author: JyothsnaAshok <[email protected]>
Date: Wed Jan 10 07:46:33 2018 +0530
[AC-431] Make the toast mesage standard
[33mcommit 1c79fd680f9dd293978572fe636304fadb51c046[m
Merge: 7c400a7a ae390f8f
Author: Shivang Nagaria <[email protected]>
Date: Thu Jan 11 23:38:49 2018 +0530
Merge pull request #399 from f4ww4z/AC-428
[AC-428] Date of Birth entry slow/impractical on Android
[33mcommit ae390f8f393097d2c454bd8ee6c84acda46df199[m
Author: f4ww4z <[email protected]>
Date: Sat Jan 6 13:05:24 2018 +0700
[AC-428] Date of Birth entry slow/impractical on Android
[33mcommit 7c400a7a23de79ae67a6ad0904451b32c52e87b9[m
Author: Matthew Whitaker <[email protected]>
Date: Wed Jan 10 12:39:09 2018 -0700
[AC-436] Add Kotlin to build.gradle files (#402)
[33mcommit b15697400a88c828ad208a1094fea75db9a21cfa[m
Merge: 5f2e2dc3 cb0bdee8
Author: Shivang Nagaria <[email protected]>
Date: Fri Jan 5 12:44:15 2018 +0530
Merge pull request #396 from henziger/AC-426
AC-426: Improve UI of login form
[33mcommit cb0bdee87cdf9976ed4a7a2bd55d4910fb7b3932[m
Author: Eric Henziger <[email protected]>
Date: Mon Dec 11 17:04:29 2017 +0100
Improve UI of login form.
This commit uses HTML formatted strings to show
the user which fields in the login form are required
to be able to login. However, the formatting doesn't
work for TextInputLayout, only for TextView. Therefore,
we toggle between setting the hint on the TextView (to
get color coding) or on the TextInputLayout (to get
floating hints).
This commit also adds some styling to the login button:
Specifically, it turns it pale, not just the background
but the text color as well until all required fields are entered.
[33mcommit 5f2e2dc386f962090e2f127fcc7b6a472031308a[m
Author: karannaik <[email protected]>
Date: Mon Dec 18 11:01:02 2017 -0800
Link to the issue: https://issues.openmrs.org/browse/AC-303 (#394)
Removed remaining all lint icon warnings.
[33mcommit 9306af12fe124800347e3fa299f946d55e30a456[m
Author: Affan Ahmad <[email protected]>
Date: Wed Nov 15 21:30:24 2017 +0530
AC-424:Do not require login location if no locations are configured. (#391)
[33mcommit d9c5a985b9585e36f558626880f9713ae8d8a418[m
Merge: e7261e37 b8140c1b
Author: Avijit Ghosh <[email protected]>
Date: Wed Oct 25 19:44:51 2017 +0530
Merge pull request #390 from anonymous-ME/patch-1
AC-425 - Server URL dose't work with the provided developer credentials.
[33mcommit b8140c1b98019ff6ef69cfaa71a0fca46d3276e2[m
Author: Affan Ahmad <[email protected]>
Date: Fri Oct 13 02:31:37 2017 +0530
Update README.md
Previous server URL dose't work with the provided developer credentials.
[33mcommit e7261e37c7f846b952237e06136e81742644d2b5[m
Author: Eric Henziger <[email protected]>
Date: Wed Sep 20 09:34:13 2017 +0200
AC-303: Lint adjustments for icons (#388)
* Warning IconColors: Icon colors do not follow the recommended visual style
I've added two new icons, ic_stat_notify_download.png and
ic_stat_notify_openmrs.png, that are identical to ic_download.png
and ic_openmrs.png except they are all white which makes them
suitable as notification icons.
* Warning IconDipSize: Icon density-independent size validation
* Warning IconDuplicatesConfig: Identical bitmaps across various configurations
These warnings were resolved by having the different icon resolutions
(hpdi, xhdpi, xxhdpi etc.) follow the recommended scaling ratio as
described in https://developer.android.com/guide/practices/screens_support.html
* Warning IconDensities: Icon densities validation
This warning still remains with this commit. Some icons are only
available for a few resolutions, e.g. ico_edit.png is only available in
hdpi but needs to be provided in mdpi, xhdpi and xxhdpi for this warning
to be resolved.
[33mcommit 5476f28cd3e38527736a63c561f594de23b3954a[m
Author: Eric Henziger <[email protected]>
Date: Mon Sep 18 13:31:58 2017 +0200
AC-394: Add back button to PatientPhotoActivity action bar. (#389)
Pressing the back button will return to the parent activity, i.e.
the PatientDashboardActivity.
[33mcommit bba0301859b9a5a63cf23f42d3e7e2f06fb83fce[m
Merge: a767b5dc d18d16c1
Author: Avijit Ghosh <[email protected]>
Date: Wed Aug 23 00:01:32 2017 +0530
Merge pull request #386 from Veeshal/AC-407
AC-407: Pick patient's photo from gallery while registering.
[33mcommit d18d16c1b88809ab65eedeb832fc5eef49101ef6[m
Author: Vishal Moorthy <[email protected]>
Date: Wed Aug 9 22:26:40 2017 +0300
AC-407: Pick patient's photo from gallery while registering.
[33mcommit a767b5dc14ca2a222b7e36407e0b8345a2fe85f6[m
Merge: 9a324bc2 dfd7cc1a
Author: Avijit Ghosh <[email protected]>
Date: Sat Aug 5 10:05:31 2017 +0530
Merge pull request #384 from DefCon-007/AC-423-new
AC-423:The Client should create forms on the server if missing
[33mcommit dfd7cc1a7087c8ac82126887123d15ef1da076d2[m
Author: Ayush Goyal <[email protected]>
Date: Sat Jul 15 14:20:04 2017 +0530
AC-423:The Client should create forms on the server if missing
[33mcommit 9a324bc29ba1f35450a3e27ac7ca82a6e915442c[m
Merge: 1b3c63ad 927c3728
Author: Avijit Ghosh <[email protected]>
Date: Mon Jul 31 07:51:35 2017 +0530
Merge pull request #381 from DefCon-007/demo
Adds app demo
[33mcommit 1b3c63adfeb462581f5ed6149ad2451e19b4c233[m
Merge: 26737c86 ccb8c7cc
Author: Avijit Ghosh <[email protected]>
Date: Mon Jul 31 07:48:13 2017 +0530
Merge pull request #382 from DefCon-007/url
Changes default server URL
[33mcommit ccb8c7ccdd8f1aed02282e0ae39f496167d63617[m
Author: Ayush Goyal <[email protected]>
Date: Fri Jul 28 12:00:31 2017 +0530
Changes default server URL
[33mcommit 927c3728870d2590fa3bbf917b8e187caa5ee455[m
Author: Ayush Goyal <[email protected]>
Date: Sat Jul 15 14:20:04 2017 +0530
AC-406:Adds app demo
[33mcommit 26737c868950a617c8e4c3002a252a12f4a5ae2f[m
Author: Ayush Goyal <[email protected]>
Date: Sat Jul 22 10:36:37 2017 +0530
AC-406 : Minor Visual Improvements (#379)
[33mcommit 09f287c403f842e784090145df2bd06171d576f8[m
Merge: 4d91decd fe58964b
Author: Avijit Ghosh <[email protected]>
Date: Wed Jul 5 12:28:38 2017 +0530
Merge pull request #380 from DefCon-007/charts
AC-404:Vitals History Chart
[33mcommit fe58964b0ba48ad749d8ac8eca22dbae9ce642ec[m
Author: Ayush Goyal <[email protected]>
Date: Fri Jun 30 15:53:40 2017 +0530
Fix x-axis rendering
[33mcommit d3337ead57e84f6a1b8eaae2d1e7808d06c57789[m
Author: Ayush Goyal <[email protected]>
Date: Fri Jun 30 10:54:58 2017 +0530
AC-404:Vitals History Chart
[33mcommit 4d91decd1ceb99a062642c7eae65c39ee472a295[m
Merge: f2cd5eb8 4a80a7b8
Author: Avijit Ghosh <[email protected]>
Date: Fri Jun 9 12:03:23 2017 +0530
Merge pull request #378 from DefCon-007/AC-403
AC-403 : Feedback / Bug Report System
[33mcommit 4a80a7b87bd9a5e566290727869d38bbe85bf706[m
Author: Ayush Goyal <[email protected]>
Date: Mon Jun 5 17:00:12 2017 +0530
AC-403 : Feedback / Bug Report System
[33mcommit f2cd5eb849f44b9d8bc5d7c2ee0f32b45b09a3a8[m
Merge: c7b2226d 5879d364
Author: dkayiwa <[email protected]>
Date: Mon May 8 02:29:20 2017 -0500
Merge pull request #377 from shivtej1505/AC-301
AC-301: Lint adjustment - Security
[33mcommit 5879d36413d59396c34407d0bae75802bf3b320f[m
Author: shivtej1505 <[email protected]>
Date: Wed Apr 26 23:00:01 2017 +0530
AC-301: Lint adjustment - Security
[33mcommit c7b2226d5c626072540dee1a5e7d870cc267e7a7[m
Merge: 1b44d9bd 598b659a
Author: Avijit Ghosh <[email protected]>
Date: Sat Apr 22 07:53:46 2017 +0530
Merge pull request #340 from shivtej1505/AC-375
AC-375: We need to get rid of compressing patient photo because of qu…
[33mcommit 1b44d9bd06936c9fb61d6b679149df3e42783c6a[m
Merge: e0b53d88 245e4746
Author: Avijit Ghosh <[email protected]>