- Started moving all HTML code outside PHP code.
- Fixed an error in the GPS conversion.
- Added a footer function to take over the "*THIS PAGE* has been last edited on..." at the end of all forms, to standardize it, seeing how it was on all forms anyway.
- Moved the "*THIS PAGE* was last modified on: YYYY-MMM-DD @ HH:MM:SS" to the bottom of the page in the bottom cell.
- Working on changing the layout of the AP fetch page. Soon it will be :
---------------------------------------
Associated list
|_> Signal history for that list
|_> GPS points for that Signal
---------------------------------------
- Would like to have it so the GPS history is hide able via Java-script or something.
- So far the changes are, all the previous separate functions (fetch GPS, fetch associate list, and fetch signal) are all now one function (fetch AP).
- Unfortunately this is going to require a change in the back end. Previous databases will not be compatible with this update.
- Reason being, in the previous versions (0.14 & 0.15[all builds]) did not store the signal history row in the Users table.
- Old way ex 1,1-0,2-0,6-1,10-... / 0,6 : 0 is the update or new flag 1 = Updated AP 0 = New AP, the 6 is the AP ID number in the Database
- New way ex 1,6:1-0,2:2-0,6:3-1,10:1-... /
0,6:2 ; 0 is the update or new flag 1 = Updated AP / 0 = New AP, the 6 is the Unique Access Point ID (UAPID) in the Database, and the 2 is the Signal History row number for the access point.)
- The users table holds all the list imports for each user.
- Fixed a bug when a search has no results, the page would output a PHP error, now it says "There were no results, please try again".
- Fixed an issue, where on install there would be an SQL error and fail to install.
- Added link to Last User on Index page.
- Cleaned up the tables on the new version page.
- Dates are now standardized as YYYY-MM-DD, to coincide with Vistumblers' save file.
- Fixed up the List KML export, there is a link to the KML file now.
- Finished KML export for entire database.
- Added option for a black background on the Signal Graphs.
- Empty Imports are no longer allowed (should have been like that since the beginning). Also if there were any empty imports, they will not be printed out on the All Users page.
- Added some friendly informational links.
- Set the default values for function variables, in case one value is left out.
- Initial code for Export Newest AP to KML is written, not tested yet.
- Added Export Page at /opt/export.php, also a link on the left hand side.
- Have Export users list to KML, all APs for a user to KML, export all APs in the DB to KML, and export a single AP to KML.
- Going to add the same for export to VS1.
- The warning for the install folder still being available was not added into the installer. It now is, and also in the upgrade too.
- Made the Default App internal time zone, GMT+0(Zulu).
- Soon you will be able to make the viewing time as your local time zone.
- greenwichmeantime.com
- wikipedia -< Greenwich_Mean_Time
|