Commit log

d4f1d56 repo: fix some go-git implementation

Michael Muré created

bde9375 bump minimal go version to 1.13

Michael Muré created

e442ed3 Add more function implementations

vince created

2bda703 repository: more go-git implementation

Michael Muré created

9c1087e repository: fix a todo in the gogit repo

Michael Muré created

30d1640 repository: some light shuffling of code

Michael Muré created

3ecbf8d bridge: store credentials in the Keyring instead of the git config

Michael Muré created

b127481 repository: add access to the system keyring, with fallback on a file

Michael Muré created

d171e11 repository: partial impl of a go-git backed Repo

Michael Muré created

9f3a56b misc: move the random bug command on its own package

Michael Muré created

7f87eb8 doc: generate concurrently

Michael Muré created

148b335 command: match the output in ls and in the termui

Michael Muré created

ae0529e Merge pull request #457 from zdenek-crha/bright_terminal_readability

Click to expand commit body
Bright terminal readability

Michael Muré created

999e612 Fix 'no description' readability in terminal with bright background

Click to expand commit body
The rendering of color for 'No description provided' text is broken on
bright terminals - it sets black background which together with default
black forground color renders opaque rectangle.

The GreyBold color alias is broken too - name suggests bold gray
forground color, but actually sets bold default fg color with black
bacground.

First make color alias consistent. Rename it to BlackBold and have it
set bold black fg color (same as similar *Bold aliases).

Second, update all places which use it to render text to also use white
background to prevent it from disappering in terminals with black
background color.

Zdenek Crha created

6bf6484 Fix help bar readability in terminal with bright background

Click to expand commit body
Set both background and foreground color when displaying help bar to
avoid sitation where default foreground color used by terminal is hard
to read on blue background (like cyan on blue or black on blue).

Apply colors to whole generated help bar to avoid 'stripes' of different
background color where whitespace is used between help items.

Zdenek Crha created

0198ad7 Update README.md

Michael Muré created

c0f6e6a Merge pull request #448 from MichaelMure/dependabot/go_modules/github.com/gorilla/mux-1.8.0

Click to expand commit body
build(deps): bump github.com/gorilla/mux from 1.7.4 to 1.8.0

Michael Muré created

36cdd13 Merge pull request #450 from wavexx/packed_bugview

Click to expand commit body
Packed bugview

Michael Muré created

807844b termui: don't pack it *that* much

Michael Muré created

a42abaa termui: show the number of *additional* comments

Michael Muré created

5a4dc7a TermUI: pack the bug table view

Yuri D'Elia created

6824ecf TermUI: Remove empty borders around bug table view

Yuri D'Elia created

ad32cbd build(deps): bump github.com/gorilla/mux from 1.7.4 to 1.8.0

Click to expand commit body
Bumps [github.com/gorilla/mux](https://github.com/gorilla/mux) from 1.7.4 to 1.8.0.
- [Release notes](https://github.com/gorilla/mux/releases)
- [Commits](https://github.com/gorilla/mux/compare/v1.7.4...v1.8.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

dependabot-preview[bot] created

324fe3b Merge pull request #449 from MichaelMure/lru-cache

Click to expand commit body
LRU Cache

Michael Muré created

98a1d83 Delete EquivalentBug function

vince created

8a4e4a1 Update cache/lru_id_cache.go

Click to expand commit body
Co-authored-by: Michael Muré <batolettre@gmail.com>

Vincent Tiu and Michael Muré created

2440a20 Fix bugs and cleanup code

vince created

60466f8 bug: fix tests

Michael Muré created

47ea66f bug: use sha256 to compute labels color, to use a single hash function in the codebase

Michael Muré created

e374c9d readme: fix FreeBSD package name

Michael Muré created

f223ffa Merge pull request #372 from MichaelMure/termui-help-format

Click to expand commit body
termui: make the help visually easier to parse

Michael Muré created

4d678f3 cache: simplify cache eviction

Michael Muré created

4b06502 Implement cache eviction and testing

vince created

8eb7faf termui: help bar background goes all the width

Michael Muré created

9ce84fc termui: make the help visually easier to parse

Michael Muré created

6efada4 Implement the LRU Cache

vince created

88c28db Merge pull request #442 from MichaelMure/cache-lock

Click to expand commit body
Cache lock

Michael Muré created

0fd09aa Fix concurrency error

vince created

c215861 Remove pointer and unnecessary code

vince created

e9a7725 Add mutex to bugCache

Click to expand commit body
This adds a mutex to the bugCache to deal with locking.

vince created

08e7bbf Merge pull request #437 from MichaelMure/fix-426

Click to expand commit body
cache: fix BugExcerpt's timestamp not properly stored

Michael Muré created

a15ad83 Merge pull request #436 from MichaelMure/cli-usage

Click to expand commit body
commands: cleanup the command's usage to avoid warnings when generating the doc

Michael Muré created

92a59ec cache: fix BugExcerpt's timestamp not properly stored

Click to expand commit body
fix #426

Michael Muré created

ae5c096 commands: cleanup the command's usage to avoid warnings when generating the doc

Michael Muré created

51c887f Merge pull request #433 from MichaelMure/remove-bug-2

Click to expand commit body
Add the 'rm' command

Michael Muré created

a62ce78 bug: code cleanup for the rm feature

Michael Muré created

18ddc77 Fix bug tests

vince created

6e315ea Update docs

vince created

4e5f377 Remove need to specify remote

Click to expand commit body
This commit makes the removeBug command use the listRefs repo command to search for the bug, eliminating the need to input the remote the bug came from.

vince created

9436cf4 Move args parsing out of repo cache

vince created