File tree Expand file tree Collapse file tree 1 file changed +43
-1
lines changed
Expand file tree Collapse file tree 1 file changed +43
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments