-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommit_history.txt
1502 lines (1160 loc) · 49.3 KB
/
commit_history.txt
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
commit ddf575cacd3eed97d434bf0b47efbb056214d2d7
Author: Dylan De La Rosa <[email protected]>
Date: Wed May 8 01:50:16 2024 -0500
removed the cloning statement from the README.md f
ile.
commit 5d426259b1e68f046e459767807d6933f8b2d1d6
Author: Dylan De La Rosa <[email protected]>
Date: Wed May 8 01:45:16 2024 -0500
Updated the readme to be more descriptive and adde
d a requirements file for na alternative installat
ion method. Also added badges to the readme file,
the logo, formatted code blocks, and fixed some ty
pos.
commit 6ba5802e7f502cf98dd4cb08246c7368a95d9186
Author: Levi Franklin <[email protected]>
Date: Wed May 8 04:16:45 2024 +0000
README.md edited online with Bitbucket
commit bf18180cf90760cc4e496feadc9771fdad0ac01b
Author: Levi <[email protected]>
Date: Tue May 7 23:09:33 2024 -0500
Updated README file to be completed with accurate infomation
commit add3c65b32faa29e59e0bf3868197915a7816ab6
Merge: 5f9a398 864c5a6
Author: Sam Lea <[email protected]>
Date: Mon May 6 03:15:11 2024 +0000
Merged in bugfix/LOOT-122-class-null-in-editing-issue (pull request #19)
fixed correct file, class_name added to shown list
Approved-by: Levi Franklin
commit 864c5a6eb873508d0743be81f1cdea32c658b473
Author: Sam Lea <[email protected]>
Date: Sun May 5 22:09:45 2024 -0500
fixed correct file, class_name added to shown list
commit 5f9a398f09d43460b98028272f1283d5f05faddc
Merge: 7fdc213 23a5da6
Author: Levi Franklin <[email protected]>
Date: Mon Apr 29 21:53:24 2024 +0000
Merged in bugfix/LOOT-123-fix-custom-loot-prompt-issue (pull request #18)
Fixed issues with prompt where the correct prompt had been over written with an older version.
Approved-by: Dylan De La Rosa
commit 23a5da6cfaeaf5c49449b43a8152d4d7afc19869
Author: Levi <[email protected]>
Date: Mon Apr 29 16:34:37 2024 -0500
Fixed issues with prompt where the correct prompt had been over written with an older version.
commit d9a62939982af31ecd05f3a5be952f2917da7948
Merge: 84f48bd 7fdc213
Author: Levi Franklin <[email protected]>
Date: Mon Apr 29 21:26:28 2024 +0000
Merged main into bugfix/LOOT-123-fix-custom-loot-prompt-issue
commit 7fdc213958b0abb95c4b4945d5073b2957bfecf8
Merge: 84f48bd 251a807
Author: Sam Lea <[email protected]>
Date: Mon Apr 29 21:18:53 2024 +0000
Merged in bugfix/LOOT-122-class-null-in-editing-issue (pull request #17)
hopefully fixed min/max and null class bugs
Approved-by: Levi Franklin
commit 251a807bd15f9bd16463994e8b8a6bc124296604
Author: Samglea <[email protected]>
Date: Mon Apr 29 13:13:30 2024 -0500
hopefully fixed min/max and null class bugs
commit 84f48bdd25f10101866492b746c61e0836f8dd6a
Merge: d1dfac7 60e1606
Author: Dylan De La Rosa <[email protected]>
Date: Mon Apr 29 05:09:01 2024 +0000
Merged Levi-Franklin/corrected-issue-where-form-data-was-not--1714367036455 into main
commit 60e1606cd04bdf6839d7853cdb2e2794361acbd4
Author: Levi Franklin <[email protected]>
Date: Mon Apr 29 05:04:43 2024 +0000
Corrected issue where form data was not properly being transmitted to backend prompt to make decision between custom and standard loot.
commit d1dfac720888f7cb1ef3566df207875b66f7d4e2
Merge: b6f24ce f818c4b
Author: Collin Trehar <[email protected]>
Date: Mon Apr 29 03:42:39 2024 +0000
Merged in feature/LOOT-121-integrate-dark-mode (pull request #15)
Dark mode integrated for entire site.
Approved-by: Levi Franklin
commit f818c4bd6fd22e8c59a76ff0c7b019d8bd83d8dc
Author: Ctre97 <[email protected]>
Date: Sun Apr 28 21:49:04 2024 -0500
Dark mode integrated for entire site. Site will
default to user's browser preference, but can
be updated via the toggle button on the navbar
commit 3d7247ecb88aa205c3a2a4bd58a44a1492dd027a
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:47:43 2024 -0500
commit for older work
-- images/
-- 65e1e9ef-6a0a-4232-9d79-5c7c4cbde5d0.png
-- db204aff-2783-412a-9f3d-8ff54d267d9f.png
-- login.html
= login page was not needed.
-- page-sitemap.xml
= sitemap for pages
-- robots.txt
= robots.txt file for search engines
-- sitemap.xml
= sitemap for search engines to crawl
* this is all exported from the versoly app
commit 3e25012d5cba599f6b0cbbeef15cd7bcae77cc44
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:47:00 2024 -0500
commit from older work
-- darkmodebtn.html
-- darkmodelocalstorage.js
--> darkmodebtn.html
= added html for darkmode button
--> darkmodelocalstorage.js
= added very basic js for darkmode button usin
the DOM (does not save in local storage yet)
commit 32cdf4baf5b023a1189a2d3be711f6d134b4abfe
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:40:12 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= main.css
--> main.css:
= css file for the main page of the versoly we
bsite.
= contained in the export folder of the versol
y project.
= required for handoff, but never requested
until now.
commit dfdfa869f3e5c94b82229831a1d71baa1a61274e
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:34:00 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= versoly/index.html
--> index.html:
= created the new landing page and theme for
version 5 of the lootgen frontend.
= new designs for the navrbar, footer, and
main content area. cleaner and more modern
look.
= added new clean logo to the navbar and foote
r of the page.
= added a shadow effect to the navbar
= added seperate login and signups in versoly
= new hero section with video demo of the app
= new hero section with updated product descri
ption. also a js button with an arrow on hover
= watch demo hero button for full video demo
= added no credit card required section for Le
gal reasons
= updated the color scheme to accent the right
areas of the page
= added a toggle button design for darkmode
commit 2d924352b18f69d6cb497ca74ab1f7c6f0b715fa
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:32:07 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= styles.css
--> styles.css:
= the css file for the versoly project which a
cts as the main stylesheet for the project. be
cause of how tailwindcss works, this file is u
sed to override the default styles and add cus
tom styles to the project on top of the tailwi
ndcss styles.
commit d8383fc0de4b85f35f0db5adf387241042aa93ff
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:29:59 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= tailwind.config.js
--> tailwind.config.js:
= this file is not naturally exported with the
tailwindcss package, so it must be created fro
m the theme section of versoly to handoff
= this file is used to configure the tailwind
css framework with the proper theme colors, fo
nts, and other styles that are used in the web
design
commit c0944bd2d7c0d5ff450088f12de9e462bd28f657
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:28:28 2024 -0500
commit for older work --
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= lg-versoly.json
- this files is a json file of all the sty
les used in the versoly website to render
the page.
commit 3f152da10e5a4eed8e15d67081a3b96946d62bd7
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:13:18 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= webflow.js
--> this file is a javascript file that was used
to add functionality to the webflow final project
commit 4ce48954f520b2ffa6b69701d093ae4118f5d745
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:12:29 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= webflow-final/dylans-lootgen-ai.webflow.css
= webflow-final/normalize.css
= webflow-final/webflow.css
--> these files are the final webflow export files
that were used to create the webflow site.
commit 65452fd3b8b90ec42434875294efb9f74dd0c590
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:10:54 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= 65ce8e5e961bdeb3dc1ce3d2_LootGen-Website-Tem
plate-14-p-130x130q80.png
= 65ce8e5e961bdeb3dc1ce3d2_LootGen-Website-Tem
plate-14.png
= 65ce90a47efd26d7d312bf61_lg-title-logo-2.svg
= LootGen-Website-Template-14.svg
= barbarian_fighting-p-500.jpg
= barbarian_fighting-p-800.jpg
= barbarian_fighting.jpg
= dm_disappointed-p-500.jpg
= dm_disappointed-p-800.jpg
= dm_disappointed.jpg
= favicon.png
= image_2024-03-10_163537342-p-1080.png
= image_2024-03-10_163537342-p-500.png
= image_2024-03-10_163537342-p-800.png
= image_2024-03-10_163537342.png
= logo4.png
= lootgen_logo_filled_32x32_2.png
= lootgen_logo_filled_48x48_2.png
= untitled-ui-logo-p-130x130q80.png
= untitled-ui-logo.png
= untitled-ui-logomark.svg
= warrior_wading-p-500.jpg
= warrior_wading-p-800.jpg
= warrior_wading.jpg
= webclip.png
= wizard_frolicking-p-500.jpg
= wizard_frolicking-p-800.jpg
= wizard_frolicking.jpg
--> these are the files that were added to the web
flow-final directory folder for various content
and design elements.
commit ad94d83096310eab65296279025572511a348b06
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:08:53 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- animation---1709061657569.json
-- animation---1709063223116.json
-- darkmodebutton-2.json
= animations and components for the webflow pr
oject.
commit c3f29ef6b447354b8b4ce261c24cfa0acabb4b09
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:06:21 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= webflow-final/character-storage.html
--> character-storage.html:
= added a new page for the character storage
as requested due to it not being implemented
by other team members.
= used the design based off of the html of
simmilar software to create the page.
commit 925fc40ea5fc1068fc942b02802aa4d458b6b394
Author: Dylan De La Rosa <[email protected]>
Date: Sat Apr 27 00:00:27 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= webflow-final/index.html
--> index.html
= created new landing page for v4 of the web
flow site.
= created a new banner with seperate log in an
d sign up buttons as requested.
= created a new section for the features of th
e web app.
= created a new navbar with updated logo and
appropiate links.
= created a new footer with appropiate links
and information. including terms of service,
privacy policy, and cookies.
= created a copyright section with appropiate
information.
= added logo to the footer
= refinements of the theme were made at this t
ime.
= added get started and learn more buttons wit
updated theme styling.
= added a new section for a demo image or vide
o. or image to be displayed.
= added a bar to seperate the login and sign u
p buttons from the rest of the navbar.
commit b9813fa6bbe2635ccba9ebfc0c6a072bbef4ef0d
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:49:58 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= webflow-final/app.html
= webflow-final/app-copy.html
= webflow-final/app-learn.html
-- these files are the final versions of the web
app, some of which are broken due to improper han
dling by team members. but luckily it was download
ed before this happened.
--> app.html:
= this is the main page of the web app
= added a new section for the app to learn ab
out the app
= created UI for app logo with banner to nav
igate to learn or generator, drop downs
and checklists for selecting options, and a bu
tton to generate loot with a custom prompt
= added a modify prompt regenerate button
= added an export button
= added a lootie logo and a generation lottie
file animation
= added nav bar to top of page with links to
other pages on the site
* many of the UI elements were never used by the
integration team, so they were never implemented.
-- unused elements:
= drop downs, checklists
= prompt forms (due to the integration team no
t implementing safe SQL injection prevention m
thods)
= lootie desciptor
x loading animation (loading animation was imp
lemented recently)
commit 573601c67c9bf14bb2b64b6f4c06d9dc6a70d703
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:46:00 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= about-us.html
--> about-us.html:
- (Sam) added about page with basic content
for the lootgen team memebers and lore. includ
ing 4 banners of the team members and 2 banner
s of the lore charactrs, lootie and barbarn.
commit 7f17b593707053c6f51c7b407d26ee529e0ae920
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:23:49 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= webflow.js
--> webflow.js is a file that contains the webflow
interactions for the new project.
commit 13f4d2ff3a3b5447ef501fd267702aea145b9f59
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:21:40 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
- webflow-new/dylans-lg-new.webflow.css
- webflow-new/normalize.css
- webflow-new/webflow.css
--> webflow-new/dylans-lg-new.webflow.css
= this is the css file that was exported from
webflow. it is the css file that is used to
style the new webflow site.
--> webflow-new/normalize.css
= this is the normalize css file that was
exported from webflow. it is used to normalize
the css across different browsers.
--> webflow-new/webflow.css
= this is the styles css file that was exporte
d from webflow. it is the css file that is use
d to style the new webflow site.
commit 30586d7e19b8309565558b1e182a9502c21fae03
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:16:52 2024 -0500
commit for older work --
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= webflow-new/character-list.html:
--> this file was created to display the list of
characters the user owns. Never finished.
commit 55f218aab3f026941d60412b631a43ed1fdc5cce
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:12:57 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= webflow-new/character-information.html
--> character-information.html is a page that was
created by Sam for the webflow-new project. it
is a page that displays information about char
acters the user has made. Nobody finished or
worked on this page further so it was never in
tegrat ed but it should have been finished as
it is mostly complete.
commit bb55e140976c2583ce6c4878146bb208d74c3335
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:10:27 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions: added images to the webflow-new fol
der. these images are used in the webflow project
for the lootgen-new website.
--> images:
= webflow-new/65ce788eaec5c58c0514cd68_LootGen-Website-Template-9.svg
= webflow-new/65ce8e5e961bdeb3dc1ce3d2_LootGen-Website-Template-14.png
= webflow-new/65ce90a47efd26d7d312bf61_lg-title-logo-2.svg
= webflow-new/CloakOfPhoenixFlame-p-500.png
= webflow-new/CloakOfPhoenixFlame-p-800.png
= webflow-new/CloakOfPhoenixFlame.png
= webflow-new/Custom-Size-\342\200\223-1.png
= webflow-new/LootGen-Website-Template-14.svg
= webflow-new/Switch-Handle.svg
= webflow-new/arrow-right.svg
= webflow-new/check.svg
= webflow-new/favicon.ico
= webflow-new/image-4-2.png
= webflow-new/lg-chest-icon-1.svg
= webflow-new/lg-download-icon-1.svg
= webflow-new/lg-logo-white-only-2.gif
= webflow-new/lg-logo-white-only-2.png
= webflow-new/logo3.png
= webflow-new/logo36.png
= webflow-new/logo4.png
= webflow-new/lootgen_logo_filled_32x32_3lootgen_logo_filled_32x32_2.png
= webflow-new/webclip.png
= webflow-new/whisperblade_badversion.png
commit aaa6a7643cd4026db96fcae8f53934c9e4b5dd82
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:05:22 2024 -0500
commit for older work -- 2024-09-26
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= 401.html
= 404.html
= access-denied.html
= reset-password.html
= test-page.html
= untitled-2.html
= untitled.html
= update-password.html
--> added new nav bar to the above files
--> untitled.html:
= created a basic form test page
--> untitled-2.html:
= created new version of the nav bar (v3)
commit 20a1ce3aee69f2d902b48320de2b40e0f506c6b5
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 23:01:32 2024 -0500
commit for older work -- 2019-09-25
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= sign-up.html:
--> log-in.html:
= updated sign-up.html to include new navbar
= updated sign-up.html to include new footer
commit 543bf2ba94030931a9ee4ed745af106690e20a73
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:58:37 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= user-account.html
--> user-account.html:
= added user account page for webflow-new
which includes the new nav bar and footer
commit e16dd78b0761e7f8f07c1d77699dd6c3bbf6df42
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:54:27 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result,
so documenting the work done in the past is nece
ssary.
-- additions:
= log-in.html
--> log-in.html:
= created a new log-in page for the webflow
project. this page is a clean log-in page that
takes from the design of the latest sign-up pa
ge.
= enhanced color scheme with better contrast
under common web standards for accessibility.
= added a newly refine logo asset in a more pr
ofessional and clean position.
= added a welcome message to the user to make
the page more welcoming and friendly.
= added a login message to assist the user
commit 0528558e66732fdd7d83f64c0eba19accf774b29
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:48:40 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= index.html
-- index.html:
= new design for landing page
= updated landing page with app demo implement
= create new nav bar with updated links and st
yles that match the new design
= added new footer with updated links and styl
es that match the new design
= added new hero section with updated styles a
nd design
= added new login/signup button with updated s
tyles and design to match the new design/theme
= (Sam) added custom image to item gallery sec
tion
commit a7557ea78b8318abe2cd80198bc47cf33c857dd3
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:37:34 2024 -0500
commit for older work --
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= reset-password.html
--> reset-password.html:
= added the reset password page for the webflo
project. this page is used to reset the passwo
rd for the user.
commit 6dd07d83aa2f58de3e33d6c46754bb6e7c113d37
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:35:49 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= update-password.html
-- update-password.html:
= created a basic html file for the update pas
sword page using webflow
commit 9b0e8f9488688f7bc4501a185438a78dafb468b9
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:33:40 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= fa-brands-400.woff2
= MaterialIconsOutlined-Regular.otf
--> fonts were researched, found, and inserted in
as custom fonts where wevflow exported them in th
is format.
commit 7fc2600250c6a4289d2c14b709e46e978de86e82
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:31:30 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= dylan-lg.webflow.css
= normalize.css
= webflow.css
--> dylan-lg.webflow.css
- this file is the css file that was exported
from webflow. it contains the css for the webf
low project that was created for dylan-lg webs
ite.
--> normalize.css
- this file is the normalize css file that was
exported from webflow. it contains the normali
ze css for the webflow project that was create
d for dylan-lg website.
--> webflow.css
- this file is the webflow css file that was e
xported from webflow. it contains the webflow
css for the webflow project that was created f
or dylan-lg website.
commit 766efc1a1c25d5acd7189872af0a7024aa9a963a
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:28:03 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= 65ce8e5e961bdeb3dc1ce3d2_LootGen-Website-Tem
plate-14.png
= Icon-Right.svg
= LootGen-Website-Template-12.svg
= LootGen-Website-Template-14.svg
= ar_on_you.svg
= barbarn256.png
= bars-solid.svg
= bg-lines-green.svg
= bg-lines-lightblue3.svg
= favicon.png
= icon-info-circle.svg
= key.svg
= lg-chest-icon.svg
= lg-download-icon.svg
= lg-logo-white-only22.png
= lg-logo-white-refined.png
= lg-purplecircle_samVersion-1-p-1080.png
= lg-purplecircle_samVersion-1-p-500.png
= lg-purplecircle_samVersion-1-p-800.png
= lg-purplecircle_samVersion-1.png
= lg-title-logo-2.svg
= lock_open.svg
= logo-Philips.svg
= logo-dell.svg
= logo-monday.com.svg
= logo-mural.svg
= logo-rakuten.svg
= logo-ted.svg
= lootgen_logo_only_outline_blackVersion3-p-50
0.png
= lootgen_logo_only_outline_blackVersion3-p-80
0.png
= lootgen_logo_only_outline_blackVersion3.png
= placeholder-2.svg
= task_alt.svg
= task_alt_1.svg
= webclip.png
--> for aboive files:
= created compnents, icons, logos, and images
for the webflow project and compiled them in t
he webflow website folder.
= also paid for webflow to faciliate developme
nt and design process with Sam.
commit d6566a4f41ef256c95bbed72f100df16b8c6d0c5
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:26:06 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= user-account.html:
--> user-account.html:
= added the user account page for the webflow
project. this page is the user account page
with basic functionality to change user info
like name, email, password, and establish con
sent for marketing emails.
commit 85cc1f679709c6986470a0a1f5f3f8686fc15e4b
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:24:28 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= styles.html
--> styles.html
= created styles page for webflow to use as a
reference for the design of the webflow projec
t.
commit 05aabf62831d86857509c5c176f24a98341d8608
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:16:47 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= sign-up.html:
--> log-in.html:
= added sign up title and lootgen logo
= created dark mode color scheme for cleaner
look on the sign-up container (esatblished
the dark mode color scheme at this time thru
color research and testing)
= added a ui + form for user to sign up using:
- email
- name
- password
= added privacy policy and terms of service
= added a button to submit the sign up form
= added a button to navigate to the log-in pag
e
= nav bar and footer were not added at this ti
me but previously during creation of landing page.
--> navbar
= created a lootgen logo, added to the navbar
(the process of creating the logo tooks time
to get a design that was simple and clean)
= title with .ai lootgen-pink design
= added a button to navigate to the log-in and
sign-up pages
= added a button to navigate to the home page
= added a button to navigate to the about page
= added a button to navigate to the profile pa
ge
= added a button to navigate to the hoard page
commit b0738312d60b5ba54cf982c755c633b79e357306
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:09:40 2024 -0500
commit for older work -- 2019-09-25 16:00:00
-- this is because commit process wasn't establish
ed or easily done for the web design/develop
ment process. handoff method was used as a result
, so documenting the work done in the past is nece
ssary.
-- additions:
= log-in.html
--> log-in.html:
= created basic html structure
= edited CSS via webflow
= final design for log-in page
=
commit 55fe3b1e7d3ad53a01225ed604640599f0bf685e
Author: Dylan De La Rosa <[email protected]>
Date: Fri Apr 26 22:06:44 2024 -0500
commit for older work - webflow index.html page -
a langding page for webflow website final version
out of succsesive changes in the webflow creation