xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit 50c0d85cbc071b41349df126d5bad49c749ba632

Bump version to v0.5
Author: xaizek
Author date (UTC): 2022-11-18 17:50
Committer name: xaizek
Committer date (UTC): 2022-11-18 17:50
Parent(s): cdb2db346fe9c027a79c4b1381522569b2e7def7
Signing key: 99DC5E4DB05F6BE2
Tree: d60c9dab8caf5290d3946f7ac8faceb65fa3fb3d
File Lines added Lines deleted
Makefile 3 3
README.md 2 2
docs/uncov-gcov.1 1 1
docs/uncov-web.1 1 1
docs/uncov.1 1 1
src/app.cpp 1 1
uncov-gcov 1 1
File Makefile changed (mode: 100644) (index bd24b6f..9b51bf3)
... ... docs/uncov.1: force
135 135 pandoc -V title=uncov \ pandoc -V title=uncov \
136 136 -V section=1 \ -V section=1 \
137 137 -V app=uncov \ -V app=uncov \
138 -V footer="uncov v0.4" \
138 -V footer="uncov v0.5" \
139 139 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
140 140 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
141 141 -s -o $@ $(sort $(wildcard docs/uncov/*.md)) -s -o $@ $(sort $(wildcard docs/uncov/*.md))
 
... ... docs/uncov-gcov.1: force
143 143 pandoc -V title=uncov-gcov \ pandoc -V title=uncov-gcov \
144 144 -V section=1 \ -V section=1 \
145 145 -V app=uncov-gcov \ -V app=uncov-gcov \
146 -V footer="uncov v0.4" \
146 -V footer="uncov v0.5" \
147 147 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
148 148 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
149 149 -s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md)) -s -o $@ $(sort $(wildcard docs/uncov-gcov/*.md))
 
... ... docs/uncov-web.1: force
151 151 pandoc -V title=uncov-web \ pandoc -V title=uncov-web \
152 152 -V section=1 \ -V section=1 \
153 153 -V app=uncov-web \ -V app=uncov-web \
154 -V footer="uncov v0.4" \
154 -V footer="uncov v0.5" \
155 155 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
156 156 -V author='xaizek <xaizek@posteo.net>' \ -V author='xaizek <xaizek@posteo.net>' \
157 157 -s -o $@ $(sort $(wildcard docs/uncov-web/*.md)) -s -o $@ $(sort $(wildcard docs/uncov-web/*.md))
File README.md changed (mode: 100644) (index 109a35a..14d8b62)
1 **uncov**, _v0.4_, _2016 – 2022_
1 **uncov**, _v0.5_, _2016 – 2022_
2 2
3 _This file last updated on 8 June, 2021_
3 _This file last updated on 18 November, 2022_
4 4
5 5 1. [Description](#description) 1. [Description](#description)
6 6 2. [Supported Environment](#supported-environment) 2. [Supported Environment](#supported-environment)
File docs/uncov-gcov.1 changed (mode: 100644) (index f5815db..efa921c)
14 14 . ftr VB CB . ftr VB CB
15 15 . ftr VBI CBI . ftr VBI CBI
16 16 .\} .\}
17 .TH "uncov-gcov" "1" "November 18, 2022" "uncov v0.4" ""
17 .TH "uncov-gcov" "1" "November 18, 2022" "uncov v0.5" ""
18 18 .hy .hy
19 19 .SH NAME .SH NAME
20 20 .PP .PP
File docs/uncov-web.1 changed (mode: 100644) (index 8e6e551..bbe8d29)
14 14 . ftr VB CB . ftr VB CB
15 15 . ftr VBI CBI . ftr VBI CBI
16 16 .\} .\}
17 .TH "uncov-web" "1" "November 18, 2022" "uncov v0.4" ""
17 .TH "uncov-web" "1" "November 18, 2022" "uncov v0.5" ""
18 18 .hy .hy
19 19 .SH NAME .SH NAME
20 20 .PP .PP
File docs/uncov.1 changed (mode: 100644) (index 7581f6d..51755ee)
14 14 . ftr VB CB . ftr VB CB
15 15 . ftr VBI CBI . ftr VBI CBI
16 16 .\} .\}
17 .TH "uncov" "1" "November 18, 2022" "uncov v0.4" ""
17 .TH "uncov" "1" "November 18, 2022" "uncov v0.5" ""
18 18 .hy .hy
19 19 .SH NAME .SH NAME
20 20 .PP .PP
File src/app.cpp changed (mode: 100644) (index fbf9f18..cb13f1d)
... ... static const std::string databaseFileName = "uncov.sqlite";
30 30
31 31 std::string getAppVersion() std::string getAppVersion()
32 32 { {
33 return "v0.4";
33 return "v0.5";
34 34 } }
35 35
36 36 std::string getConfigFile() std::string getConfigFile()
File uncov-gcov changed (mode: 100755) (index 014e48d..7efb78b)
... ... def run():
537 537 args = create_args(sys.argv[1:]) args = create_args(sys.argv[1:])
538 538
539 539 if args.version: if args.version:
540 print('uncov-gcov v0.4')
540 print('uncov-gcov v0.5')
541 541 exit(0) exit(0)
542 542
543 543 # flatten lists # flatten lists
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/uncov

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/uncov

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master