I wasn't sure whether to put this in bugs or not, but it's possible that a show will be In Development even after the first episode has aired as it requires manually changing - as can be seen in this image. Shouldn't it just automatically update the status after the first episode has aired?
A fairly simple way to achieve this is to run a query daily, i.e something similar to this (MySQL syntax where there's a separate table for shows and episodes) :
UPDATE shows INNER JOIN episodes ON shows.showID = episodes.showID SET status = 'Running' WHERE shows.status = 'In Development' AND episodeID = 1 AND CURDATE() > airDate;


