Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update relays that are added on signup #1708

Merged
merged 2 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed display of mastodon usernames so it shows @[email protected] rather than [email protected]
- Nos now publishes the hashtags it finds in your note when you post. This means it works the way you’ve always expected it to work. [#44](https://github.com/verse-pbc/issues/issues/44)
- Fixed crash related to tracking delete events. [#96](https://github.com/verse-pbc/issues/issues/96)
- Updated the default relays that are added when you create an account. [#17](https://github.com/verse-pbc/issues/issues/17)

### Internal Changes
- Upgraded to Xcode 16. [#1570](https://github.com/planetary-social/nos/issues/1570)
Expand Down
4 changes: 1 addition & 3 deletions Nos/Models/CoreData/Relay+CoreDataClass.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ public class Relay: NosManagedObject {
static var recommended: [String] {
[
nosAddress.absoluteString,
"wss://relay.damus.io",
"wss://purplepag.es",
"wss://nos.lol",
"wss://news.nos.social",
"wss://relay.mostr.pub",
]
}
Expand Down
Loading