# HG changeset patch # User Mike Becker # Date 1754936464 -7200 # Node ID ff03ae99323ffbdc2aeee7fbac217fef9adbac3c # Parent cfaddbb6caaba6e5b7df65880f2395c5e00512a0 add a CHANGELOG file and complete the release 1.1.0 diff -r cfaddbb6caab -r ff03ae99323f CHANGELOG --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CHANGELOG Mon Aug 11 20:21:04 2025 +0200 @@ -0,0 +1,11 @@ +Version 1.1.0 - 2025-08-11 + + - Add highlight for days with tags + - Add Pop-up showing commit messages and tags + - Add id attributes to HTML elements so that users can add features with Javascript + - Add total number of commits per month as tooltip for the month + - Add total number of commits per year as tooltip for the author + +Version 1.0.0 - 2025-02-18 + + - Initial release diff -r cfaddbb6caab -r ff03ae99323f Makefile --- a/Makefile Mon Aug 11 20:06:28 2025 +0200 +++ b/Makefile Mon Aug 11 20:21:04 2025 +0200 @@ -21,14 +21,15 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=1.1.0-dev +VERSION=1.1.0 all: compile FORCE dist: FORCE mkdir -p dist/repoheat - cp LICENSE README configure Makefile dist/repoheat/ + cp LICENSE README CHANGELOG configure Makefile dist/repoheat/ cp -R src dist/repoheat/ + cp -R make dist/repoheat/ cd dist && tar -czf repoheat-$(VERSION).tar.gz repoheat clean: FORCE diff -r cfaddbb6caab -r ff03ae99323f src/main.cpp --- a/src/main.cpp Mon Aug 11 20:06:28 2025 +0200 +++ b/src/main.cpp Mon Aug 11 20:21:04 2025 +0200 @@ -38,7 +38,7 @@ using namespace std::chrono; -static constexpr auto program_version = "1.1.0 (dev)"; +static constexpr auto program_version = "1.1.0"; static void print_help() { fputs(