TanmayPatil105 / procfetch

🎨 Yet another command-line system information utility written in C++
https://tanmaypatil105.github.io/procfetch/
GNU General Public License v3.0
23 stars 11 forks source link

procfetch.gif not found in index.html #95

Closed akshaykhoje closed 1 year ago

akshaykhoje commented 1 year ago

The procfetch.gif doesn't get displayed at https://tanmaypatil105.github.io/procfetch/index.html.

Fix : We just need to put the procfetch.gif on the new branch. I have fixed it by creating a directory images/ on the gh-pages branch and placing the procfetch.gif in it. Is that the right way or you prefer another way of doing it?

image


The fix

image

TanmayPatil105 commented 1 year ago

The docs are auto generated by Doxygen so everytime there are changes in main branch they will be reflected onto the gh-pages branch using this workflow.

How to create docs?

make docs

We have used the img tag instead of ![]() to render the gif on the README and Doxygen uses README as the mainpage for the documentation as mentioned in the Doxyfile:

USE_MDFILE_AS_MAINPAGE = README.md

![]() can be used but we cannot set the size of width and height of gif using it.

TanmayPatil105 commented 1 year ago

Checkout #96 !!

TanmayPatil105 commented 1 year ago

Closing as #96 and this commit fixed it.