-
-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Footer
Here's the full text of the footer:
© 2026 dog-community. MIT licensed. Not affiliated with the original authors.
The project stopped being MIT licensed as of v0.2.7; since then it is EUPL-1.2 licensed.
While you are in there, you should probably also fix the footer on the "Releases" page, which just reads
© dog-community.
instead of the full text given above.
Link
Under the Contribute section, the URL for "Open Issues" is the same as "Repository"; I imagine "Open Issues" should be https://github.com/Dj-Codeman/dog_community/issues.
AUR package
It says that the AUR package name is dns_doge when it is actually dns-doge.
This is also wrong in the Readme as well, but I'm working on a PR for something else so I can include that fix too, to make your life easier. (EDIT: #91 includes fixing the Readme)
Favicon
The favicon specified in the HTML (favicon.ico) is missing, yielding a 404.
I'm curious to see what favicon.ico is if it is a thing and just misnamed, if not you could always use the same SVG you've chosen for the site logo by running it through a URL-encoder for SVG, like so:
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%235AA2FF' stroke-width='1.6'%3E%3C/circle%3E%3Ccircle cx='9' cy='11' r='1.2' stroke='%235AA2FF'%3E%3C/circle%3E%3Ccircle cx='14.5' cy='11' r='1.2' stroke='%235AA2FF'%3E%3C/circle%3E%3Cpath d='M8.5 15s2 1.1 3.5 1.1S15.5 15 15.5 15' stroke='%235AA2FF' stroke-width='1.4' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E" />Which would look like:
I had to replace currentColor with the hex code (#5AA2FF) before URL-encoding because CSS apparently doesn't apply to favicons. I'm not sure how one would add a fill for the face. And I had to fix the eyes, which is a good segue...
Logo
The eyes for the logo are missing stroke='currentColor' attribute so they are rendering as black.
The logo on the "Releases" page is different: it doesn't have a face:
I personally think you should replace the logo altogether with a dog instead. Here's an SVG I had my Agent whip up really quick; I'm not really satisfied with the ears but meh, consider it a proof of concept - though you are more than welcome to use it or modify it if you wish.
<svg viewBox="0 0 24 24" aria-hidden="true">
<circle id="head" cx="12" cy="13" r="7" fill="none" stroke="currentColor" stroke-width="1.5"></circle>
<ellipse id="left-ear" cx="7" cy="7" rx="2" ry="3.5" fill="none" stroke="currentColor" stroke-width="1.5"></ellipse>
<ellipse id="right-ear" cx="17" cy="7" rx="2" ry="3.5" fill="none" stroke="currentColor" stroke-width="1.5"></ellipse>
<circle id="left-eye" cx="10" cy="12" r="1" fill="currentColor"></circle>
<circle id="right-eye" cx="14" cy="12" r="1" fill="currentColor"></circle>
<circle id="nose" cx="12" cy="14" r="0.8" fill="currentColor"></circle>
<path id="mouth" d="M12 14 Q11 15.5 10 15.5 M12 14 Q13 15.5 14 15.5" stroke="currentColor" stroke-width="1" stroke-linecap="round"></path>
</svg>
