Skip to content

Commit e51f542

Browse files
committed
docs: Updated README.md
* Updated Some Comments. Fixed Some Typos * Improved Wrong Command Messages * Added Display Client Rented Movies * Added .gitignore
1 parent e033c50 commit e51f542

18 files changed

+511
-752
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# ignore ALL .csv, .bin, .cmake files
2+
*.csv
3+
*.bin
4+
*.cmake
5+
*.a
6+
7+
# ignore Makefile and CMakeCache.txt
8+
Makefile
9+
CMakeCache.txt
10+
11+
# ignore ALL files in ANY directory named build or CMakeFiles
12+
build/
13+
CMakeFiles/

.vscode/settings.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"C_Cpp.errorSquiggles": "disabled"
2+
"C_Cpp.errorSquiggles": "enabled",
3+
"C_Cpp.default.compilerPath": "C:\\msys64\\mingw64\\bin\\g++.exe",
4+
"files.associations": {
5+
"iosfwd": "cpp",
6+
"ostream": "cpp"
7+
}
38
}

README.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -59,25 +59,29 @@ Only C++.
5959
<strong>For a Better User Experience, Resize the Terminal Window to Fullscreen</strong>
6060

6161
# Main Menu
62-
![Screenshot (769)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/d1355dc3-ec22-4cbd-bcc3-eed77c21761e)
62+
![Screenshot (942)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/c6752013-1ccf-4bbd-9f6a-8292a630d209)
6363

6464
# Commands
6565
This is the Full List of Commands for Each Action in the Program
6666

6767
# Parameters
68-
![Screenshot (770)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/cc3a5ca7-3482-49d3-b71c-0fc9e8cfdd59)
6968

70-
![Screenshot (771)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/6a4676f8-b499-46bf-9991-9a45ecbcefa3)
69+
![Screenshot (910)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/d54ff36b-f7db-4977-abef-120e37a2ea70)
7170

72-
![Screenshot (772)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/20e76420-4aaf-4cd6-a98b-8532a220bf3d)
71+
![Screenshot (911)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/8fbf9b9c-f8ae-4be5-8da8-fa682cbbf92a)
7372

74-
![Screenshot (773)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/dc776d15-ec4d-42c4-bf90-43ea0593f9b6)
73+
![Screenshot (912)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/a8070b60-02d7-4e09-988d-e5b54e1107f7)
74+
75+
![Screenshot (913)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/ba759acc-8707-46b7-8d7d-25ea724913c9)
7576

7677
# View Movies Command Examples
77-
![Screenshot (774)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/fa724ec9-876f-46cf-bbf9-7942c32ad744)
78+
![Screenshot (905)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/ffdd1479-94dc-4fd3-b8fd-6802297285a7)
7879

7980
# Filter Movies Command Examples
80-
![Screenshot (775)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/f28ffbb4-9ad6-4978-a49a-c687cac72e09)
81+
![Screenshot (906)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/942685c6-b9dd-4413-918b-9ae6a854439f)
82+
83+
# View Clients Command Examples
84+
![Screenshot (907)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/b8018392-28f1-405c-a670-6a4329a07d76)
8185

82-
# Filter Clients Command Examples
83-
![Screenshot (776)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/3a1e2aa0-ef9d-4732-8432-fa1a461a6267)
86+
# Search Clients Command Examples
87+
![Screenshot (908)](https://github.com/ralvarezdev/ProyectoTeoria_RR/assets/86166683/b053d443-5842-44ba-9a88-7fd79a916174)

bin/Blockbuster.exe

3.11 KB
Binary file not shown.

src/lib/client.cpp

-107
This file was deleted.

src/lib/clientdata.cpp

-162
This file was deleted.

0 commit comments

Comments
 (0)