diff --git a/site.css b/site.css
index 1b22c77..7a2bbf7 100644
--- a/site.css
+++ b/site.css
@@ -143,6 +143,8 @@ body {
}
.mxt_Footer {
+ margin-top: 50px;
+ margin-bottom: 10px;
text-align: center;
font-size: 12px;
}
\ No newline at end of file
diff --git a/src/components/HomePage.js b/src/components/HomePage.js
index 4933411..fe4db1d 100644
--- a/src/components/HomePage.js
+++ b/src/components/HomePage.js
@@ -22,9 +22,9 @@ var linkable_clients = [
logo: "",
author: "Vector.im",
homepage: "https://vector.im",
- room_url: "https://vector.im/beta/#/room/",
- user_url: "https://vector.im/beta/#/user/",
- msg_url: "https://vector.im/beta/#/room/",
+ room_url(alias) { return "https://vector.im/beta/#/room/" + alias },
+ user_url(userId) { return "https://vector.im/beta/#/user/" + userId },
+ msg_url(msg) { return "https://vector.im/beta/#/room/" + msg },
maturity: "Late beta",
comments: "Fully-featured Matrix client for Web, iOS & Android",
},
@@ -33,21 +33,10 @@ var linkable_clients = [
logo: "",
author: "Matrix.org",
homepage: "https://matrix.org",
- room_url: "https://matrix.org/beta/#/room/",
- user_url: null,
+ room_url(alias) { return "https://matrix.org/beta/#/room/" + alias },
maturity: "Deprecated",
comments: "The original developer-focused client for Web, iOS & Android",
},
- {
- name: "PTO (Perpetually Talking Online",
- logo: "",
- author: "Torrie Fischer",
- homepage: "https://pto.im",
- room_url: "irc://irc.matrix.org/",
- user_url: null,
- maturity: "Alpha",
- comments: "Access any room anywhere in Matrix via good old IRC!",
- },
];
var unlinkable_clients = [
@@ -57,8 +46,8 @@ var unlinkable_clients = [
author: "Tor Hveem",
homepage: "https://github.com/torhve/weechat-matrix-protocol-script",
maturity: "Late beta",
- room_instructions: "Type /join $entity",
- user_instructions: "Type /invite $entity",
+ room_instructions(alias) { return Type /join { alias }
},
+ user_instructions(userId) { return Type /invite { userId }
},
comments: "Commandline Matrix interface using Weechat",
},
{
@@ -67,8 +56,8 @@ var unlinkable_clients = [
author: "Felix Rohrbach",
homepage: "https://github.com/Fxrh/Quaternion",
maturity: "Late alpha",
- room_instructions: "Type /join $entity",
- user_instructions: "Type /invite $entity",
+ room_instructions(alias) { return Type /join { alias }
},
+ user_instructions(userId) { return Type /invite { userId }
},
comments: "Qt5 and C++ cross-platform desktop Matrix client",
},
{
@@ -77,8 +66,8 @@ var unlinkable_clients = [
author: "David A Roberts",
homepage: "https://github.com/davidar/tensor",
maturity: "Late alpha",
- room_instructions: "Type /join $entity",
- user_instructions: "Type /invite $entity",
+ room_instructions(alias) { return Type /join { alias }
},
+ user_instructions(userId) { return Type /invite { userId }
},
comments: "QML and JS cross-platform desktop Matrix client",
},
{
@@ -87,10 +76,21 @@ var unlinkable_clients = [
author: "David A Roberts",
homepage: "https://github.com/davidar/tensor2",
maturity: "Alpha",
- room_instructions: "Type /join $entity",
- user_instructions: "Type /invite $entity",
+ room_instructions(alias) { return Type /join { alias }
},
+ user_instructions(userId) { return Type /invite { userId }
},
comments: "QML and C++ cross-platform desktop Matrix client",
},
+ {
+ name: "PTO (Perpetually Talking Online)",
+ logo: "",
+ author: "Torrie Fischer",
+ homepage: "https://pto.im",
+ //room_url(alias) { return "irc://irc.matrix.org/" + alias },
+ room_instructions(alias) { return Type /join { alias }
},
+ user_instructions(userId) { return Type /invite { userId }
},
+ maturity: "Alpha",
+ comments: "Access any room anywhere in Matrix via good old IRC!",
+ },
{
name: "Mclient.el",
logo: "",
@@ -211,6 +211,17 @@ export default React.createClass({
// maturity: "Late beta",
// comments: "Fully-featured Matrix client for Web, iOS & Android",
+ var description;
+ if (isRoom) {
+ description = the { this.state.entity } room;
+ }
+ else if (isUser) {
+ description = the user { this.state.entity };
+ }
+ else if (isMsg) {
+ description = this message;
+ }
+
links = (
- To connect to { isMsg ? "this message" : this.state.entity }, please select an app: + To connect to { description }, please select an app: