mirror of
https://github.com/ianramzy/decentralized-video-chat.git
synced 2024-11-14 22:29:20 +08:00
rebrand to zipcall.io
This commit is contained in:
parent
53604d4b49
commit
255c0dc87f
@ -1,4 +1,4 @@
|
|||||||
# Decentralized Video Chat
|
# Zipcall - Decentralized Video Chat
|
||||||
|
|
||||||
[![Author](https://img.shields.io/badge/Author-ianramzy-brightgreen.svg)](https://ianramzy.com)
|
[![Author](https://img.shields.io/badge/Author-ianramzy-brightgreen.svg)](https://ianramzy.com)
|
||||||
![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
|
![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
|
||||||
@ -6,12 +6,14 @@
|
|||||||
![GitHub repo size](https://img.shields.io/github/repo-size/ianramzy/decentralized-video-chat.svg)
|
![GitHub repo size](https://img.shields.io/github/repo-size/ianramzy/decentralized-video-chat.svg)
|
||||||
[![Repo Link](https://img.shields.io/badge/Repo-Link-black.svg)](https://github.com/ianramzy/decentralized-video-chat)
|
[![Repo Link](https://img.shields.io/badge/Repo-Link-black.svg)](https://github.com/ianramzy/decentralized-video-chat)
|
||||||
|
|
||||||
# https://neonchat.io
|
# https://zipcall.io
|
||||||
|
|
||||||
Decentralized video chat platform powered by WebRTC using Twilio STUN/TURN infrastructure.
|
Decentralized video chat platform powered by WebRTC using Twilio STUN/TURN infrastructure.
|
||||||
Neon Chat provides video quality and latency simply not available with traditional
|
Zipcall provides video quality and latency simply not available with traditional
|
||||||
technology.
|
technology.
|
||||||
|
|
||||||
|
# Fixme
|
||||||
|
|
||||||
![screenshot](public/images/githubpreview.png "Video Calling")
|
![screenshot](public/images/githubpreview.png "Video Calling")
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<title>Neon Chat</title>
|
<title>ZipChat</title>
|
||||||
<link rel="shortcut icon" href="/images/logo.svg" />
|
<link rel="shortcut icon" href="/images/logo.svg" />
|
||||||
<link rel="stylesheet" href="../css/chat.css" />
|
<link rel="stylesheet" href="../css/chat.css" />
|
||||||
<link rel="stylesheet" href="../css/snackbar.css" />
|
<link rel="stylesheet" href="../css/snackbar.css" />
|
||||||
@ -12,16 +12,13 @@
|
|||||||
></script>
|
></script>
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
|
||||||
<meta property="og:title" content="Join your friends call - Neonchat" />
|
<meta property="og:title" content="Join your friends call - Zipcall" />
|
||||||
<meta
|
<meta
|
||||||
property="og:description"
|
property="og:description"
|
||||||
content="Click the link to join this chat room using Neonchat"
|
content="Click the link to join this chat room using Zipcall"
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta property="og:image" content="https://zipcall.io/images/preview.png" />
|
||||||
property="og:image"
|
<meta property="og:url" content="https://zipcall.io/" />
|
||||||
content="https://neonchat.io/images/preview.png"
|
|
||||||
/>
|
|
||||||
<meta property="og:url" content="https://neonchat.io/" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
<script
|
<script
|
||||||
async
|
async
|
||||||
@ -42,7 +39,7 @@
|
|||||||
<div id="header">
|
<div id="header">
|
||||||
<a href="/">
|
<a href="/">
|
||||||
<img src="/images/logo.svg" alt="Neon" width="48" height="48" />
|
<img src="/images/logo.svg" alt="Neon" width="48" height="48" />
|
||||||
<p>Neon Chat</p>
|
<p>Zipcall</p>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 56 KiB |
@ -750,12 +750,12 @@ function startUp() {
|
|||||||
browserName === "MSIE"
|
browserName === "MSIE"
|
||||||
) {
|
) {
|
||||||
alert(
|
alert(
|
||||||
"Your browser doesn't support Neon Chat. Please use Chrome or Firefox."
|
"Your browser doesn't support Zipcall. Please use Chrome or Firefox."
|
||||||
);
|
);
|
||||||
window.location.href = "/";
|
window.location.href = "/";
|
||||||
}
|
}
|
||||||
|
|
||||||
document.title = "Neon Chat - " + url.substring(url.lastIndexOf("/") + 1);
|
document.title = "Zipcall - " + url.substring(url.lastIndexOf("/") + 1);
|
||||||
|
|
||||||
// get webcam on load
|
// get webcam on load
|
||||||
VideoChat.requestMediaStream();
|
VideoChat.requestMediaStream();
|
||||||
|
@ -4,21 +4,18 @@
|
|||||||
<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" />
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<title>Neon Chat</title>
|
<title>Zipcall</title>
|
||||||
<link rel="stylesheet" href="css/landing.css" />
|
<link rel="stylesheet" href="css/landing.css" />
|
||||||
<link rel="shortcut icon" href="images/logo.svg" />
|
<link rel="shortcut icon" href="images/logo.svg" />
|
||||||
<meta property="og:title" content="Neonchat - Decentralized video calls" />
|
<meta property="og:title" content="Zipcall - Decentralized video calls" />
|
||||||
<meta
|
<meta
|
||||||
property="og:description"
|
property="og:description"
|
||||||
content="Decentralized video
|
content="Decentralized video
|
||||||
calling provides real-time HD quality and latency simply
|
calling provides real-time HD quality and latency simply
|
||||||
not available with traditional technology."
|
not available with traditional technology."
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta property="og:image" content="https://zipcall.io/images/preview.png" />
|
||||||
property="og:image"
|
<meta property="og:url" content="https://zipcall.io/" />
|
||||||
content="https://neonchat.io/images/preview.png"
|
|
||||||
/>
|
|
||||||
<meta property="og:url" content="https://neonchat.io/" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
<script
|
<script
|
||||||
async
|
async
|
||||||
@ -74,7 +71,7 @@
|
|||||||
class="mt-0 mb-16 reveal-from-bottom"
|
class="mt-0 mb-16 reveal-from-bottom"
|
||||||
data-reveal-delay="150"
|
data-reveal-delay="150"
|
||||||
>
|
>
|
||||||
Neon Chat.<br />The most advanced video chat ever created.
|
Zipcall.<br />The most advanced video chat ever created.
|
||||||
</h1>
|
</h1>
|
||||||
<p
|
<p
|
||||||
class="mt-0 mb-32 reveal-from-bottom"
|
class="mt-0 mb-32 reveal-from-bottom"
|
||||||
@ -123,10 +120,10 @@
|
|||||||
>
|
>
|
||||||
<h2 class="mt-0 mb-16">See the whole picture</h2>
|
<h2 class="mt-0 mb-16">See the whole picture</h2>
|
||||||
<p class="m-0">
|
<p class="m-0">
|
||||||
Neon Chat is built radically different. We ditched slow
|
Zipcall is built radically different. We ditched slow bulky
|
||||||
bulky servers, opting for decentralized peer to peer
|
servers, opting for decentralized peer to peer calling.
|
||||||
calling. Maximum video quality and lowest latency. Its good,
|
Maximum video quality and lowest latency. Its good, trust
|
||||||
trust us.
|
us.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -212,7 +209,7 @@
|
|||||||
<h4 class="mt-0 mb-8">No Download Required</h4>
|
<h4 class="mt-0 mb-8">No Download Required</h4>
|
||||||
<p class="m-0 text-sm">
|
<p class="m-0 text-sm">
|
||||||
No download means you can get back to what matters most.
|
No download means you can get back to what matters most.
|
||||||
Just open Neon Chats in Chrome or Firefox.
|
Just open Zipcalls in Chrome or Firefox.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -304,7 +301,7 @@
|
|||||||
Software Engineer
|
Software Engineer
|
||||||
</div>
|
</div>
|
||||||
<p class="m-0 text-sm">
|
<p class="m-0 text-sm">
|
||||||
Connecting the world together one call at a time.
|
Connecting the world together one Zipcall at a time.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -389,7 +386,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="footer-copyright">
|
<div class="footer-copyright">
|
||||||
© 2020 Neon Chat, all rights reserved
|
© 2020 Zipcall, all rights reserved
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -4,21 +4,18 @@
|
|||||||
<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" />
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
<title>Neon Chat</title>
|
<title>Zipcall</title>
|
||||||
<link rel="stylesheet" href="css/landing.css" />
|
<link rel="stylesheet" href="css/landing.css" />
|
||||||
<link rel="shortcut icon" href="images/logo.svg" />
|
<link rel="shortcut icon" href="images/logo.svg" />
|
||||||
<meta property="og:title" content="Neonchat - Decentralized video calls" />
|
<meta property="og:title" content="Zipcall - Decentralized video calls" />
|
||||||
<meta
|
<meta
|
||||||
property="og:description"
|
property="og:description"
|
||||||
content="Decentralized video
|
content="Decentralized video
|
||||||
calling provides real-time HD quality and latency simply
|
calling provides real-time HD quality and latency simply
|
||||||
not available with traditional technology."
|
not available with traditional technology."
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta property="og:image" content="https://zipcall.io/images/preview.png" />
|
||||||
property="og:image"
|
<meta property="og:url" content="https://zipcall.io/" />
|
||||||
content="https://neonchat.io/images/preview.png"
|
|
||||||
/>
|
|
||||||
<meta property="og:url" content="https://neonchat.io/" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
<script
|
<script
|
||||||
async
|
async
|
||||||
@ -180,7 +177,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="footer-copyright">
|
<div class="footer-copyright">
|
||||||
© 2020 Neon Chat, all rights reserved
|
© 2020 Zipcall Chat, all rights reserved
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user