Skip to content

Commit

Permalink
Change link from #mlemapp to #mlemappspace (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowJonathan authored Aug 9, 2023
1 parent c561efa commit ff5d8f7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Hello!

If you're reading this, you probably want to contribute to Mlem. Welcome! We're happy to have you on board. You may wish to join our [Matrix room](https://matrix.to/#/#mlemapp:matrix.org) if you haven't already.
If you're reading this, you probably want to contribute to Mlem. Welcome! We're happy to have you on board. You may wish to join our [Matrix room](https://matrix.to/#/#mlemappspace:matrix.org) if you haven't already.

## Prerequesites

Expand Down
22 changes: 11 additions & 11 deletions Mlem/Views/Tabs/Settings/Components/Views/About/AboutView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,47 +9,47 @@ import SwiftUI

struct AboutView: View {
@EnvironmentObject var appState: AppState

@Binding var navigationPath: NavigationPath

var body: some View {
Group {
List {
Section {
appHeaderView
.listRowBackground(Color(.systemGroupedBackground))
}

Section {
Link(destination: URL(string: "https://mlem.group/")!) {
Label("Website", systemImage: "globe").labelStyle(SquircleLabelStyle(color: .blue))
}
.buttonStyle(SettingsButtonStyle())

Link(destination: URL(string: "https://lemmy.world/c/[email protected]")!) {
Label("Official Community", systemImage: "house.fill").labelStyle(SquircleLabelStyle(color: .green, fontSize: 15))
}
.buttonStyle(SettingsButtonStyle())
Link(destination: URL(string: "https://matrix.to/#/%23mlemapp:matrix.org")!) {

Link(destination: URL(string: "https://matrix.to/#/%23mlemappspace:matrix.org")!) {
Label("Matrix Room", systemImage: "chart.bar.doc.horizontal").labelStyle(SquircleLabelStyle(color: .teal))
}
.buttonStyle(SettingsButtonStyle())
}

Section {
Link(destination: URL(string: "https://github.com/mlemgroup/mlem")!) {
Label("Github Repository", image: "logo.github").labelStyle(SquircleLabelStyle(color: .black))
}
.buttonStyle(SettingsButtonStyle())

NavigationLink {
ContributorsView()
} label: {
Label("Contributors", systemImage: "person.2.fill").labelStyle(SquircleLabelStyle(color: .teal))
}
}

Section {
NavigationLink {
DocumentView(text: privacyPolicy.body)
Expand All @@ -72,7 +72,7 @@ struct AboutView: View {
}
.navigationTitle("About")
}

var versionString: String {
var result = "n/a"

Expand All @@ -86,7 +86,7 @@ struct AboutView: View {

return result
}

@ViewBuilder
private var appHeaderView: some View {
VStack(spacing: AppConstants.postAndCommentSpacing) {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mlem - the iOS Lemmy Client

Mlem is a client for [Lemmy](https://join-lemmy.org) - a Reddit-esque, open-source link aggregator. With Mlem, you can effortlessly participate in the conversation across all Lemmy servers.
Mlem is a client for [Lemmy](https://join-lemmy.org) - a Reddit-esque, open-source link aggregator. With Mlem, you can effortlessly participate in the conversation across all Lemmy servers.

[You can download Mlem here.](https://apps.apple.com/gb/app/mlem-for-lemmy/id6450543782) Mlem requires iOS 16 or later.

Expand All @@ -19,7 +19,7 @@ And that's not all; Mlem is also extensively optimized and performant, which mea
<img src="https://github.com/mlemgroup/mlem/assets/78750526/30478f39-169d-47ea-b983-a453af2b0959" width="30%">

## Want to chat about Mlem?
You're welcome to join our [community on lemmy.ml](https://lemmy.ml/c/mlemapp) or [Matrix room](https://matrix.to/#/#mlemapp:matrix.org)!
You're welcome to join our [community on lemmy.ml](https://lemmy.ml/c/mlemapp) or [Matrix room](https://matrix.to/#/#mlemappspace:matrix.org)!

## Contributing

Expand Down

0 comments on commit ff5d8f7

Please sign in to comment.