-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added changelog, updated README, version bump
- Loading branch information
Showing
5 changed files
with
55 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "jeepsomething", | ||
"name": "jeepstatus", | ||
"require": { | ||
"slim/slim": "2.*", | ||
"slim/extras": "*", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{% extends "application.twig" %} | ||
|
||
{% block container %} | ||
|
||
<div class="six columns offset-by-five"> | ||
<p> | ||
<strong>Changelog</strong> | ||
</p> | ||
|
||
<p> | ||
<strong>0.2</strong><br> | ||
52 times a day is a lot <br> | ||
Not wanting to bombard Chrysler's VOTS service every 5 minutes from the same address, implemented a redis server to cache the json result for 20 minutes. The interval does not grow or shrink depending on how many times you hit the url. 20 minutes. Go drink a coffee or beer or something. | ||
</p> | ||
|
||
<p> | ||
<strong>0.1</strong><br> | ||
Initial Creation: <br> | ||
JeepStatus is born from the exhaustion of looking at JSON backend code provided by Chrysler than doesn't actually show all the information they are providing. By coupling the actual data response with a dealer provdied list (available on many jeep websites) we can cross refence and get a better description of where the vehicle actually is. | ||
</p> | ||
|
||
</div> | ||
|
||
|
||
|
||
{% endblock container %} |