mirror of
https://github.com/mollyim/mollyim.github.io.git
synced 2025-05-16 15:10:44 +01:00
Add oldsite to molly.im/OLDSITE
This commit is contained in:
parent
b8bdfde272
commit
fcc19da9b8
9 changed files with 375 additions and 0 deletions
14
static/OLDSITE/README.md
Normal file
14
static/OLDSITE/README.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Website for molly.im
|
||||
|
||||
This is the new official website for the molly project, a hardened signal fork.
|
||||
|
||||
- Gives users a breif overview of what molly is and what it does.
|
||||
- Gives users F-Droid link for both Molly and Molly-FOSS.
|
||||
- Gives users a direct download link to the molly github releases APK's.
|
||||
- Clearly shows users the difference between Molly and Molly-FOSS.
|
||||
- Gives users a FAQ's page, allowing them to find more information about specific functionalities in molly.
|
||||
|
||||
### Credits:
|
||||
This site was written by Ben Armstead: [benarmstead.co.uk](https://benarmstead.co.uk) for the molly project.
|
||||
|
||||
Thanks to valldrac for all his great work in creating and maintaining Molly!
|
113
static/OLDSITE/css/index.css
Normal file
113
static/OLDSITE/css/index.css
Normal file
|
@ -0,0 +1,113 @@
|
|||
/***Makes picture scale to 1.3x on mouse hover**/
|
||||
img:hover {
|
||||
position: relative;
|
||||
z-index: 9999;
|
||||
transform: scale(1.3);
|
||||
transition: transform .2s;
|
||||
margin: 0 auto;
|
||||
}
|
||||
/***Scrollbar start***/
|
||||
* {
|
||||
scrollbar-color: #ccc #7a57ee;
|
||||
}
|
||||
|
||||
/*Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 12px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #7a57ee;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #ccc;
|
||||
}
|
||||
/***Scrollbar end***/
|
||||
|
||||
body {
|
||||
color: white;
|
||||
background: #7a57ee;
|
||||
/*molly background #7a57ee*/
|
||||
text-align: center;
|
||||
|
||||
font-family:monospace;
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
.github-title {
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: darkgrey;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
color: grey;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: darkgrey;
|
||||
}
|
||||
|
||||
hr {
|
||||
width:50%;
|
||||
border-color: #ccc;
|
||||
background-color: #ccc;
|
||||
}
|
||||
|
||||
table {
|
||||
font-family: arial, sans-serif;
|
||||
border-collapse: collapse;
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
td, th {
|
||||
border: 1px solid #dddddd;
|
||||
text-align: center;
|
||||
padding: 8px;
|
||||
}
|
||||
ul {
|
||||
display: inline-block;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.button {
|
||||
border: none;
|
||||
color: white;
|
||||
background-color: #7a67ee;
|
||||
|
||||
padding: 15px 35px;
|
||||
text-align: center;
|
||||
|
||||
font-size: 16px;
|
||||
margin: 4px 2px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.about {
|
||||
display: inline-block;
|
||||
text-align: left;
|
||||
max-width: 800px;
|
||||
margin:0 auto;
|
||||
}
|
||||
|
||||
.center-table {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.credits-footer {
|
||||
width: 100%;
|
||||
left: 0;
|
||||
height: 150px;
|
||||
color: white;
|
||||
background-color: #1d2021;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
}
|
BIN
static/OLDSITE/icons/favicon.png
Normal file
BIN
static/OLDSITE/icons/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.8 KiB |
BIN
static/OLDSITE/icons/get-it-on-fdroid.png
Normal file
BIN
static/OLDSITE/icons/get-it-on-fdroid.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
static/OLDSITE/icons/github.png
Normal file
BIN
static/OLDSITE/icons/github.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
127
static/OLDSITE/index.html
Normal file
127
static/OLDSITE/index.html
Normal file
|
@ -0,0 +1,127 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Molly</title>
|
||||
<link rel="icon" href="icons/favicon.png" type="image/x-icon">
|
||||
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<meta name="description" content="A hardened signal fork">
|
||||
<meta property="og:title" content="Molly.im" />
|
||||
<meta property="og:url" content="https://molly.im" />
|
||||
<meta property="og:image" content="icons/favicon.png">
|
||||
|
||||
<link rel='stylesheet' type='text/css' href='css/index.css'>
|
||||
</head>
|
||||
|
||||
<div class="github-title">
|
||||
<h1><a href="https://github.com/mollyim/mollyim-android"><img style="height: 24px; width: 24px;" src="icons/github.png"> Github</a></h1>
|
||||
</div>
|
||||
|
||||
<body>
|
||||
<div class="head">
|
||||
|
||||
<a href="fdroidrepos://molly.im/fdroid/foss/repo?fingerprint=5198DAEF37FC23C14D5EE32305B2AF45787BD7DF2034DE33AD302BDB3446DF74"><img src="icons/favicon.png" alt="Molly Icon"></a>
|
||||
<h1 id="title" style="text-decoration: underline;"></h1>
|
||||
<script type="text/javascript" src="js/slowMessage.js"></script>
|
||||
|
||||
<noscript>
|
||||
<h1 style="text-decoration: underline;">Molly.im</h1>
|
||||
</noscript>
|
||||
|
||||
<h2>A hardened signal fork.</h2>
|
||||
<hr>
|
||||
<h2><a href="index.html">Home</a> | <a href="pages/faq.html">FAQ</a></h2>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="get-on-fdroid">
|
||||
<div class="column">
|
||||
<h3>Molly FOSS</h3>
|
||||
<p>Molly sans non-free dependancies</p>
|
||||
<a href="fdroidrepos://molly.im/fdroid/foss/repo?fingerprint=5198DAEF37FC23C14D5EE32305B2AF45787BD7DF2034DE33AD302BDB3446DF74"><img src="icons/get-it-on-fdroid.png" alt="Get it on F-Droid" width="323" height="125"></a>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="column">
|
||||
<h3>Molly</h3>
|
||||
<p>Molly including proprietary dependancies</p>
|
||||
<a href="fdroidrepos://molly.im/fdroid/repo?fingerprint=3B7E93B1FE32C6E35A93D6DDFC5AFBEB1239A7C6EA6AF20FF33ED53CDC38B04A"><img src="icons/get-it-on-fdroid.png" alt="Get it on F-Droid" width="323" height="125"></a>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="about">
|
||||
|
||||
<h2 style="text-align: center;">Download</h2>
|
||||
<p>The app can be downloaded by clicking the "Get it on F-Droid" button of your chosing above.</p>
|
||||
<p>Alternitavely, you can directly download the APK's below.</p>
|
||||
|
||||
<div id="apk-downloads" style="text-align: center;">
|
||||
<p><a href="https://github.com/mollyim/mollyim-android/releases/latest">
|
||||
<button class="button molly-foss">Molly APK</button>
|
||||
</a></p>
|
||||
|
||||
<hr>
|
||||
<h2 style="text-align: center;">Features</h2>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="features">
|
||||
<ul>
|
||||
<li>Protects database with <a href="https://github.com/mollyim/mollyim-android/wiki/Data-Encryption-At-Rest">passphrase encryption</a></li>
|
||||
<li>Locks the app automatically after you go a set time without unlocking your device</li>
|
||||
<li>Securely shreds sensitive data from RAM</li>
|
||||
<li>Allows you to delete contacts and stop sharing your profile</li>
|
||||
<li>Clears call notifications together with expiring messages</li>
|
||||
<li>Disables debug logs</li>
|
||||
<li>Supports SOCKS proxy and Tor via Orbot</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<p>Besides that, you will find all the features of Signal plus some minor tweaks and improvements. The only exception is the SMS integration, that is incompatible with Molly security enhancements.</p>
|
||||
|
||||
|
||||
<hr>
|
||||
<h2 style="text-align: center;">Free and Open-Source</h2>
|
||||
<p>There are 2 versions of Molly. Molly, and Molly-FOSS</p>
|
||||
<p>Molly and Signal use googles proprietary code. However Molly-FOSS is an effort of making it 100% free/open-source.</p>
|
||||
|
||||
<table class="center-table">
|
||||
<p>Status of the dependencies:</p>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Feature</th>
|
||||
<th>Molly-FOSS</th>
|
||||
<th>Molly</th>
|
||||
<th>Signal</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Push notifications <sup>(1)</sup></td>
|
||||
<td>✘</td>
|
||||
<td>⚠️ (FCM)</td>
|
||||
<td>⚠️ (FCM)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Websocket notifications <sup>(2)</sup></td>
|
||||
<td>✔️</td>
|
||||
<td>✔️</td>
|
||||
<td>✔️</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Location provider</td>
|
||||
<td>✘</td>
|
||||
<td>⚠️ (Google Maps)</td>
|
||||
<td>⚠️ (Google Maps)</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<hr>
|
||||
<footer>
|
||||
<div class="credits-footer">
|
||||
<p>Site written by Ben Armstead for the Molly project. <a href="benarmstead.co.uk">benarmstead.co.uk</a></p>
|
||||
<p>Thanks to valldrac for all his great work in creating and maintaining Molly!</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
12
static/OLDSITE/js/slowMessage.js
Normal file
12
static/OLDSITE/js/slowMessage.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
var i = 0;
|
||||
var message = "Molly.im";
|
||||
|
||||
function slowTitle() {
|
||||
if (i < message.length) {
|
||||
document.getElementById("title").innerHTML += message.charAt(i);
|
||||
i++;
|
||||
setTimeout(slowTitle, 110);
|
||||
}
|
||||
}
|
||||
|
||||
slowTitle();
|
31
static/OLDSITE/pages/donate.html
Normal file
31
static/OLDSITE/pages/donate.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Molly</title>
|
||||
<link rel="icon" href="icons/favicon.png" type="image/x-icon">
|
||||
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<link rel='stylesheet' type='text/css' href='../css/index.css'>
|
||||
</head>
|
||||
|
||||
<div class="github-title">
|
||||
<h1><a href="https://github.com/mollyim/mollyim-android"><img style="height: 24px; width: 24px;" src="../icons/github.png"> Github</a></h1>
|
||||
</div>
|
||||
|
||||
<body>
|
||||
<div class="head">
|
||||
<a href="fdroidrepos://molly.im/fdroid/foss/repo?fingerprint=5198DAEF37FC23C14D5EE32305B2AF45787BD7DF2034DE33AD302BDB3446DF74"><img src="../icons/favicon.png" alt="Molly Icon"></a>
|
||||
<h1 id="title" style="text-decoration: underline;"></h1>
|
||||
<script type="text/javascript" src="../js/slowMessage.js"></script>
|
||||
|
||||
<noscript>
|
||||
<h1 style="text-decoration: underline;">Molly.im</h1>
|
||||
</noscript>
|
||||
|
||||
<h2>A hardened signal fork.</h2>
|
||||
<hr>
|
||||
<h2><a href="../index.html">Home</a> | <a href="faq.html">FAQ</a></h2>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
78
static/OLDSITE/pages/faq.html
Normal file
78
static/OLDSITE/pages/faq.html
Normal file
|
@ -0,0 +1,78 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Molly</title>
|
||||
<link rel="icon" href="icons/favicon.png" type="image/x-icon">
|
||||
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<link rel='stylesheet' type='text/css' href='../css/index.css'>
|
||||
</head>
|
||||
|
||||
<div class="github-title">
|
||||
<h1><a href="https://github.com/mollyim/mollyim-android"><img style="height: 24px; width: 24px;" src="../icons/github.png"> Github</a></h1>
|
||||
</div>
|
||||
|
||||
<body>
|
||||
<div class="head">
|
||||
<a href="fdroidrepos://molly.im/fdroid/foss/repo?fingerprint=5198DAEF37FC23C14D5EE32305B2AF45787BD7DF2034DE33AD302BDB3446DF74"><img src="../icons/favicon.png" alt="Molly Icon"></a>
|
||||
<h1 id="title" style="text-decoration: underline;"></h1>
|
||||
<script type="text/javascript" src="../js/slowMessage.js"></script>
|
||||
|
||||
<noscript>
|
||||
<h1 style="text-decoration: underline;">Molly.im</h1>
|
||||
</noscript>
|
||||
|
||||
<h2>A hardened signal fork.</h2>
|
||||
<hr>
|
||||
<h2><a href="../index.html">Home</a> | <a href="faq.html">FAQ</a></h2>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<p><sup>(1)</sup> If you are running a custom ROM and the app fails to register with Play Services, try the FOSS flavor.<br/></p>
|
||||
<p><sup>(2)</sup> You may need to disable the system battery optimizations to receive notifications in background.</p>
|
||||
|
||||
<p>Molly and Signal apps can be installed on the same device. If you need a 2nd number to chat, you can use Molly along with Signal.</p>
|
||||
<p>However, you cannot use the same phone number on both apps at the same time. Only the last app to register will remain active, and the other will go offline. Remember that you are not limited to use only your main phone number, but also any number on you can receive SMS or phone calls at registration.</p>
|
||||
<h2>Compatibility with Signal</h2>
|
||||
<p>Molly clients can message signal clients.</p>
|
||||
<p>Molly can be installed alongside signal, however the same phone number cannot be used.</p>
|
||||
<hr>
|
||||
|
||||
<hr>
|
||||
<h2>Reproducible Builds</h2>
|
||||
<p>Anyone can run the build process again and reproduce the same APK as the release.</p>
|
||||
<p>Please check the guide in the <a href="https://github.com/mollyim/mollyim-android/blob/master/reproducible-builds">reproducible-builds</a> directory.</p>
|
||||
|
||||
<hr>
|
||||
<h2>Changelog</h2>
|
||||
<p>See the <a href="https://github.com/mollyim/mollyim-android/wiki/Changelog">Changelog</a> to view recent changes.</p>
|
||||
|
||||
<hr>
|
||||
<h2>License</h2>
|
||||
<p>License and legal notices in the original <a href="README-ORIG.md">README</a>.</p>
|
||||
|
||||
|
||||
|
||||
<h2>Backups</h2>
|
||||
<p>Backups are fully compatible. Signal <a href="https://support.signal.org/hc/en-us/articles/360007059752-Backup-and-Restore-Messages">backups</a> can be restored in Molly and the other way around. To do that, simply rename the backup file and copy it into the expected path, so the app can find the backup to restore during installation.</p>
|
||||
<p>The path within internal storage where backups are written by Signal:
|
||||
- <code>Signal/Backups/Signal-year-month-date-time.backup</code></p>
|
||||
<p>And Molly:
|
||||
- <code>Molly/Backups/Molly-year-month-date-time.backup</code></p>
|
||||
|
||||
<hr>
|
||||
<h2>Feedback</h2>
|
||||
<ul>
|
||||
<li><a href="https://github.com/mollyim/mollyim-android/issues">Submit bugs and feature requests</a></li>
|
||||
<li>Join the <a href="https://signal.group/#CjQKIPNndL413JiZ_2sYIQI5F1u0_ls0Y2g-7owwVg6A--EvEhCChPHcWgsy6He4jrteOlZ_">Signal Group</a></li>
|
||||
<li>Join us on the IRC channel <strong>#mollyim</strong> at <a href="https://webchat.freenode.net/?channels=%23mollyim">Freenode</a> and <a href="https://matrix.to/#/#freenode_#mollyim:matrix.org">Matrix</a></li>
|
||||
<li>Ask a question on the forum <a href="https://community.signalusers.org/">community.signalusers.org</a></li>
|
||||
</ul>
|
||||
<hr>
|
||||
<h2>Disclaimer</h2>
|
||||
<p>This project is <em>NOT</em> sponsored by Signal Messenger or Signal Foundation.</p>
|
||||
<p>The software is produced independently of Signal and carries no guarantee about quality, security or anything else. Use at your own risk.</p>
|
||||
-->
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue