changeset 86:625ffdf6499d

web app
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 12 Mar 2025 12:26:19 -0600
parents 2158a5950fcd
children 246a792adedf
files src/about.html.luan src/account.html.luan src/images/icon.jpg src/lib/Shared.luan src/manifest.json
diffstat 5 files changed, 20 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/about.html.luan	Tue Mar 11 14:13:53 2025 -0600
+++ b/src/about.html.luan	Wed Mar 12 12:26:19 2025 -0600
@@ -20,13 +20,16 @@
 		<div content>
 			<h1>About Luan Chat</h1>
 
-			<p>This is a free web-based instant messaging service written for websites wanting to provide support through chat.  The other existing solutions are overcomplicated enterprise services that are often expensive.  All that is really needed is a simple general chat.  Each user gets a URL and other people can chat with the user through that URL.</p>
+			<p>This is a free web-based instant messaging service written for websites wanting to provide support through chat.  The other existing solutions are overcomplicated enterprise services that are often expensive.  All that is really needed is a simple general chat.  Each user gets a URL and other people can chat with the user through that URL.  A website can use this to link to chat support.</p>
+
+			<p>Skype is being discontinued and Luan Chat was designed to be like Skype.  So Skype users can switch to Luan Chat as a replacement for Skype.</p>
 
 			<p>As a simple service, this doesn't implement features that can be handled elsewhere.  In particular it doesn't provide:</p>
 			<ul>
-				<li>file transfer - Use email instead.</li>
-				<li>voice, video, and screen share - Use <a href="https://talky.io/">Talky</a> or <a href="https://www.zoom.com/">Zoom</a> instead.  With Talky, you can set a Talky URL to be your voice URL for easy access.  With Zoom, post a meeting URL in chat.</li>
+				<li>app notifications - If email notification is enough, just use a regular email address for notification.  But if you want app notification, use the email of a service like <a href="https://pushover.net/">Pushover</a>.</li>
+				<li>voice, video, and screen share - Use a service like <a href="https://whereby.com/">Whereby</a> that you can link to.</li>
 			</ul>
+			<p>You can integrate these external services from the <a href="/account.html">account page</a>.</p>
 
 			<p>For questions, <a href="https://chat.luan.software/chat?with=fschmidt@gmail.com">contact me</a>.  This is an open <a href="https://hg.reactionary.software/repo/chat/">source</a> project.</p>
 		</div>
--- a/src/account.html.luan	Tue Mar 11 14:13:53 2025 -0600
+++ b/src/account.html.luan	Wed Mar 12 12:26:19 2025 -0600
@@ -172,7 +172,7 @@
 			<h2>Edit Notification</h2>
 			<form action="javascript:saveNotify()">
 				<p>
-					<label>Send notifications to</label><br> 
+					<label>Email addresses to send notifications to</label><br> 
 					<input type=email multiple name=notify_email><br>
 					<span note>Leave blank for no notifications.  Use <a href="https://pushover.net/">Pushover</a> for app notification.</span>
 				</p>
Binary file src/images/icon.jpg has changed
--- a/src/lib/Shared.luan	Tue Mar 11 14:13:53 2025 -0600
+++ b/src/lib/Shared.luan	Wed Mar 12 12:26:19 2025 -0600
@@ -46,6 +46,7 @@
 function Shared.head()
 %>
 		<meta name="viewport" content="width=device-width, initial-scale=1">
+		<link rel="manifest" href="/manifest.json" />
 		<title><%=title%></title>
 		<style>
 			@import "/site.css?s=<%=started%>";
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/manifest.json	Wed Mar 12 12:26:19 2025 -0600
@@ -0,0 +1,12 @@
+{
+	"name": "Luan Chat",
+	"start_url": "/",
+	"display": "standalone",
+	"icons": [
+		{
+			"src": "/images/icon.jpg",
+			"type": "image/jpg",
+			"sizes": "512x512"
+		}
+	]
+}