Compare commits
3 commits
cd107eb111
...
5cd9e76977
Author | SHA1 | Date | |
---|---|---|---|
5cd9e76977 | |||
47e9fb0e61 | |||
68c00c34e3 |
7 changed files with 19 additions and 12 deletions
13
config.json
13
config.json
|
@ -1,13 +1,8 @@
|
||||||
{
|
{
|
||||||
"defaultHomeserver": 3,
|
"defaultHomeserver": 0,
|
||||||
"homeserverList": [
|
"homeserverList": [
|
||||||
"0wnz.at",
|
"chat.naskya.net",
|
||||||
"converser.eu",
|
"chat.sup39.dev"
|
||||||
"envs.net",
|
|
||||||
"matrix.org",
|
|
||||||
"monero.social",
|
|
||||||
"mozilla.org",
|
|
||||||
"xmr.se"
|
|
||||||
],
|
],
|
||||||
"allowCustomHomeservers": true
|
"allowCustomHomeservers": false
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
||||||
<title>Cinny</title>
|
<title>Cinny@さぽなす</title>
|
||||||
<meta name="name" content="Cinny" />
|
<meta name="name" content="Cinny" />
|
||||||
<meta name="author" content="Ajay Bura" />
|
<meta name="author" content="Ajay Bura" />
|
||||||
<meta
|
<meta
|
||||||
|
@ -26,6 +26,7 @@
|
||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#000000" />
|
||||||
|
|
||||||
<link id="favicon" rel="shortcut icon" href="./public/favicon.ico" />
|
<link id="favicon" rel="shortcut icon" href="./public/favicon.ico" />
|
||||||
|
<link rel="stylesheet" href="/mx-uc.css" />
|
||||||
|
|
||||||
<link rel="manifest" href="/manifest.json" />
|
<link rel="manifest" href="/manifest.json" />
|
||||||
<meta name="mobile-web-app-capable" content="yes" />
|
<meta name="mobile-web-app-capable" content="yes" />
|
||||||
|
|
4
public/mx-uc.css
Normal file
4
public/mx-uc.css
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
:root {
|
||||||
|
--mx-uc--sup39-chat_sup39_dev: #2ee5b8;
|
||||||
|
/* --mx-uc--naskya-chat_naskya_net: ; */
|
||||||
|
}
|
|
@ -98,7 +98,8 @@ function RenderEmoticonElement({
|
||||||
isUsingTwemoji() ? <img
|
isUsingTwemoji() ? <img
|
||||||
className={css.EmoticonImg}
|
className={css.EmoticonImg}
|
||||||
src={getEmojiUrl(element.key)}
|
src={getEmojiUrl(element.key)}
|
||||||
alt={element.shortcode}
|
alt={element.key}
|
||||||
|
title={element.shortcode}
|
||||||
/> : element.key
|
/> : element.key
|
||||||
)}
|
)}
|
||||||
{children}
|
{children}
|
||||||
|
|
|
@ -283,7 +283,8 @@ const NativeEmoji = (emoji: IEmoji) =>
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
className={css.EmoticonImg}
|
className={css.EmoticonImg}
|
||||||
src={getEmojiUrl(emoji.unicode)}
|
src={getEmojiUrl(emoji.unicode)}
|
||||||
alt={emoji.shortcode}
|
alt={emoji.unicode}
|
||||||
|
title={emoji.shortcode}
|
||||||
/> : emoji.unicode;
|
/> : emoji.unicode;
|
||||||
|
|
||||||
export function EmojiItem({
|
export function EmojiItem({
|
||||||
|
|
|
@ -46,6 +46,7 @@ const textToEmojifyJSX = (text: string): (string | JSX.Element)[] =>
|
||||||
return <span key={pushIndex} className={css.EmoticonBase}>{
|
return <span key={pushIndex} className={css.EmoticonBase}>{
|
||||||
isUsingTwemoji() ? <img
|
isUsingTwemoji() ? <img
|
||||||
className={className}
|
className={className}
|
||||||
|
alt={char}
|
||||||
title={title}
|
title={title}
|
||||||
src={getEmojiUrl(char)}
|
src={getEmojiUrl(char)}
|
||||||
/> : <span
|
/> : <span
|
||||||
|
|
|
@ -33,6 +33,10 @@ const copyFiles = {
|
||||||
src: 'public/res/android',
|
src: 'public/res/android',
|
||||||
dest: 'public/',
|
dest: 'public/',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
src: 'public/mx-uc.css',
|
||||||
|
dest: '',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: 'twemoji/assets/svg/*',
|
src: 'twemoji/assets/svg/*',
|
||||||
dest: 'twemoji/',
|
dest: 'twemoji/',
|
||||||
|
|
Loading…
Reference in a new issue