forked from matrix/element-web
Merge remote-tracking branch 'origin/develop' into rav/fix_install_instructions
This commit is contained in:
commit
a32c401126
|
@ -24,8 +24,8 @@ released version of Riot:
|
||||||
as desired. See below for details.
|
as desired. See below for details.
|
||||||
1. Enter the URL into your browser and log into Riot!
|
1. Enter the URL into your browser and log into Riot!
|
||||||
|
|
||||||
Releases are signed by PGP, and can be checked against the public key
|
Releases are signed using gpg and the OpenPGP standard, and can be checked against the public key located
|
||||||
at https://riot.im/packages/keys/riot.asc .
|
at https://packages.riot.im/riot-release-key.asc.
|
||||||
|
|
||||||
Note that Chrome does not allow microphone or webcam access for sites served
|
Note that Chrome does not allow microphone or webcam access for sites served
|
||||||
over http (except localhost), so for working VoIP you will need to serve Riot
|
over http (except localhost), so for working VoIP you will need to serve Riot
|
||||||
|
@ -135,6 +135,8 @@ For a good example, see https://riot.im/develop/config.json.
|
||||||
during authentication flows
|
during authentication flows
|
||||||
1. `authHeaderLogoUrl`: An logo image that is shown in the header during
|
1. `authHeaderLogoUrl`: An logo image that is shown in the header during
|
||||||
authentication flows
|
authentication flows
|
||||||
|
1. `authFooterLinks`: a list of links to show in the authentication page footer:
|
||||||
|
`[{"text": "Link text", "url": "https://link.target"}, {"text": "Other link", ...}]`
|
||||||
1. `integrations_ui_url`: URL to the web interface for the integrations server. The integrations
|
1. `integrations_ui_url`: URL to the web interface for the integrations server. The integrations
|
||||||
server is not Riot and normally not your homeserver either. The integration server settings
|
server is not Riot and normally not your homeserver either. The integration server settings
|
||||||
may be left blank to disable integrations.
|
may be left blank to disable integrations.
|
||||||
|
@ -230,7 +232,6 @@ All electron packages go into `electron_app/dist/`
|
||||||
Many thanks to @aviraldg for the initial work on the electron integration.
|
Many thanks to @aviraldg for the initial work on the electron integration.
|
||||||
|
|
||||||
Other options for running as a desktop app:
|
Other options for running as a desktop app:
|
||||||
* https://github.com/krisak/vector-electron-desktop
|
|
||||||
* @asdf:matrix.org points out that you can use nativefier and it just works(tm)
|
* @asdf:matrix.org points out that you can use nativefier and it just works(tm)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
@ -243,6 +244,8 @@ Desktop app configuration
|
||||||
|
|
||||||
To run multiple instances of the desktop app for different accounts, you can launch the executable with the `--profile` argument followed by a unique identifier, e.g `riot-web --profile Work` for it to run a separate profile and not interfere with the default one.
|
To run multiple instances of the desktop app for different accounts, you can launch the executable with the `--profile` argument followed by a unique identifier, e.g `riot-web --profile Work` for it to run a separate profile and not interfere with the default one.
|
||||||
|
|
||||||
|
Alternatively, a custom location for the profile data can be specified using the `--profile-dir` flag followed by the desired path.
|
||||||
|
|
||||||
To change the config.json for the desktop app, create a config file which will be used to override values in the config which ships in the package:
|
To change the config.json for the desktop app, create a config file which will be used to override values in the config which ships in the package:
|
||||||
+ `%APPDATA%\$NAME\config.json` on Windows
|
+ `%APPDATA%\$NAME\config.json` on Windows
|
||||||
+ `$XDG_CONFIG_HOME\$NAME\config.json` or `~/.config/$NAME/config.json` on Linux
|
+ `$XDG_CONFIG_HOME\$NAME\config.json` or `~/.config/$NAME/config.json` on Linux
|
||||||
|
|
|
@ -42,7 +42,9 @@ const Store = require('electron-store');
|
||||||
// migrating to mitigate any risk of it being used maliciously.
|
// migrating to mitigate any risk of it being used maliciously.
|
||||||
let migratingOrigin = false;
|
let migratingOrigin = false;
|
||||||
|
|
||||||
if (argv['profile']) {
|
if (argv['profile-dir']) {
|
||||||
|
app.setPath('userData', argv['profile-dir']);
|
||||||
|
} else if (argv['profile']) {
|
||||||
app.setPath('userData', `${app.getPath('userData')}-${argv['profile']}`);
|
app.setPath('userData', `${app.getPath('userData')}-${argv['profile']}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,7 +141,7 @@ ipcMain.on('ipcCall', async function(ev, payload) {
|
||||||
ret = autoUpdater.getFeedURL();
|
ret = autoUpdater.getFeedURL();
|
||||||
break;
|
break;
|
||||||
case 'getAutoLaunchEnabled':
|
case 'getAutoLaunchEnabled':
|
||||||
ret = launcher.isEnabled;
|
ret = await launcher.isEnabled();
|
||||||
break;
|
break;
|
||||||
case 'setAutoLaunchEnabled':
|
case 'setAutoLaunchEnabled':
|
||||||
if (args[0]) {
|
if (args[0]) {
|
||||||
|
|
|
@ -96,13 +96,14 @@ function onLinkContextMenu(ev, params) {
|
||||||
defaultPath: targetFileName,
|
defaultPath: targetFileName,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!filePath) return; // user cancelled dialog
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (url.startsWith("data:")) {
|
if (url.startsWith("data:")) {
|
||||||
fs.writeFileSync(filePath, nativeImage.createFromDataURL(url));
|
fs.writeFileSync(filePath, nativeImage.createFromDataURL(url));
|
||||||
} else {
|
} else {
|
||||||
request.get(url).pipe(fs.createWriteStream(filePath));
|
request.get(url).pipe(fs.createWriteStream(filePath));
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
dialog.showMessageBox({
|
dialog.showMessageBox({
|
||||||
|
|
|
@ -36,6 +36,9 @@
|
||||||
"build:bundle": "cross-env NODE_ENV=production webpack -p --progress --bail --mode production",
|
"build:bundle": "cross-env NODE_ENV=production webpack -p --progress --bail --mode production",
|
||||||
"build:bundle:dev": "webpack --progress --bail --mode development",
|
"build:bundle:dev": "webpack --progress --bail --mode development",
|
||||||
"build:electron": "yarn clean && yarn build && yarn install:electron && build -wml --ia32 --x64",
|
"build:electron": "yarn clean && yarn build && yarn install:electron && build -wml --ia32 --x64",
|
||||||
|
"build:electron:linux": "yarn build && build -l --x64",
|
||||||
|
"build:electron:macos": "yarn build && build -m --x64",
|
||||||
|
"build:electron:windows": "yarn build && build -w --ia32 --x64",
|
||||||
"build:react-sdk": "node scripts/yarn-sub.js matrix-react-sdk build",
|
"build:react-sdk": "node scripts/yarn-sub.js matrix-react-sdk build",
|
||||||
"build:js-sdk": "node scripts/yarn-sub.js matrix-js-sdk start:init",
|
"build:js-sdk": "node scripts/yarn-sub.js matrix-js-sdk start:init",
|
||||||
"build": "yarn build:js-sdk && yarn build:react-sdk && yarn reskindex && yarn build:res && yarn build:bundle",
|
"build": "yarn build:js-sdk && yarn build:react-sdk && yarn reskindex && yarn build:res && yarn build:bundle",
|
||||||
|
@ -73,7 +76,7 @@
|
||||||
"matrix-js-sdk": "1.0.4",
|
"matrix-js-sdk": "1.0.4",
|
||||||
"matrix-react-sdk": "1.0.7",
|
"matrix-react-sdk": "1.0.7",
|
||||||
"modernizr": "^3.6.0",
|
"modernizr": "^3.6.0",
|
||||||
"olm": "https://matrix.org/packages/npm/olm/olm-3.1.0-pre1.tgz",
|
"olm": "https://packages.matrix.org/npm/olm/olm-3.1.0.tgz",
|
||||||
"prop-types": "^15.6.2",
|
"prop-types": "^15.6.2",
|
||||||
"react": "^15.6.0",
|
"react": "^15.6.0",
|
||||||
"react-dom": "^15.6.0",
|
"react-dom": "^15.6.0",
|
||||||
|
|
|
@ -166,7 +166,7 @@ if __name__ == "__main__":
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--include", nargs='*', default='./config*.json', help=(
|
"--include", nargs='*', default=['./config*.json'], help=(
|
||||||
"Symlink these files into the root of the deployed tarball. \
|
"Symlink these files into the root of the deployed tarball. \
|
||||||
Useful for config files and home pages. Supports glob syntax. \
|
Useful for config files and home pages. Supports glob syntax. \
|
||||||
(Default: '%(default)s')"
|
(Default: '%(default)s')"
|
||||||
|
|
|
@ -23,6 +23,9 @@ cp config.sample.json webapp/
|
||||||
mkdir -p dist
|
mkdir -p dist
|
||||||
cp -r webapp riot-$version
|
cp -r webapp riot-$version
|
||||||
|
|
||||||
|
# Just in case you have a local config, remove it before packaging
|
||||||
|
rm riot-$version/config.json
|
||||||
|
|
||||||
# if $version looks like semver with leading v, strip it before writing to file
|
# if $version looks like semver with leading v, strip it before writing to file
|
||||||
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
|
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
|
||||||
echo ${version:1} > riot-$version/version
|
echo ${version:1} > riot-$version/version
|
||||||
|
|
|
@ -18,6 +18,8 @@ limitations under the License.
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const React = require('react');
|
const React = require('react');
|
||||||
|
import SdkConfig from 'matrix-react-sdk/lib/SdkConfig';
|
||||||
|
|
||||||
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
|
@ -27,11 +29,29 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
const brandingConfig = SdkConfig.get().branding;
|
||||||
|
let links = [
|
||||||
|
{"text": "blog", "url": "https://medium.com/@RiotChat"},
|
||||||
|
{"text": "twitter", "url": "https://twitter.com/@RiotChat"},
|
||||||
|
{"text": "github", "url": "https://github.com/vector-im/riot-web"},
|
||||||
|
];
|
||||||
|
|
||||||
|
if (brandingConfig && brandingConfig.authFooterLinks) {
|
||||||
|
links = brandingConfig.authFooterLinks;
|
||||||
|
}
|
||||||
|
|
||||||
|
const authFooterLinks = [];
|
||||||
|
for (const linkEntry of links) {
|
||||||
|
authFooterLinks.push(
|
||||||
|
<a href={linkEntry.url} key={linkEntry.text} target="_blank" rel="noopener">
|
||||||
|
{linkEntry.text}
|
||||||
|
</a>,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_AuthFooter">
|
<div className="mx_AuthFooter">
|
||||||
<a href="https://medium.com/@RiotChat" target="_blank" rel="noopener">blog</a>
|
{authFooterLinks}
|
||||||
<a href="https://twitter.com/@RiotChat" target="_blank" rel="noopener">twitter</a>
|
|
||||||
<a href="https://github.com/vector-im/riot-web" target="_blank" rel="noopener">github</a>
|
|
||||||
<a href="https://matrix.org" target="_blank" rel="noopener">{ _t('powered by Matrix') }</a>
|
<a href="https://matrix.org" target="_blank" rel="noopener">{ _t('powered by Matrix') }</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Rezigni",
|
"Dismiss": "Rezigni",
|
||||||
"powered by Matrix": "funkciigata de Matrix",
|
"powered by Matrix": "povigita per Matrix",
|
||||||
"Custom Server Options": "Propraj servilaj elektoj",
|
"Custom Server Options": "Propraj servilaj elektoj",
|
||||||
"Riot Desktop on %(platformName)s": "Riot Labortablo sur %(platformName)s",
|
"Riot Desktop on %(platformName)s": "Riot Labortablo sur %(platformName)s",
|
||||||
"Riot is not supported on mobile web. Install the app?": "Riot ne estas subtenata sur poŝkomputila reto. Ĉu instali la aplikaĵon?",
|
"Riot is not supported on mobile web. Install the app?": "Riot ne estas subtenata sur poŝkomputila reto. Ĉu instali la aplikaĵon?",
|
||||||
"Unknown device": "Nekonata aparato",
|
"Unknown device": "Nekonata aparato",
|
||||||
"You need to be using HTTPS to place a screen-sharing call.": "Vi devas uzi HTTPS por ekranvidadi.",
|
"You need to be using HTTPS to place a screen-sharing call.": "Vi devas uzi HTTPS por ekranvidadi.",
|
||||||
"Welcome to Riot.im": "Bonvenu al Riot.im",
|
"Welcome to Riot.im": "Bonvenon al Riot.im",
|
||||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Malcentra, ĉifrita babilado & kunlaboro povigita de [matrix]",
|
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Malcentra, ĉifrita babilado & kunlaboro povigita per [matrix]",
|
||||||
"Search the room directory": "Serĉi en la babilejo-listo",
|
"Search the room directory": "Serĉi en la ĉambra dosierujo",
|
||||||
"Chat with Riot Bot": "Babilu kun la roboto Riot Bot",
|
"Chat with Riot Bot": "Babilu kun la roboto Riot Bot",
|
||||||
"Get started with some tips from Riot Bot!": "Komencu kun kelkaj sugestoj de la roboto Riot Bot!",
|
"Get started with some tips from Riot Bot!": "Komencu kun kelkaj sugestoj de la roboto Riot Bot!",
|
||||||
"General discussion about Matrix and Riot": "Ĝenerala diskutado pri Matrix kaj Riot",
|
"General discussion about Matrix and Riot": "Ĝenerala diskutado pri Matrix kaj Riot",
|
||||||
|
@ -35,5 +35,11 @@
|
||||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Multaj ĉambroj jam ekzistas en Matrix; kaj sendependaj, kaj ligitaj kun jamaj retoj (Slock, IRC, Gitter, ktp.). Rigardu la ĉambrujon!",
|
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Multaj ĉambroj jam ekzistas en Matrix; kaj sendependaj, kaj ligitaj kun jamaj retoj (Slock, IRC, Gitter, ktp.). Rigardu la ĉambrujon!",
|
||||||
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s per %(browserName)s je %(osName)s",
|
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s per %(browserName)s je %(osName)s",
|
||||||
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Vi povas uzi proprajn servilajn elektojn por saluti aliajn servilojn de Matrix, per specifo de alia hejmservila URL.<br/>Tio permesas al vi uzi klienton Riot kun jama konto de Matrix en alia hejmservilo.<br/><br/>Vi ankaŭ povas agordi propran identigan servilon, sed vi ne povos inviti uzantojn per retpoŝtadreso, aŭ esti invitata per retpoŝtadreso mem.",
|
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Vi povas uzi proprajn servilajn elektojn por saluti aliajn servilojn de Matrix, per specifo de alia hejmservila URL.<br/>Tio permesas al vi uzi klienton Riot kun jama konto de Matrix en alia hejmservilo.<br/><br/>Vi ankaŭ povas agordi propran identigan servilon, sed vi ne povos inviti uzantojn per retpoŝtadreso, aŭ esti invitata per retpoŝtadreso mem.",
|
||||||
"Co-ordination for Riot translators": "Kunordigo por tradukantoj de Riot"
|
"Co-ordination for Riot translators": "Kunordigo por tradukantoj de Riot",
|
||||||
|
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "Vi povas ankaŭ agordi propran identigan servilon, sed vi ne eblos inviti uzantojn per retpoŝtadresoj, nek eblos esti invitita per retpoŝtadreso.",
|
||||||
|
"Sign In": "Saluti",
|
||||||
|
"Create Account": "Krei konton",
|
||||||
|
"Need help?": "Ĉu vi bezonas helpon?",
|
||||||
|
"Explore rooms": "Esplori ĉambrojn",
|
||||||
|
"Room Directory": "Ĉambra dosierujo"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
"Dismiss": "Hylkää",
|
"Dismiss": "Hylkää",
|
||||||
"Unknown device": "Tuntematon laite",
|
"Unknown device": "Tuntematon laite",
|
||||||
"Welcome to Riot.im": "Tervetuloa Riot.im-palveluun",
|
"Welcome to Riot.im": "Tervetuloa Riot.im-palveluun",
|
||||||
"Search the room directory": "Hae hakemistosta",
|
"Search the room directory": "Hae luettelosta",
|
||||||
"Custom Server Options": "Palvelinasetukset",
|
"Custom Server Options": "Palvelinasetukset",
|
||||||
"Riot Desktop on %(platformName)s": "Riot Desktop %(platformName)s",
|
"Riot Desktop on %(platformName)s": "Riot Desktop, %(platformName)s",
|
||||||
"You need to be using HTTPS to place a screen-sharing call.": "Sinun täytyy käyttää HTTPS -yhteyttä, jotta voit jakaa ruudun.",
|
"You need to be using HTTPS to place a screen-sharing call.": "Sinun täytyy käyttää HTTPS-yhteyttä, jotta voit jakaa ruudun puhelussa.",
|
||||||
"Chat with Riot Bot": "Keskustele Riot-botin kanssa",
|
"Chat with Riot Bot": "Keskustele Riot-botin kanssa",
|
||||||
"Get started with some tips from Riot Bot!": "Aloita Riot Botin vinkkien avulla!",
|
"Get started with some tips from Riot Bot!": "Aloita Riot-botin vinkkien avulla!",
|
||||||
"General discussion about Matrix and Riot": "Matrix- ja Riot keskustelut",
|
"General discussion about Matrix and Riot": "Matrix- ja Riot keskustelut",
|
||||||
"Discussion of all things Matrix!": "Keskustelu kaikesta Matrixiin liittyvästä!",
|
"Discussion of all things Matrix!": "Keskustelu kaikesta Matrixiin liittyvästä!",
|
||||||
"Riot/Web & Desktop chat": "Riot/Web & Työpöytä-keskustelu",
|
"Riot/Web & Desktop chat": "Riot/Web & Työpöytä-keskustelu",
|
||||||
|
@ -32,14 +32,14 @@
|
||||||
"Riot is not supported on mobile web. Install the app?": "Riot ei tue laitettasi. Asenna mobiilisovellus?",
|
"Riot is not supported on mobile web. Install the app?": "Riot ei tue laitettasi. Asenna mobiilisovellus?",
|
||||||
"Design and implementation of E2E in Matrix": "Matrix päästä-päähän salauksen suunnittelu ja implementointi",
|
"Design and implementation of E2E in Matrix": "Matrix päästä-päähän salauksen suunnittelu ja implementointi",
|
||||||
"Contributing code to Matrix and Riot": "Osallistu kehitystyöhön",
|
"Contributing code to Matrix and Riot": "Osallistu kehitystyöhön",
|
||||||
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s %(browserName)s %(osName)s",
|
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s, %(browserName)s, %(osName)s",
|
||||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Salattua ja vikasietoista viestintää Matrix -teknologialla",
|
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Hajautettua ja salattua viestintää Matrix-teknologialla",
|
||||||
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Voit käyttää edistyksellisiä asetuksia kirjautuaksesi muille Matrix palvelimille, määrittelemällä kotipalvelimen URL-osoitteen.<br/>Tämän avulla voit käyttää Riot:ia olemassa olevalla toisen Matrix palvelimen käyttäjätilillä.<br/><br/>Voit myös asettaa valinnaisen identiteettipalvelimen, mutta et voi kutsua käyttäjiä sähköpostiosoitteella tai tulla kutsutuksi.",
|
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Voit käyttää edistyksellisiä asetuksia kirjautuaksesi muille Matrix palvelimille, määrittelemällä kotipalvelimen URL-osoitteen.<br/>Tämän avulla voit käyttää Riot:ia olemassa olevalla toisen Matrix palvelimen käyttäjätilillä.<br/><br/>Voit myös asettaa valinnaisen identiteettipalvelimen, mutta et voi kutsua käyttäjiä sähköpostiosoitteella tai tulla kutsutuksi.",
|
||||||
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Voit käyttää mukautettuja palvelinasetuksia kirjautuaksesi muihin Matrix-palvelimiin. Tämä mahdollistaa Riotin käyttämisen toisella palvelimella olevalla Matrix-tunnuksella.",
|
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Voit käyttää mukautettuja palvelinasetuksia kirjautuaksesi muihin Matrix-palvelimiin. Tämä mahdollistaa Riotin käyttämisen toisella kotipalvelimella olevalla Matrix-tilillä.",
|
||||||
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "Voit myös määrittää toisen identiteettipalvelimen, mutta et voi kutsua muita käyttäjiä sähköpostin perusteella, eivätkä se voi kutsua sinua.",
|
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "Voit myös määrittää toisen identiteettipalvelimen, mutta et voi kutsua muita käyttäjiä sähköpostin perusteella tai saada itse kutsua sähköpostin perusteella.",
|
||||||
"Sign In": "Kirjaudu sisään",
|
"Sign In": "Kirjaudu sisään",
|
||||||
"Create Account": "Luo tunnus",
|
"Create Account": "Luo tili",
|
||||||
"Need help?": "Tarvitsetko apua?",
|
"Need help?": "Tarvitsetko apua?",
|
||||||
"Explore rooms": "Etsi huoneita",
|
"Explore rooms": "Etsi huoneita",
|
||||||
"Room Directory": "Huonehakemisto"
|
"Room Directory": "Huoneluettelo"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
"Riot Desktop on %(platformName)s": "Leagan gnáthríomhaire Riot ar %(platformName)s",
|
"Riot Desktop on %(platformName)s": "Leagan gnáthríomhaire Riot ar %(platformName)s",
|
||||||
"Unknown device": "Gléas nár aithníodh",
|
"Unknown device": "Gléas nár aithníodh",
|
||||||
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s trí %(browserName)s ar %(osName)s",
|
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s trí %(browserName)s ar %(osName)s",
|
||||||
"You need to be using HTTPS to place a screen-sharing call.": "Ní mór HTTPS a úsáid chun glaoch ina dhéantar an scáileán a roinnt a chuir.",
|
"You need to be using HTTPS to place a screen-sharing call.": "Ní mór HTTPS a úsáid chun glaoch comhroinnt scáileáin a chur.",
|
||||||
"powered by Matrix": "á thiomáint le Matrix",
|
"powered by Matrix": "cumhachtaithe ag Matrix",
|
||||||
"Custom Server Options": "Socruithe do fhreastalaí saincheaptha",
|
"Custom Server Options": "Socruithe do fhreastalaí saincheaptha",
|
||||||
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Is féidir na socruithe do fhreastalaí saincheaptha a úsáid chun síniú isteach le freastalaí Matrix eile tríd URL freastalaí ar leith a sholáthar. Cuirfidh sé seo ar do chumas Riot a úsáid le cuntas Matrix atá ar taifead ag freastalaí difriúil.",
|
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Is féidir na socruithe do fhreastalaí saincheaptha a úsáid chun síniú isteach le freastalaithe Matrix eile ach URL freastalaí ar leith a shainiú. Cuirfidh sé seo ar do chumas Riot a úsáid le cuntas Matrix atá ar taifead ag an bhfreastalaí eile sin.",
|
||||||
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "Freisin is féidir freastalaí aitheantais saincheaptha a úsáid, ach le seo ní bheidh tú in ann cuireadh a thabhairt do dhaoine tríd seoladh ríomhphoist a sholáthar, nó glacadh le cuireadh trí ríomhphoist ach an oiread.",
|
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "Freisin is féidir freastalaí aitheantais saincheaptha a úsáid, ach sa chás sin ní bheidh tú in ann cuireadh a thabhairt do dhaoine trí sheoladh ríomhphoist a sholáthar, ná glacadh le cuireadh trí ríomhphoist ach an oiread.",
|
||||||
"Dismiss": "Cuir uait",
|
"Dismiss": "Cuir uait",
|
||||||
"Welcome to Riot.im": "Fáilte chuig Riot.im",
|
"Welcome to Riot.im": "Fáilte romhat chuig Riot.im",
|
||||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Meán comhrá agus comhoibriú neamhláraithe agus criptithe á thiomáint le [matrix]",
|
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Meán comhrá agus comhoibriú, díláraithe agus criptithe, cumhachtaithe ag [matrix]",
|
||||||
"Sign In": "Sínigh Isteach",
|
"Sign In": "Sínigh Isteach",
|
||||||
"Create Account": "Déan cuntas a chruthú",
|
"Create Account": "Déan cuntas a chruthú",
|
||||||
"Need help?": "An bhfuil cabhair uait?",
|
"Need help?": "An bhfuil cabhair uait?",
|
||||||
|
@ -17,5 +17,5 @@
|
||||||
"Explore rooms": "Breathnaigh thart ar na seomraí",
|
"Explore rooms": "Breathnaigh thart ar na seomraí",
|
||||||
"Room Directory": "Eolaire na Seomraí",
|
"Room Directory": "Eolaire na Seomraí",
|
||||||
"Search the room directory": "Cuardaigh eolaire na seomraí",
|
"Search the room directory": "Cuardaigh eolaire na seomraí",
|
||||||
"Get started with some tips from Riot Bot!": "Tosaigh le nod ó Riot Bot!"
|
"Get started with some tips from Riot Bot!": "Tosaigh le roinnt nod ó Riot Bot!"
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"Riot is not supported on mobile web. Install the app?": "Riot non è supportato sul web mobile. Installare l'applicazione?",
|
"Riot is not supported on mobile web. Install the app?": "Riot non è supportato sul web mobile. Installare l'applicazione?",
|
||||||
"Unknown device": "Dispositivo sconosciuto",
|
"Unknown device": "Dispositivo sconosciuto",
|
||||||
"You need to be using HTTPS to place a screen-sharing call.": "Devi usare HTTPS per effettuare una chiamata con la condivisione dello schermo.",
|
"You need to be using HTTPS to place a screen-sharing call.": "Devi usare HTTPS per effettuare una chiamata con la condivisione dello schermo.",
|
||||||
"Welcome to Riot.im": "Benvenuto/a su Riot.im",
|
"Welcome to Riot.im": "Benvenuti su Riot.im",
|
||||||
"Search the room directory": "Cerca nella lista delle stanze",
|
"Search the room directory": "Cerca nella lista delle stanze",
|
||||||
"Chat with Riot Bot": "Chatta con Riot Bot",
|
"Chat with Riot Bot": "Chatta con Riot Bot",
|
||||||
"Get started with some tips from Riot Bot!": "Inizia con alcuni consigli di Riot Bot!",
|
"Get started with some tips from Riot Bot!": "Inizia con alcuni consigli di Riot Bot!",
|
||||||
|
@ -35,5 +35,12 @@
|
||||||
"Dev chat for the Dendrite dev team": "Chat per gli sviluppatori di Dendrite",
|
"Dev chat for the Dendrite dev team": "Chat per gli sviluppatori di Dendrite",
|
||||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Esistono già molte stanze in Matrix, collegate a reti esistenti (Slack, IRC, Gitter, ecc.) o indipendenti. Controlla l'elenco!",
|
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Esistono già molte stanze in Matrix, collegate a reti esistenti (Slack, IRC, Gitter, ecc.) o indipendenti. Controlla l'elenco!",
|
||||||
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Puoi usare le opzioni server personalizzate per accedere ad altri server Matrix specificando l'indirizzo del server home.<br/> Questo permette di usare Riot con un account Matrix esistente su un server home diverso.<br/><br/>È anche possibile impostare un diverso server identità, ma in tal caso non sarà possibile invitare utenti attraverso l'indirizzo e-mail o essere invitati attraverso l'indirizzo e-mail.",
|
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Puoi usare le opzioni server personalizzate per accedere ad altri server Matrix specificando l'indirizzo del server home.<br/> Questo permette di usare Riot con un account Matrix esistente su un server home diverso.<br/><br/>È anche possibile impostare un diverso server identità, ma in tal caso non sarà possibile invitare utenti attraverso l'indirizzo e-mail o essere invitati attraverso l'indirizzo e-mail.",
|
||||||
"Co-ordination for Riot translators": "Coordinazione per i traduttori di Riot"
|
"Co-ordination for Riot translators": "Coordinazione per i traduttori di Riot",
|
||||||
|
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puoi usare le opzioni di server personalizzato per accedere ad altri server Matrix specificando un URL homeserver diverso. Ciò ti permette di usare Riot con un account Matrix esistente su un homeserver differente.",
|
||||||
|
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "Puoi anche impostare un server di identità personalizzato, ma non sarai in grado di invitare utenti via email o di essere invitato via email.",
|
||||||
|
"Sign In": "Accedi",
|
||||||
|
"Create Account": "Crea account",
|
||||||
|
"Need help?": "Serve aiuto?",
|
||||||
|
"Explore rooms": "Esplora stanze",
|
||||||
|
"Room Directory": "Elenco stanze"
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,9 +7,9 @@
|
||||||
"Unknown device": "Onbekend apparaat",
|
"Unknown device": "Onbekend apparaat",
|
||||||
"You need to be using HTTPS to place a screen-sharing call.": "U moet HTTPS gebruiken om een oproep met schermdelen te kunnen starten.",
|
"You need to be using HTTPS to place a screen-sharing call.": "U moet HTTPS gebruiken om een oproep met schermdelen te kunnen starten.",
|
||||||
"Welcome to Riot.im": "Welkom bij Riot.im",
|
"Welcome to Riot.im": "Welkom bij Riot.im",
|
||||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentaliseerd en versleuteld chatten & samenwerken mogelijk gemaakt door [matrix]",
|
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Gedecentraliseerd en versleuteld chatten & samenwerken mogelijk gemaakt door [matrix]",
|
||||||
"Search the room directory": "De kamerlijst doorzoeken",
|
"Search the room directory": "De gesprekscatalogus doorzoeken",
|
||||||
"Chat with Riot Bot": "Met Riot Bot chatten",
|
"Chat with Riot Bot": "Chatten met Riot-robot",
|
||||||
"Get started with some tips from Riot Bot!": "Begin met enkele tips van Riot Bot!",
|
"Get started with some tips from Riot Bot!": "Begin met enkele tips van Riot Bot!",
|
||||||
"General discussion about Matrix and Riot": "Algemene discussie over Matrix en Riot",
|
"General discussion about Matrix and Riot": "Algemene discussie over Matrix en Riot",
|
||||||
"Discussion of all things Matrix!": "Discussie over alles wat met Matrix te maken heeft!",
|
"Discussion of all things Matrix!": "Discussie over alles wat met Matrix te maken heeft!",
|
||||||
|
@ -35,5 +35,12 @@
|
||||||
"Dev chat for the Riot/Web dev team": "Dev-chat voor het Riot/Web ontwikkelteam",
|
"Dev chat for the Riot/Web dev team": "Dev-chat voor het Riot/Web ontwikkelteam",
|
||||||
"Dev chat for the Dendrite dev team": "Dev-chat voor het Dendrite-ontwikkelteam",
|
"Dev chat for the Dendrite dev team": "Dev-chat voor het Dendrite-ontwikkelteam",
|
||||||
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Je kan de custom serveropties gebruiken om op andere Matrix-servers in te loggen door een andere thuisserver-URL op te geven.<br/> Dit laat je toe om Riot te gebruiken met een bestaand Matrix-account op een andere thuisserver.<br/><br/>Je kan ook een aangepaste-identiteitsserver opzetten maar dan kan je geen gebruikers uitnodigen via hun e-mailadres, of zelf uitgenodigd worden via je e-mailadres.",
|
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Je kan de custom serveropties gebruiken om op andere Matrix-servers in te loggen door een andere thuisserver-URL op te geven.<br/> Dit laat je toe om Riot te gebruiken met een bestaand Matrix-account op een andere thuisserver.<br/><br/>Je kan ook een aangepaste-identiteitsserver opzetten maar dan kan je geen gebruikers uitnodigen via hun e-mailadres, of zelf uitgenodigd worden via je e-mailadres.",
|
||||||
"Co-ordination for Riot translators": "Coördinatie voor Riot vertalers"
|
"Co-ordination for Riot translators": "Coördinatie voor Riot vertalers",
|
||||||
|
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "U kunt de aangepaste serverinstellingen gebruiken om u aan te melden bij andere Matrix-servers, door een andere thuisserver-URL in te voeren. Dit laat u toe Riot te gebruiken met een bestaande Matrix-account bij een andere thuisserver.",
|
||||||
|
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "U kunt ook een aangepaste identiteitsserver instellen, maar u zult geen gebruikers kunnen uitnodigen via e-mail, of zelf via e-mail uitgenodigd worden.",
|
||||||
|
"Sign In": "Aanmelden",
|
||||||
|
"Create Account": "Account aanmaken",
|
||||||
|
"Need help?": "Hulp nodig?",
|
||||||
|
"Explore rooms": "Kamers ontdekken",
|
||||||
|
"Room Directory": "Gesprekscatalogus"
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,5 +35,12 @@
|
||||||
"Co-ordination for Riot translators": "Coordonare pentru translatorii Riot",
|
"Co-ordination for Riot translators": "Coordonare pentru translatorii Riot",
|
||||||
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s pe %(osName)s",
|
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s pe %(osName)s",
|
||||||
"You need to be using HTTPS to place a screen-sharing call.": "Trebuie să folosești HTTPS pentru a plasa un apel de tip screen-sharing.",
|
"You need to be using HTTPS to place a screen-sharing call.": "Trebuie să folosești HTTPS pentru a plasa un apel de tip screen-sharing.",
|
||||||
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Poți folosi opțiunile server personalizate pentru a te conecta la alte servere Matrix prin specificarea unui URL de tip Home server diferit.<br/>Acestă opțiune îți permite să utilizezi Riot cu un cont existent pe un home server diferit.<br/><br/>Poți folosi și un server de identitate personalizat, dar nu vei putea invita alți utilizatori prin adresa de email sau să fii tu însuți invitat prim email."
|
"You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.<br/>This allows you to use Riot with an existing Matrix account on a different home server.<br/><br/>You can also set a custom identity server but you won't be able to invite users by email address, or be invited by email address yourself.": "Poți folosi opțiunile server personalizate pentru a te conecta la alte servere Matrix prin specificarea unui URL de tip Home server diferit.<br/>Acestă opțiune îți permite să utilizezi Riot cu un cont existent pe un home server diferit.<br/><br/>Poți folosi și un server de identitate personalizat, dar nu vei putea invita alți utilizatori prin adresa de email sau să fii tu însuți invitat prim email.",
|
||||||
|
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Puteți utiliza opțiunile personalizate ale serverului pentru a vă conecta la alte servere Matrix specificând o adresă URL diferită pentru homeserver. Acest lucru vă permite să utilizați Riot cu un cont Matrix existent pe un alt server de domiciliu.",
|
||||||
|
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "De asemenea, puteți seta un server de identitate personalizat, dar nu veți putea să invitați utilizatorii pe adresa de e-mail sau să vă invitați personal pe adresa de e-mail.",
|
||||||
|
"Sign In": "Autentificare",
|
||||||
|
"Create Account": "Înregistare",
|
||||||
|
"Need help?": "Ai nevoie de ajutor?",
|
||||||
|
"Explore rooms": "Explorează camerele",
|
||||||
|
"Room Directory": "Lista de camere"
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,5 +35,12 @@
|
||||||
"Contributing code to Matrix and Riot": "Prispievanie kódu projektom Matrix a Riot",
|
"Contributing code to Matrix and Riot": "Prispievanie kódu projektom Matrix a Riot",
|
||||||
"Dev chat for the Riot/Web dev team": "Diskusia pre tím vývojárov Riot/Web",
|
"Dev chat for the Riot/Web dev team": "Diskusia pre tím vývojárov Riot/Web",
|
||||||
"Dev chat for the Dendrite dev team": "Diskusia pre tím vývojárov Dendrite",
|
"Dev chat for the Dendrite dev team": "Diskusia pre tím vývojárov Dendrite",
|
||||||
"Co-ordination for Riot translators": "Koordinácia prekladov Riot"
|
"Co-ordination for Riot translators": "Koordinácia prekladov Riot",
|
||||||
|
"You can use the custom server options to sign into other Matrix servers by specifying a different homeserver URL. This allows you to use Riot with an existing Matrix account on a different homeserver.": "Môžete použiť vlastné možnosti servera na prihlásenie sa k ďalším serverom Matrix zadaním URL adresy domovského servera. Toto vám umožní použiť Riot na prihlásenie sa k existujúcemu Matrix účtu na inom domovskom servery.",
|
||||||
|
"You can also set a custom identity server, but you won't be able to invite users by email address, or be invited by email address yourself.": "Môžete tiež nastaviť vlastnú URL adresu servera totožností, potom ale nebudete môcť pozývať používateľov zadaním ich emailovej adresy a telefónneho čísla a ani ostatní nebudú môcť pozvať vás zadaním vašej emailovej adresy a telefónneho čísla.",
|
||||||
|
"Sign In": "Prihlásiť sa",
|
||||||
|
"Create Account": "Vytvoriť účet",
|
||||||
|
"Need help?": "Potrebujete pomoc?",
|
||||||
|
"Explore rooms": "Preskúmať miestnosti",
|
||||||
|
"Room Directory": "Adresár miestností"
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
|
@ -9,7 +9,7 @@
|
||||||
"Dismiss": "Mos e merr parasysh",
|
"Dismiss": "Mos e merr parasysh",
|
||||||
"powered by Matrix": "bazuar në Matrix",
|
"powered by Matrix": "bazuar në Matrix",
|
||||||
"Welcome to Riot.im": "Mirë se vini te Riot.im",
|
"Welcome to Riot.im": "Mirë se vini te Riot.im",
|
||||||
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Fjalosje & bashkëpunim i decentralizuar, i fshehtëzuar, bazuar në [matrix]",
|
"Decentralised, encrypted chat & collaboration powered by [matrix]": "Fjalosje & bashkëpunim të decentralizuar, të fshehtëzuar, bazuar në [matrix]",
|
||||||
"Search the room directory": "Kërkoni te drejtoria e dhomave",
|
"Search the room directory": "Kërkoni te drejtoria e dhomave",
|
||||||
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Ka tashmë plot dhoma në Matrix, të lidhura me rrjete ekzistues (Slack, IRC, Gitter, etj) ose të pavarur. Hidhini një sy listës!",
|
"Lots of rooms already exist in Matrix, linked to existing networks (Slack, IRC, Gitter etc) or independent. Check out the directory!": "Ka tashmë plot dhoma në Matrix, të lidhura me rrjete ekzistues (Slack, IRC, Gitter, etj) ose të pavarur. Hidhini një sy listës!",
|
||||||
"Chat with Riot Bot": "Fjalosuni me Robotin Riot",
|
"Chat with Riot Bot": "Fjalosuni me Robotin Riot",
|
||||||
|
|
|
@ -272,7 +272,7 @@ async function loadApp() {
|
||||||
const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
||||||
const isAndroid = /Android/.test(navigator.userAgent);
|
const isAndroid = /Android/.test(navigator.userAgent);
|
||||||
if (isIos || isAndroid) {
|
if (isIos || isAndroid) {
|
||||||
if (!document.cookie.split(';').some((c) => c.startsWith('mobile_redirect_to_guide'))) {
|
if (document.cookie.indexOf("riot_mobile_redirect_to_guide=false") === -1) {
|
||||||
window.location = "mobile_guide/";
|
window.location = "mobile_guide/";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,8 @@
|
||||||
import {getVectorConfig} from '../getconfig';
|
import {getVectorConfig} from '../getconfig';
|
||||||
|
|
||||||
function onBackToRiotClick() {
|
function onBackToRiotClick() {
|
||||||
document.cookie = 'mobile_redirect_to_guide=false;path=/';
|
// Cookie should expire in 4 hours
|
||||||
|
document.cookie = 'riot_mobile_redirect_to_guide=false;path=/;max-age=14400';
|
||||||
window.location.href = '../';
|
window.location.href = '../';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -293,12 +293,19 @@ describe('loading:', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("MatrixClient rehydrated from stored credentials:", function() {
|
describe("MatrixClient rehydrated from stored credentials:", function() {
|
||||||
beforeEach(function() {
|
beforeEach(async function() {
|
||||||
localStorage.setItem("mx_hs_url", "http://localhost" );
|
localStorage.setItem("mx_hs_url", "http://localhost" );
|
||||||
localStorage.setItem("mx_is_url", "http://localhost" );
|
localStorage.setItem("mx_is_url", "http://localhost" );
|
||||||
localStorage.setItem("mx_access_token", "access_token");
|
localStorage.setItem("mx_access_token", "access_token");
|
||||||
localStorage.setItem("mx_user_id", "@me:localhost");
|
localStorage.setItem("mx_user_id", "@me:localhost");
|
||||||
localStorage.setItem("mx_last_room_id", "!last_room:id");
|
localStorage.setItem("mx_last_room_id", "!last_room:id");
|
||||||
|
|
||||||
|
// Create a crypto store as well to satisfy storage consistency checks
|
||||||
|
const cryptoStore = new jssdk.IndexedDBCryptoStore(
|
||||||
|
indexedDB,
|
||||||
|
"matrix-js-sdk:crypto",
|
||||||
|
);
|
||||||
|
await cryptoStore._connect();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('shows the last known room by default', function() {
|
it('shows the last known room by default', function() {
|
||||||
|
|
24
yarn.lock
24
yarn.lock
|
@ -5732,10 +5732,10 @@ math-random@^1.0.1:
|
||||||
resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac"
|
resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac"
|
||||||
integrity sha1-izqsWIuKZuSXXjzepn97sylgH6w=
|
integrity sha1-izqsWIuKZuSXXjzepn97sylgH6w=
|
||||||
|
|
||||||
matrix-js-sdk@1.0.3, matrix-js-sdk@^1.0.3:
|
matrix-js-sdk@1.0.4:
|
||||||
version "1.0.3"
|
version "1.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/matrix-js-sdk/-/matrix-js-sdk-1.0.3.tgz#d4cc46c4dc80278b78f8e0664741b08fcc395c79"
|
resolved "https://registry.yarnpkg.com/matrix-js-sdk/-/matrix-js-sdk-1.0.4.tgz#dbfa8399f750a23b020c1ec8f037a2f5c36d4672"
|
||||||
integrity sha512-YpF4NvnG2cttRmTPJ9yqs/KwlBXW15O7+nNMs1FKj1CqdW1Phwb0fcqvahjPgmfXyn5DFzU3Deiv9aNgDIlIog==
|
integrity sha512-FPx7U1a0SmLbDXhXlR4XHlC+FVKTnK2/+ZBtyOWGLi3nxw4x8hCSSzJ82gzStya1qvhHvbf/y7eblYFVE1l7SQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
another-json "^0.2.0"
|
another-json "^0.2.0"
|
||||||
babel-runtime "^6.26.0"
|
babel-runtime "^6.26.0"
|
||||||
|
@ -5757,10 +5757,10 @@ matrix-mock-request@^1.2.3:
|
||||||
bluebird "^3.5.0"
|
bluebird "^3.5.0"
|
||||||
expect "^1.20.2"
|
expect "^1.20.2"
|
||||||
|
|
||||||
matrix-react-sdk@^1.0.6:
|
matrix-react-sdk@1.0.7:
|
||||||
version "1.0.6"
|
version "1.0.7"
|
||||||
resolved "https://registry.yarnpkg.com/matrix-react-sdk/-/matrix-react-sdk-1.0.6.tgz#5477cb6f20a5968394e46f55cd4345436fba6372"
|
resolved "https://registry.yarnpkg.com/matrix-react-sdk/-/matrix-react-sdk-1.0.7.tgz#4dc6db50f9bf3c6dd5c1fdea8fa3d4eec2e58125"
|
||||||
integrity sha512-qu+BY0I6qu2py8lzOZRPY2xOabXRrU/87dotx6MhyzWFKw+xQav0EggZJeKYtCAvuafS2zpPscTZX0/11Z3MuA==
|
integrity sha512-sJpu87itcAbMFaWeLEfpfNbQ4uJ+MIvmHw6RfbgHvBw4VtFAOgg/SypIoMjEEzk1KCgAUSV9k0CodwKsXHo0Jw==
|
||||||
dependencies:
|
dependencies:
|
||||||
babel-plugin-syntax-dynamic-import "^6.18.0"
|
babel-plugin-syntax-dynamic-import "^6.18.0"
|
||||||
babel-runtime "^6.26.0"
|
babel-runtime "^6.26.0"
|
||||||
|
@ -5786,7 +5786,7 @@ matrix-react-sdk@^1.0.6:
|
||||||
linkifyjs "^2.1.6"
|
linkifyjs "^2.1.6"
|
||||||
lodash "^4.13.1"
|
lodash "^4.13.1"
|
||||||
lolex "2.3.2"
|
lolex "2.3.2"
|
||||||
matrix-js-sdk "1.0.3"
|
matrix-js-sdk "1.0.4"
|
||||||
optimist "^0.6.1"
|
optimist "^0.6.1"
|
||||||
pako "^1.0.5"
|
pako "^1.0.5"
|
||||||
prop-types "^15.5.8"
|
prop-types "^15.5.8"
|
||||||
|
@ -6383,9 +6383,9 @@ obuf@^1.0.0, obuf@^1.1.2:
|
||||||
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
|
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
|
||||||
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
|
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
|
||||||
|
|
||||||
"olm@https://matrix.org/packages/npm/olm/olm-3.1.0-pre1.tgz":
|
"olm@https://packages.matrix.org/npm/olm/olm-3.1.0.tgz":
|
||||||
version "3.1.0-pre1"
|
version "3.1.0"
|
||||||
resolved "https://matrix.org/packages/npm/olm/olm-3.1.0-pre1.tgz#54f14fa901ff5c81db516b3b2adb294b91726eaa"
|
resolved "https://packages.matrix.org/npm/olm/olm-3.1.0.tgz#2c8fc2a42b7ea12febc31baa73ec03d9b601da16"
|
||||||
|
|
||||||
on-finished@~2.3.0:
|
on-finished@~2.3.0:
|
||||||
version "2.3.0"
|
version "2.3.0"
|
||||||
|
|
Loading…
Reference in New Issue