5
0
mirror of https://github.com/cwinfo/envayasms.git synced 2024-11-15 04:40:26 +00:00
envayasms/history/index.html

143 lines
4.1 KiB
HTML
Raw Normal View History

2011-09-19 05:21:05 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="cache-control" content="no-cache, must-revalidate" >
<title>EnvayaSMS: History</title>
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
2011-09-19 05:21:05 +00:00
</head>
<body>
2011-09-23 00:25:32 +00:00
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
2011-09-19 05:21:05 +00:00
<div id="container">
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
2011-09-19 05:21:05 +00:00
<span class="small">
2011-09-23 00:25:32 +00:00
SMS gateway for Android
</span>
2011-09-19 05:21:05 +00:00
</h1>
2011-09-23 00:25:32 +00:00
<div class='menu' style='clear:both;padding-top:5px'>
<a href='/'>Home</a>
2011-09-19 05:21:05 +00:00
&middot;
<a href='/install/'>Install</a>
2011-09-19 05:21:05 +00:00
&middot;
<a href='/how/'>How it Works</a>
2011-09-19 05:21:05 +00:00
&middot;
<a href='/serverapi/'>API Reference</a>
2011-09-19 05:21:05 +00:00
&middot;
<a href='/faq/'>FAQ</a>
&middot;
<a class='active' href='/history/'>History</a>
&middot;
<a href='/community/'>Community</a>
2011-09-19 05:21:05 +00:00
</div>
2011-09-19 05:21:05 +00:00
<h2>History</h2>
2011-09-24 06:19:41 +00:00
Version 2.0-beta (2011/09/23)
2011-09-19 05:21:05 +00:00
<ul>
<li>
Enable sending more than Android's limit of 100 messages/app/hour via expansion packs
</li>
<li>
Forward incoming MMS messages to server
</li>
<li>
2011-09-24 06:09:57 +00:00
Send and receive multipart SMS (longer than 160 characters)
</li>
2011-09-19 05:21:05 +00:00
<li>
Authenticate with password shared between phone and server
</li>
<li>
Retry forwarding messages after a delay if there is an error
(e.g. due to temporarily broken internet or GSM connection)
</li>
<li>
Notify server of the status of outgoing messages
</li>
<li>
Support multiple phones connecting to same server
</li>
<li>
Show log messages to user to facilitate troubleshooting
</li>
<li>
User-configurable interval to poll for new outgoing messages
</li>
<li>
Option to prevent incoming messages from being stored in Messaging inbox
</li>
<li>
Option to forward messages already received in Messaging inbox
</li>
<li>
Option to enable/disable all SMS gateway functionality
</li>
<li>
Perform all HTTP requests asynchronously for better performance
</li>
2011-09-24 06:21:48 +00:00
<li>
Server API changed to use POST requests instead of GET requests, and other changes;
support for future server API changes via 'version' request parameter
</li>
2011-09-19 05:21:05 +00:00
<li>
Automatically start when the phone boots
</li>
2011-09-19 22:27:04 +00:00
<li>
Test mode to allow forwarding SMS from only certain phone numbers
</li>
2011-09-19 05:21:05 +00:00
<li>
Add server library and example code for PHP
</li>
2011-09-23 20:50:24 +00:00
<li>
Rename new version to EnvayaSMS
</li>
2011-09-19 05:21:05 +00:00
<li>
2011-09-23 00:25:32 +00:00
Create EnvayaSMS website
2011-09-19 05:21:05 +00:00
</li>
</ul>
2011-09-23 00:25:32 +00:00
<a href='https://github.com/niryariv/kalsms/tree/polling'>KalSMS Version 1a</a> (2011/01/18)
2011-09-19 05:21:05 +00:00
<ul>
<li>
Option to poll server for outgoing messages once per hour
</li>
</ul>
2011-09-23 00:25:32 +00:00
<a href='https://github.com/niryariv/kalsms'>KalSMS version 1</a> (2010/10/04)
2011-09-19 05:21:05 +00:00
<ul>
<li>
Initial release with support for receiving incoming SMS and sending replies
</li>
</ul>
<div class="footer">
2011-09-23 00:25:32 +00:00
get the source code on GitHub : <a href="http://github.com/youngj/EnvayaSMS">youngj/EnvayaSMS</a>
2011-09-19 05:21:05 +00:00
</div>
</div>
2011-09-22 06:10:31 +00:00
<script type="text/javascript">
var _gaq = _gaq || [];
2011-09-23 00:29:40 +00:00
_gaq.push(['_setAccount', 'UA-25868450-2']);
2011-09-22 06:10:31 +00:00
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
2011-09-19 05:21:05 +00:00
</body>
</html>