Changed branding to Yo, Sup
This commit is contained in:
parent
d6dd98f31e
commit
ef57392834
3 changed files with 23 additions and 7 deletions
23
README.md
23
README.md
|
@ -1,8 +1,22 @@
|
|||
# Damus Web
|
||||
# Yo, Sup?
|
||||
|
||||
Here lies the code for the Damus web app, a client for the Nostr protocol. The
|
||||
goal of this client is to be a better version of Twitter, but not to reproduce
|
||||
all of it's functionality.
|
||||
Yo Sup? or simply "Yo" for short is a web client for the Nostr protocol. Its
|
||||
aim is to be as good of an experience (if not better than) as Twitter. Note Yo
|
||||
will not be the same as Twitter and will not implement all of it's features.
|
||||
Nor will Yo try to implement all of Nostr's features as there are many.
|
||||
|
||||
The true purpose of Yo is to provide a great experience on any platform for
|
||||
anyone. It should be easy to use and understand making it a great option for
|
||||
people coming from other social networks to engage in their community.
|
||||
|
||||
Yo comes from the legacy Damus Web app an holds all of its history. It has been
|
||||
rewritten to accomodate for the scale issues that we have seen so that it can
|
||||
continue to be used. The main reason for branching off is due to the lack of
|
||||
parity between Damus iOS (and new codebase improvements) and that of what the
|
||||
web version would support.
|
||||
|
||||
New minor features will continue to be added, but nothing substancial without
|
||||
full time maintainers. Security will always be a top concern.
|
||||
|
||||
[Issue Tracker](https://todo.sr.ht/~tomtom/damus-web-issues)
|
||||
|
||||
|
@ -26,6 +40,7 @@ before making changes and supplying patch notes.
|
|||
Animations should not be a forefront, but an enjoyable addition.
|
||||
- All new & modified code should be properly documented.
|
||||
- Source code should be readable in the browser.
|
||||
- Search for the TODOs.
|
||||
|
||||
These rules are subject to discussion.
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<meta http-equiv="Content-Security-Policy"
|
||||
content="default-src 'none'; connect-src 'self' ws: wss:; script-src 'self'; script-src-elem 'self'; script-src-attr 'unsafe-inline'; style-src 'self' fonts.googleapis.com; img-src http: https: data:; media-src *; font-src 'self' fonts.gstatic.com; child-src 'none';" />
|
||||
|
||||
<title>Damus</title>
|
||||
<title>Yo, Sup</title>
|
||||
<link rel="stylesheet" href="css/vars.css?v=1">
|
||||
<link rel="stylesheet" href="css/utils.css?v=1">
|
||||
<link rel="stylesheet" href="css/styles.css?v=13">
|
||||
|
@ -41,7 +41,7 @@
|
|||
Yo, Sup?
|
||||
<img class="icon svg" src="icon/logo-inverted.svg"/>
|
||||
</h1>
|
||||
<p>Damus Web, the blue bird experience for Nostr.</p>
|
||||
<p>The blue bird experience for Nostr.</p>
|
||||
<button class="action" onclick="signin()">
|
||||
Sign In with Key
|
||||
<img src="./icon/key.svg" class="icon svg small invert"/>
|
||||
|
|
|
@ -236,7 +236,8 @@ function update_title(model) {
|
|||
|
||||
const num = model.notifications
|
||||
const has_notes = num !== 0
|
||||
document.title = has_notes ? `(${num}) Damus` : "Damus";
|
||||
document.title = has_notes ? `(${num}) Yo Sup` : "Yo Sup";
|
||||
// TODO I broke the favicons. I will fix with notications update
|
||||
update_favicon(has_notes ? "img/damus_notif.svg" : "img/damus.svg");
|
||||
update_notification_markers(has_notes)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue