Skip to content

Commit d805859

Browse files
committed
directory structure in contributing
1 parent a783730 commit d805859

File tree

1 file changed

+43
-1
lines changed

1 file changed

+43
-1
lines changed

CONTRIBUTING.md

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,49 @@ Contributions are welcome and appreciated! To contribute:
3030
## Project Structure
3131

3232
```
33-
33+
├── assets
34+
│ ├── alg-app-store.desktop
35+
│ └── alg-app-store.png
36+
├── build.sh
37+
├── CMakeLists.txt
38+
├── CONTRIBUTING.md
39+
├── DEVELOPER_GUIDE.md
40+
├── LICENSE
41+
├── QT_REWRITE_SUMMARY.md
42+
├── README.md
43+
├── src
44+
│ ├── core
45+
│ │ ├── alpm_wrapper.cpp
46+
│ │ ├── alpm_wrapper.h
47+
│ │ ├── aur_helper.cpp
48+
│ │ ├── aur_helper.h
49+
│ │ ├── package_manager.cpp
50+
│ │ └── package_manager.h
51+
│ ├── gui
52+
│ │ ├── home_widget.cpp
53+
│ │ ├── home_widget.h
54+
│ │ ├── installed_widget.cpp
55+
│ │ ├── installed_widget.h
56+
│ │ ├── mainwindow.cpp
57+
│ │ ├── mainwindow.h
58+
│ │ ├── package_card.cpp
59+
│ │ ├── package_card.h
60+
│ │ ├── package_details_dialog.cpp
61+
│ │ ├── package_details_dialog.h
62+
│ │ ├── search_widget.cpp
63+
│ │ ├── search_widget.h
64+
│ │ ├── settings_widget.cpp
65+
│ │ ├── settings_widget.h
66+
│ │ ├── updates_widget.cpp
67+
│ │ └── updates_widget.h
68+
│ ├── main.cpp
69+
│ └── utils
70+
│ ├── logger.h
71+
│ └── types.h
72+
├── stylesheet.qss
73+
└── TODO.md
74+
75+
6 directories, 36 files
3476
```
3577

3678
## Understanding the code

0 commit comments

Comments
 (0)