You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/open/clients/Cinny.js
+11-29Lines changed: 11 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ export class Cinny {
28
28
return"images/client-icons/cinny.svg";
29
29
}
30
30
getauthor(){
31
-
return"???";
31
+
return"Copyright (c) 2021-present Ajay Bura (ajbura) and cinny contributors";
32
32
}
33
33
gethomepage(){
34
34
return"https://cinny.in";
@@ -45,44 +45,26 @@ export class Cinny {
45
45
return"A Matrix client focusing primarily on simple, elegant and secure interface. The main goal is to have an instant messaging application that is easy on people and has a modern touch.";
46
46
}
47
47
getMaturity(platform){
48
-
returnMaturity.Beta;
49
-
}
50
-
getDeepLink(platform,link){
51
-
// cinny doesn't support deep links (?)
52
-
return;
48
+
returnMaturity.Stable;
53
49
}
50
+
51
+
// cinny doesn't support deep links yet
52
+
getDeepLink(platform,link){}
53
+
54
54
canInterceptMatrixToLinks(platform){
55
55
returnfalse;
56
56
}
57
57
58
58
getLinkInstructions(platform,link){
59
-
switch(platform.kind){
60
-
casePlatform.DesktopWeb:
61
-
return[
62
-
"Go to https://app.cinny.in",
63
-
"Click on '+' in the top left corner and paste the "+
64
-
(link.kind===LinkKind.User
65
-
? "username"
66
-
: "identifier"),
67
-
];
68
-
default:
69
-
return[
70
-
"Click on '+' in the top left corner and paste the "+
71
-
(link.kind===LinkKind.User
72
-
? "username"
73
-
: "identifier"),
74
-
];
75
-
}
59
+
return[
60
+
"Click on '+' in the top left corner and paste the ",
0 commit comments