diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8f7f2a59524a65bee36497fbad8c4936d239d136..90afac23d96efc101150f719e51b2d7d001a7300 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,8 +3,10 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
## [Unreleased]
### Added
+- osada version check
### Changed
### Deprecated
+- api-more.php calls. old droid app been dead for years
### Removed
### Fixed
### Security
diff --git a/db/api-more.php b/db/api-more.php
deleted file mode 100644
index 932911a48ee2087d8543150199f4924f797f134f..0000000000000000000000000000000000000000
--- a/db/api-more.php
+++ /dev/null
@@ -1,47 +0,0 @@
-getMessage());
-}
-
-if ($_format === 'json') {
- echo json_encode($pod);
-} else {
- if ($pod['status'] === PodStatus::UP) {
- echo 'Status: Up
';
- }
- if ($pod['status'] === PodStatus::DOWN) {
- echo 'Status: Down
';
- }
- echo 'Last Git Pull: ' . $pod['hgitdate'] . '
';
- echo 'Uptime This Month ' . $pod['uptimelast7'] . '
';
- echo 'Months Monitored: ' . $pod['monthsmonitored'] . '
';
- echo 'Response Time: ' . $pod['responsetimelast7'] . '
';
- echo 'User Rating: ' . $pod['userrating'] . '
';
- echo 'Server Location: ' . $pod['country'] . '
';
- echo 'Latitude: ' . $pod['lat'] . '
';
- echo 'Longitude: ' . $pod['long'] . '
';
-}