-
Notifications
You must be signed in to change notification settings - Fork 2
/
t
3299 lines (2226 loc) · 103 KB
/
t
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 a6b0d81d0539dfa3f2544cc777dfaec0f0dd66d6[m[33m ([m[1;32mmaster[m[33m)[m
Merge: 39a8020 ca29983
Author: Denzel Braithwaite <[email protected]>
Date: Tue Jun 14 18:49:28 2022 -0400
Merge branch 'master' of github.com:MarlAndre/food-4-all
[33mcommit ca299835b40362ab330d26d08631c9442ba9ee73[m[33m ([m[1;31morigin/master[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Merge: 4d09236 f6545df
Author: stshayna <[email protected]>
Date: Tue Jun 14 18:49:00 2022 -0400
Merge pull request #109 from MarlAndre/card-index
Card index
[33mcommit 39a8020ccae69eee0e1cb200aee2cb4d64af38da[m
Author: Denzel Braithwaite <[email protected]>
Date: Tue Jun 14 18:45:51 2022 -0400
added back items controller
[33mcommit f6545df8a0f3ff01f7cc5fe4c36998c7fbf2d83f[m
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 18:34:43 2022 -0400
applied same changes to my favorites. Might be issue with donated or reserved
[33mcommit 4d092369bbd7da2dfde81556f23149457af38331[m
Merge: 91f5b90 8b1b366
Author: Marlène <[email protected]>
Date: Tue Jun 14 18:08:26 2022 -0400
Merge pull request #108 from MarlAndre/show-margin-bottom
added the same margin-top/bottom for the last div
[33mcommit 91f5b904e31ee61e8af2a89634419189d0e0e45d[m
Merge: 69be7ee c535a9d
Author: Marlène <[email protected]>
Date: Tue Jun 14 18:07:49 2022 -0400
Merge pull request #107 from MarlAndre/requests-show-img
Requests show img
[33mcommit 69be7eedc71c0596bac6e10f776633b611069aa1[m
Merge: f4b6223 e4aedd4
Author: Marlène <[email protected]>
Date: Tue Jun 14 18:07:08 2022 -0400
Merge pull request #102 from MarlAndre/messages-item-img
item seed img and dynamic item img in messages
[33mcommit c3addff4d96235d80d6a1d5781f5dcc811fa716a[m
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 18:04:31 2022 -0400
km is now bold
[33mcommit 11405673ab4ae1e1f4e417bbba9f5ebbbcb5dfd7[m
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 18:02:22 2022 -0400
changed styling of the card to put km and address on the same line
[33mcommit f4b622374f0b2ae82d67c735ccd981c765822efe[m
Merge: 965fd6c 462433f
Author: Marlène <[email protected]>
Date: Tue Jun 14 17:50:51 2022 -0400
Merge pull request #105 from MarlAndre/fix/items-index-postal-code-popup
Fix/items index postal code popup
[33mcommit 462433fcae63eb58452059b25751a67e31de9122[m
Author: nicolas fraisse <[email protected]>
Date: Tue Jun 14 17:09:02 2022 -0400
Fix distances
[33mcommit 8b1b366aa1e121540b97b6962c195b83a3f79067[m
Author: [email protected] <[email protected]>
Date: Tue Jun 14 16:14:31 2022 -0400
added the same margin-top/bottom for the last div
[33mcommit 965fd6cea05de4af0adccbcc66c40152b693b92d[m
Merge: 8146265 1b24bf8
Author: stshayna <[email protected]>
Date: Tue Jun 14 16:11:48 2022 -0400
Merge pull request #106 from MarlAndre/status-item
Status item
[33mcommit c535a9d6733c151992440e003c6ef30ba5dca816[m
Author: [email protected] <[email protected]>
Date: Tue Jun 14 16:01:53 2022 -0400
resized the item img like other pages
[33mcommit 1b24bf8fb440493ddd9437a6f516abb2c17df35d[m
Merge: ad5e1dc 8146265
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 16:00:53 2022 -0400
Merge branch 'master' into status-item
[33mcommit 71791ba04f45d9de8cdcb919b74ab9d235a23dbe[m
Merge: 8146265 e4aedd4
Author: [email protected] <[email protected]>
Date: Tue Jun 14 16:00:48 2022 -0400
Merge branch 'messages-item-img' into requests-show-img
[33mcommit ad5e1dc3eef92ce3cddc5ad6a1e9aacf14bceb74[m
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 16:00:34 2022 -0400
added opacity for the item status and moved it at the bottom of the picture
[33mcommit 8146265c89d05e90054d66a2784c8a2f136e075a[m
Merge: d569567 82ca353
Author: stshayna <[email protected]>
Date: Tue Jun 14 15:50:11 2022 -0400
Merge pull request #104 from MarlAndre/move-back-btn
moved back button underneath logo, changed cauliflower picture
[33mcommit e4aedd400a317ce8284cd84da67b3674ea7061ea[m
Author: [email protected] <[email protected]>
Date: Tue Jun 14 15:46:21 2022 -0400
added margin bottom of request card
[33mcommit 97e5f8616f33448e9afa8423fc021d096d20404b[m
Author: nicolas fraisse <[email protected]>
Date: Tue Jun 14 15:42:00 2022 -0400
Display none by default
[33mcommit 33de250641a5a9543a07cfb753371890e693f6b5[m
Author: nicolas fraisse <[email protected]>
Date: Tue Jun 14 15:41:01 2022 -0400
Fix items page postal code popup behavior
[33mcommit d569567a9ced909ae569058fec37dc9ffff97b0e[m
Merge: 66bc41f c0a3caa
Author: Marlène <[email protected]>
Date: Tue Jun 14 14:00:58 2022 -0400
Merge pull request #103 from MarlAndre/item-cards-img
wrapped img by a div
[33mcommit 82ca35315c78f8e0912ecf5e9c39f814bf713733[m
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 12:37:16 2022 -0400
small change, i changed wording from best before to expired on on show page
[33mcommit c0a3caa7e8a3242427d5551c2a168c8956e83c56[m
Author: [email protected] <[email protected]>
Date: Tue Jun 14 12:30:37 2022 -0400
fixed the same in my favorites, my items and my profile pages
[33mcommit c09c2748bebcf93c2011ee285f65070f98042ffa[m
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 12:28:41 2022 -0400
moved back button underneath logo, changed cauliflower picture
[33mcommit 8f3af00672950ee386a97e85dac2ec982f894eb8[m
Author: [email protected] <[email protected]>
Date: Tue Jun 14 12:17:52 2022 -0400
wrapped img by a div
[33mcommit 27515249161e3f0f9539e816789094bb920833da[m
Author: [email protected] <[email protected]>
Date: Tue Jun 14 12:03:03 2022 -0400
item seed img and dynamic item img in messages
[33mcommit 66bc41f7b8dcdff8f9f81bac9fe16730dc9ebb37[m
Merge: 470d29e f55ce65
Author: stshayna <[email protected]>
Date: Tue Jun 14 10:48:25 2022 -0400
Merge pull request #101 from MarlAndre/back-button
added back button on every pages : show, new, messages and my favorites
[33mcommit 470d29effd7eea2f3a7a1b17c7fca2c504ab5269[m
Merge: 171eae4 00eaade
Author: stshayna <[email protected]>
Date: Tue Jun 14 10:42:12 2022 -0400
Merge pull request #92 from MarlAndre/styling-index
Styling index
[33mcommit f55ce650619d0636af1cfc79dc55fd8858beaa30[m
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 08:08:31 2022 -0400
added back button on every pages : show, new, messages and my favorites
[33mcommit 00eaadee6713205c14972ec4fb6864cf009a94bb[m
Author: Marlene Andre <[email protected]>
Date: Tue Jun 14 07:38:15 2022 -0400
added warning sign on markers and show page
[33mcommit 171eae4d5cac12bf5d9e1a42c08a608f8dcc67a9[m
Merge: eb019c5 d06d801
Author: Denzel Braithwaite <[email protected]>
Date: Tue Jun 14 07:28:31 2022 -0400
Merge pull request #100 from MarlAndre/margin-bottom
index and show pages
[33mcommit d06d801f65d160d7bde06d78f4b0f229e819b939[m
Author: [email protected] <[email protected]>
Date: Mon Jun 13 12:12:20 2022 -0400
index and show pages
[33mcommit eb019c512c8fe23eb3e73ad4ce19e5c46613b2ef[m
Merge: 3a49f17 b62513c
Author: Denzel Braithwaite <[email protected]>
Date: Mon Jun 13 07:00:10 2022 -0400
Merge pull request #99 from MarlAndre/user-img
udpated user images in cards
[33mcommit 3a49f1796fa205965eeb868bb596cdd509509ab7[m
Merge: 8f2720f 706e3cf
Author: Denzel Braithwaite <[email protected]>
Date: Mon Jun 13 06:59:15 2022 -0400
Merge pull request #98 from MarlAndre/best-before
suggested wording change
[33mcommit 8f2720f473eac037e248688fb7b16a08178a696b[m
Merge: c141f12 a07cd01
Author: Denzel Braithwaite <[email protected]>
Date: Mon Jun 13 06:57:56 2022 -0400
Merge pull request #97 from MarlAndre/card-truncate
make item description shorter in cards
[33mcommit c141f127a9ffcb45401bb4b85e07b77f491006cb[m
Merge: 9e78dbc c8ef5e5
Author: Denzel Braithwaite <[email protected]>
Date: Mon Jun 13 06:56:27 2022 -0400
Merge pull request #96 from MarlAndre/form-validations
added new item form validations
[33mcommit b62513cec28ff16062c3ec20ac5ae38e100b0e4b[m
Author: [email protected] <[email protected]>
Date: Sun Jun 12 18:46:44 2022 -0400
udpated user images in cards
[33mcommit 706e3cf52032050ac0646e0385ec2bab56484fc0[m
Author: [email protected] <[email protected]>
Date: Sun Jun 12 18:33:03 2022 -0400
suggested wording change
[33mcommit a07cd01c0269e0a76a6fdc825471e66b6aeb735c[m
Author: [email protected] <[email protected]>
Date: Sun Jun 12 18:20:58 2022 -0400
further truncated item description looking in mobile view
[33mcommit 69765052c682f669c114a48c6fbf404290b5ecbd[m
Author: [email protected] <[email protected]>
Date: Sun Jun 12 18:09:29 2022 -0400
make item description shorter in cards
[33mcommit 9e78dbc3d37c1781c43264673bda1fd632ce2a62[m
Merge: 9567c8a e6265ab
Author: stshayna <[email protected]>
Date: Sun Jun 12 18:04:45 2022 -0400
Merge pull request #95 from MarlAndre/update-seed-for-demo
Update seed for demo
[33mcommit 9567c8ab9eaf074d3a67dc562a78e92bd17b0e27[m
Merge: c5f95fb 3dca106
Author: stshayna <[email protected]>
Date: Sun Jun 12 17:50:51 2022 -0400
Merge pull request #94 from MarlAndre/add-distance-to-favorites
Add distance to favorites
[33mcommit c8ef5e5b90476934205f65abceac8652cf7f6696[m
Author: [email protected] <[email protected]>
Date: Sun Jun 12 17:38:40 2022 -0400
added new item form validations
[33mcommit e6265ab63169cc542be3c3cd50e666f79d45f214[m[33m ([m[1;31morigin/update-seed-for-demo[m[33m)[m
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 14:18:23 2022 -0400
changed order of ingredients.json
[33mcommit 913baa4c048a9ebb7ebdaf311146e37536e54235[m
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 14:07:02 2022 -0400
added better ingredient descriptions and changed seed
[33mcommit 3dca106f2cceb7abca4ca434830198784891382b[m[33m ([m[1;31morigin/add-distance-to-favorites[m[33m)[m
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 12:23:33 2022 -0400
fixed method that was breaking
[33mcommit 220801291863782c608684b5171b012b6e43beaf[m
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 12:21:26 2022 -0400
fixed comments
[33mcommit 9516d521e2150e79d943b1d8dd260c3e70d794d1[m
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 12:20:23 2022 -0400
tweaked method
[33mcommit 6658d459ea6adcaee0f3f46dac5176106d079606[m
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 12:18:30 2022 -0400
added distance to favorites
[33mcommit 17df0bb862781863775a5519ce2e4e9c42c9cda9[m
Merge: 5501c60 c5f95fb
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 11:22:11 2022 -0400
Merge branch 'master' into update-seed-for-demo
[33mcommit c5f95fb4e49c6ad9d15272cbab521d23c862ed5c[m
Merge: de062bd d02f984
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 11:17:27 2022 -0400
Merge pull request #88 from MarlAndre/fix-favs
fixed toggle effect of fav icon
[33mcommit de062bdc7c80e17f3fe2e0bef8bedaf88b21caff[m
Merge: 9e2d1aa faca8ec
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 11:14:54 2022 -0400
Merge pull request #93 from MarlAndre/card-colors-status
Card colors status
[33mcommit 5501c604afea1e237aede9f0bfae54b042f971dd[m
Merge: bd019c4 9e2d1aa
Author: Denzel Braithwaite <[email protected]>
Date: Sun Jun 12 11:07:48 2022 -0400
Merge branch 'master' into update-seed-for-demo
[33mcommit faca8ec7dd2bba297f59c14ee49fc67d5b9e8fb2[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 23:59:47 2022 -0400
wording
[33mcommit 5a2f26d7ca9f76dbef72cef0a901cd16545de4c8[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 23:32:56 2022 -0400
added same logic to my fav items and requested item
[33mcommit 78ada20cd434ad338b6f9a2c08d2a77747df5331[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 23:23:25 2022 -0400
index cards to change color based on donated/reserved status
[33mcommit 9b2d8c7b35fd2854d234a1bd8d6592d20ef9e9f2[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 23:04:02 2022 -0400
message card changes color based on item.status
[33mcommit d02f984f2d9748e99a977af585ee379d3cc570dc[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 17:50:31 2022 -0400
change icon to red color
[33mcommit d69a365811e940ff5834d133084215d255b00b5b[m[33m ([m[1;31morigin/styling-index[m[33m)[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 17:39:11 2022 -0400
changed range back to 5km
[33mcommit 9e2d1aab16cd78c421e6d2b33dd923ad2cc5d3d9[m
Merge: f7c751f 3485a55
Author: Marlène <[email protected]>
Date: Sat Jun 11 17:34:46 2022 -0400
Merge pull request #91 from MarlAndre/add-item-button
changed wording of the button in new item form as discussed
[33mcommit f7c751f5d027fdf51b1b33dc5991fa9d2c6dcca3[m
Merge: 743d1eb b690722
Author: Marlène <[email protected]>
Date: Sat Jun 11 17:34:33 2022 -0400
Merge pull request #90 from MarlAndre/higher-navbar
making the navbar just a little taller
[33mcommit 743d1eb936580d194a58aad5f1f1149015717187[m
Merge: 25ec971 7cac9a1
Author: Marlène <[email protected]>
Date: Sat Jun 11 17:34:22 2022 -0400
Merge pull request #89 from MarlAndre/pg_search
add item_type into search filter
[33mcommit 4004732e0816de7e368c6a2574c75eac9b327861[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 17:30:05 2022 -0400
changed icon
[33mcommit 3485a55642403569944032ae183579d5069a211f[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 17:28:16 2022 -0400
changed wording of the button in new item form as discussed
[33mcommit b6907225a12bfa2e12fe873862a438adc03fb1cf[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 16:59:36 2022 -0400
making the navbar just a little taller
[33mcommit bd019c4a1932a33af2079104d3abe1d809f7984f[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 16:54:46 2022 -0400
added photo
[33mcommit 7cac9a1b9cb0576138b6a4e2eead1e1d90e2d16f[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 16:49:11 2022 -0400
add item_type into search filter
[33mcommit da1c119e7fc15911790564a0722271cbb51d2b9d[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 16:47:21 2022 -0400
added sugar image
[33mcommit cf529e389ea441d1d557091bba6b6a49932df467[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 16:29:16 2022 -0400
fixed toggle effect of fav icon
[33mcommit 65067f0b6ad22f8337861fda7f876b9732f13cff[m
Merge: ba339a3 25ec971
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 16:25:00 2022 -0400
Merge branch 'master' into styling-index
[33mcommit ba339a31f99ba85dadbccb63c32de792509036d9[m
Merge: d2f57b2 a8d7152
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 16:24:35 2022 -0400
added icons on show
[33mcommit 25ec971154c52dbba632c69085225aff0d8b505a[m
Merge: 04fd57a 1c9d3e7
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 16:23:32 2022 -0400
Merge pull request #85 from MarlAndre/styling-landing
my changes has not been saved, here is the landing page
[33mcommit 04fd57a6f72b0de86b39a8b65856007745549ec8[m
Merge: a8d7152 c59d21d
Author: Marlène <[email protected]>
Date: Sat Jun 11 16:23:27 2022 -0400
Merge pull request #87 from MarlAndre/change-my-profile
Change my profile
[33mcommit d2f57b2d01f4f301fd6a47af55f40853a636bc20[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 16:07:15 2022 -0400
added icon on show and fixed image on index
[33mcommit e8a930973771b88df53d7183a29dd93a1b46541f[m
Merge: b5991c9 b03c2e6
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 15:56:35 2022 -0400
Merge branch 'master' into styling-index
[33mcommit b5991c9ef754871959c754d758b33a8bcb76d6bf[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 15:49:16 2022 -0400
fixed overflow on map
[33mcommit c59d21d248659eca180d7ab12e8565b24bdb55b4[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 15:19:35 2022 -0400
added space after private
[33mcommit 04f20c55187c6cef90843b904793091cf11c457c[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 15:17:44 2022 -0400
removed comment
[33mcommit 320d08699574b3cfa5721eba2f23113fb202e095[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 15:14:38 2022 -0400
deleted my custom method since Geocoder has it
[33mcommit 457d04e08f440114d8ce1e626c53916e27bdf284[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 15:13:07 2022 -0400
uncommented a method used for messages
[33mcommit 28bc83098b457f1ea3b8de48613d98b66c443e31[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 15:06:31 2022 -0400
finished final touches
[33mcommit a8d7152a96e754b9e63b9371ef40e393a4cffa89[m[33m ([m[1;31morigin/change-status[m[33m)[m
Merge: b03c2e6 179e9eb
Author: Marlène <[email protected]>
Date: Sat Jun 11 14:59:23 2022 -0400
Merge pull request #86 from MarlAndre/branding
branding in each page
[33mcommit 4ae189ae77675e4504e744c8adda5b2f2bee253b[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 14:58:37 2022 -0400
added distance on cards
[33mcommit 179e9eb907b1d4ae010519b6c37f0d8105459466[m
Author: Williams <[email protected]>
Date: Sat Jun 11 14:54:11 2022 -0400
branding in each page
[33mcommit 1c9d3e7814e06aa6602dbbcbb9b1006a7e1a1bd3[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 14:41:27 2022 -0400
my changes has not been saved, here is the landing page
[33mcommit b03c2e631ad9ccafd96e5c8888b73e97d3599df2[m
Merge: fd9aa8e 3803ed3
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 14:35:34 2022 -0400
Merge pull request #84 from MarlAndre/postal-landing
fixed landing
[33mcommit 3803ed32050463e1a38ed4dae4b05e384eef534f[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 14:34:56 2022 -0400
changed modal popup
[33mcommit 29d48da021d4930bb902da18cc3933b4ccdce858[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 14:33:37 2022 -0400
changed validation back
[33mcommit 0ed9dc192da1ec952708877882bd05c9de3e55d7[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 14:28:17 2022 -0400
centerd my-items button
[33mcommit 9e65fa54806b4d17527cf0d83944800ac5972cc7[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 14:27:55 2022 -0400
changing controller back to normal
[33mcommit a8caa045f6278d992566c45481b7809b667dcb96[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 14:27:00 2022 -0400
changing index page back to normal
[33mcommit 4926b305b318743aa27243bd131c1f19a88fe07f[m
Merge: 3eff8f7 5433481
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 14:14:55 2022 -0400
put the photo validation back
[33mcommit 3eff8f7220ebae8483acf55255da2d340427a2d2[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 14:13:20 2022 -0400
put the photo validation back
[33mcommit c740d0929ccbc6ee16a3bf5e1cb2fd93935a0066[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 14:02:23 2022 -0400
trying to fix the issue with fetching real items close to location
[33mcommit ad8df95e020bb9ca24ecf7ec2550cf9426b73761[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 13:59:06 2022 -0400
finally was able to add items to profile
[33mcommit 3cc6b29313d6d92250c26e3c63a9194ea0819d40[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 13:26:21 2022 -0400
saving my work, stuck on something
[33mcommit cee13eddd2698a2fbf1f1e7139c58e19fa5f3376[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 11:51:25 2022 -0400
removed buttons from profile, moved chat info to my profile
[33mcommit 5433481143de2b56c489f42dc57d810f8ca63608[m
Merge: aa28307 fd9aa8e
Author: Marlène <[email protected]>
Date: Sat Jun 11 11:48:49 2022 -0400
Merge branch 'master' into postal-landing
[33mcommit fd9aa8e8e15e233b551a66dda568cf3dcc9dc684[m
Merge: c2c6f31 9a9dc30
Author: Marlène <[email protected]>
Date: Sat Jun 11 11:48:01 2022 -0400
Merge pull request #83 from MarlAndre/new-item-form
New item form
[33mcommit aa283079c0ebe0930774c8a2d03d989435ae311b[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 11:46:52 2022 -0400
fixed landing
[33mcommit 9a9dc30611f39376cfe3d57732fd20c1bbc5c931[m
Merge: f58194b c2c6f31
Author: [email protected] <[email protected]>
Date: Sat Jun 11 11:39:16 2022 -0400
Merge branch 'master' of github.com:MarlAndre/food-4-all
[33mcommit f58194b613ff3ea7fab207f3447727550705c0e0[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 11:37:43 2022 -0400
change wording of the button in new item form
[33mcommit c2c6f31c67993b9c50ac32ba90672efb615581a5[m
Merge: 982d749 7b54b36
Author: stshayna <[email protected]>
Date: Sat Jun 11 11:32:46 2022 -0400
Merge pull request #82 from MarlAndre/fix-seed-with-photo-issues
fixed issues where seed file would crash
[33mcommit 982d749dc08ecf462beb06d20786e37ca4d44f83[m
Merge: 2627bba b3ec417
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 11:31:28 2022 -0400
Merge pull request #81 from MarlAndre/navbar
remove border-radius in navbar
[33mcommit 7b54b36a2613e126363a0fd14c8f3198e074dfbc[m[33m ([m[1;31morigin/fix-seed-with-photo-issues[m[33m)[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 11:29:25 2022 -0400
fixed issues where seed file would crash
[33mcommit b3ec41701d9179ecb7b3c6cda49bccf1e20783ae[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 11:19:37 2022 -0400
remove border-radius in navbar
[33mcommit 2627bbabf4762be701c3b5a044def51768042303[m
Merge: 1a7a937 afbe5e1
Author: Marlène <[email protected]>
Date: Sat Jun 11 11:18:59 2022 -0400
Merge pull request #80 from MarlAndre/fix-item-validation
small fix, adds photos validation and fixes item_status conflict
[33mcommit 1a7a937f02b470081237677edf9aeb5b79882d86[m
Merge: e4d6977 c6ebaab
Author: Marlène <[email protected]>
Date: Sat Jun 11 11:18:47 2022 -0400
Merge pull request #78 from MarlAndre/heart-icon
changed heart icon to outline heart icon in navbar
[33mcommit afbe5e1c648458935ab45c7f1b92fd0bf9513c03[m
Author: Denzel Braithwaite <[email protected]>
Date: Sat Jun 11 11:16:34 2022 -0400
small fix, adds photos valivadtion and fixes item_status conflict with seed
[33mcommit e4d6977993489cfb6a2abca94ba8e52897b75c20[m
Merge: 73477c6 9148238
Author: stshayna <[email protected]>
Date: Sat Jun 11 10:43:00 2022 -0400
Merge pull request #79 from MarlAndre/fixing-issue-landing
fixed issue
[33mcommit 91482380a06b68fd05d3d2463d73560717ce8356[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 10:42:20 2022 -0400
fixed issue
[33mcommit c6ebaabf8437adce8aefd05cd8f8f97b66d07901[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 10:38:03 2022 -0400
changed heart icon to outline heart icon in navbar
[33mcommit 73477c6b87fc6a09e67eb01dffb08eca44eb13b2[m
Merge: 7adf163 e0ec0f9
Author: Williams <[email protected]>
Date: Sat Jun 11 10:36:36 2022 -0400
Merge pull request #77 from MarlAndre/styling-show
Styling show
[33mcommit 7adf1634939630c15ccd7230b5aedc4119076cb2[m
Merge: 7e5515f 8c7bcaa
Author: stshayna <[email protected]>
Date: Sat Jun 11 10:36:07 2022 -0400
Merge pull request #74 from MarlAndre/postal-dode-landing
changed behaviours of the landing screen, it is now a popup
[33mcommit e0ec0f96d12f36b9df4e1da2fe63b87e8c8a2251[m
Merge: c5975f8 7e5515f
Author: Marlène <[email protected]>
Date: Sat Jun 11 10:31:34 2022 -0400
Merge branch 'master' into styling-show
[33mcommit 7e5515f8fd32fa45292016f96e6ca011428fcefa[m
Merge: 25483d0 249abd5
Author: Marlène <[email protected]>
Date: Sat Jun 11 10:30:31 2022 -0400
Merge pull request #76 from MarlAndre/change-status
Change status
[33mcommit 249abd52bfbc928bdece4bf8064f207d8e7a5740[m
Merge: 3d37183 25483d0
Author: stshayna <[email protected]>
Date: Sat Jun 11 10:30:04 2022 -0400
Merge branch 'master' into change-status
[33mcommit c5975f852d8a96abeb117e0da090ab2dee9ce1b0[m
Merge: 608148d 25483d0
Author: Marlène <[email protected]>
Date: Sat Jun 11 10:29:19 2022 -0400
Merge branch 'master' into styling-show
[33mcommit 3d371836347b89bbf18586690dc1c55dd841f21a[m
Author: [email protected] <[email protected]>
Date: Sat Jun 11 10:29:12 2022 -0400
removed raise
[33mcommit 8c7bcaab9ce540cfdea3ae5581203c33ef280cfb[m[33m ([m[1;31morigin/postal-dode-landing[m[33m)[m
Merge: 1f6d409 25483d0
Author: Marlène <[email protected]>
Date: Sat Jun 11 10:07:20 2022 -0400
Merge branch 'master' into postal-dode-landing
[33mcommit 608148df56c8dc8cfe80300ec071a5d2eb9d63f9[m
Author: Marlene Andre <[email protected]>
Date: Sat Jun 11 10:01:48 2022 -0400
merged last master to avoid conflicts
[33mcommit 25483d08b5281bf72605088654a58e7a1ada55a3[m
Merge: 8475be0 5ce9ae6
Author: Marlène <[email protected]>
Date: Sat Jun 11 09:50:55 2022 -0400
Merge pull request #75 from MarlAndre/new-item
New item
[33mcommit ccad4bb725806f8bd30b436b9daafac0b1f9a15b[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 23:19:08 2022 -0400
removed wrong class
[33mcommit 8c47e35954e559629b3b69029708ff820323d6bf[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 23:10:29 2022 -0400
added back css class for the green border
[33mcommit 36c1be92843891a655cf45154057943ee7cdefce[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 23:04:32 2022 -0400
remove wrong css classes
[33mcommit 2b1831e5a4be05814be7ddfa87577f9a88ef32b2[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 23:03:16 2022 -0400
remove test pic
[33mcommit bc8a91656607551bd62825311453395fe9d2f14f[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 23:02:23 2022 -0400
my-items page with heading and change status button
[33mcommit 4a12087c4357fa39a678d4bb7c9ec2037ced2efc[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 22:44:27 2022 -0400
added change status form in my-items page
[33mcommit 5ce9ae6482c5ecc0ba3be591da3feb97ef2c2675[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 19:03:06 2022 -0400
params permit
[33mcommit d2050b40c7953edbbc85ca08800ebfdf01b55851[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 19:01:33 2022 -0400
merged master
[33mcommit 44f7c978bed4390d2ccf57f21cc40aea4d932d9c[m
Author: [email protected] <[email protected]>
Date: Fri Jun 10 18:55:53 2022 -0400
item create form
[33mcommit 6e6619346f58ce56830a2d6fb3394982bcb6b331[m
Author: Marlene Andre <[email protected]>
Date: Thu Jun 9 23:29:08 2022 -0400
changed the add new item form because it was too small on iphone screen, added back icon too
[33mcommit 4443920c28988e52dda060a3443b7cf288fd619f[m
Author: Marlene Andre <[email protected]>
Date: Thu Jun 9 23:21:26 2022 -0400
fixed navbar issue, moved back button to the top and put an icon, changed styling of the card
[33mcommit ea5ceb1cb19ac8ea77552831f83769ed88b74f4e[m
Merge: 51e17f1 8475be0
Author: [email protected] <[email protected]>
Date: Thu Jun 9 22:47:41 2022 -0400
Merge branch 'master' of github.com:MarlAndre/food-4-all
[33mcommit 32b91c2b9505b92130c005d472a82e5d12ffbfce[m
Author: [email protected] <[email protected]>
Date: Thu Jun 9 22:40:42 2022 -0400
form association added in
[33mcommit cd6cddc22a82aaa3b2daa132a72483e9f75c342f[m
Merge: cba9c8c 8475be0
Author: Marlene Andre <[email protected]>
Date: Thu Jun 9 22:09:59 2022 -0400
Merge branch 'master' into styling-show
[33mcommit 8475be0eaab08a8fbbd74d0291c39e2f1837ccdd[m[33m ([m[1;31morigin/psotal-code-index[m[33m)[m
Merge: 0daf9e2 2deedc7
Author: Marlène <[email protected]>
Date: Thu Jun 9 21:33:18 2022 -0400
Merge pull request #73 from MarlAndre/add-image-to-spaghetti
added photo during seed for shaynas meal
[33mcommit 1f6d4092e6b5db48e11d113f3b5df66a91e1ca05[m
Author: Marlene Andre <[email protected]>
Date: Thu Jun 9 21:27:21 2022 -0400
changed behaviours of the landing screen, it is now a popup
[33mcommit 0daf9e2d25e5b7b7e30b28a94ccc319ea8e877df[m
Merge: b4e4ba6 17919a9
Author: Denzel Braithwaite <[email protected]>
Date: Thu Jun 9 21:06:33 2022 -0400
Merge pull request #72 from MarlAndre/object_fit_for_index_pictures
changed object-fit from contain to cover
[33mcommit b4e4ba6f41c4fc979efd1e2786e13b4bebd71e88[m
Merge: bf062b1 aedc032
Author: Marlène <[email protected]>
Date: Thu Jun 9 21:05:51 2022 -0400
Merge pull request #71 from MarlAndre/add-distance-to-messages
adds distance to chat
[33mcommit 2deedc7db06f26ef47a583d76b37ac0ff3df980e[m
Author: Denzel Braithwaite <[email protected]>
Date: Thu Jun 9 21:04:43 2022 -0400
added photo during seed for shaynas meal
[33mcommit aedc032958dae54dc918560202e5fb845dee7578[m
Author: Denzel Braithwaite <[email protected]>
Date: Thu Jun 9 20:57:35 2022 -0400
removed unecessary method
[33mcommit b8644f0acc54ce3ba6dca6c4ba2946c89e11d2f7[m
Author: Denzel Braithwaite <[email protected]>
Date: Thu Jun 9 20:55:42 2022 -0400
adds distance to chat
[33mcommit 51e17f1e0d53f223e66bbc8c4bb30b4911f2b804[m
Author: [email protected] <[email protected]>