There has been no post for a year in this thread but I found a new comfortable solution I want to share:
The settings-value for the shortlog-interval is present throughout the source code. It is just missing in the html, not just "invisible" as suggested above.
You can changed that by editing www/views/setup.html
Search for "shortlogtable" and add the following before the </table>-tag:
Code: Select all
<tr>
<td align="right" style="width:60px"><label><span data-i18n="Interval"></span>Interval: </label></td>
<td><select id="comboshortloginterval" name="ShortLogInterval" style="width:60px" class="combobox ui-corner-all">
<option value="1">1</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
</select> Minutes
</tr>
Save it, delete your browser-cache and refresh your browser. I had problems with chrome keeping the old setup page even after deleting the cache, but using incognito mode worked to display the new page.
The new settings-value is fully functional.