aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Fix Bug description header for dark modeSascha2021-03-041-4/+4
| | | |
| * | | Fix searchbar background-color for dark modeSascha2021-03-041-2/+2
| | | |
| * | | Fix backgroundcolor of toolbar for dark modeSascha2021-03-041-3/+3
| | | |
| * | | Fix color of open/close filter buttons in dark modeSascha2021-03-041-2/+2
| | | |
| * | | Use brower preference and persist theme modeSascha2021-03-041-13/+26
| | | |
| * | | Add button to toggle between light- and dark-modeSascha2021-03-044-9/+73
| | | |
* | | | Merge pull request #593 from vmiklos/webui-queryMichael Muré2021-03-076-13/+28
|\ \ \ \ | |/ / / |/| | | webui: allow specifying the initial query
| * | | commands: minor fixes for the webui open with queryMichael Muré2021-03-076-13/+11
| | | | | | | | | | | | | | | | | | | | | | | | - go fmt - add a shorthand - fix displayed webUI URL in the terminal
| * | | webui: allow specifying the initial queryMiklos Vajna2021-03-074-6/+23
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example use-case: given a github URL in a source code comment or commit message, one can now run: git bug webui --query 'metadata:github-url:"https://github.com/author/myproject/issues/42"' on the commandline to look up the details of that issue on the web ui quickly, offline. Fixes <https://github.com/MichaelMure/git-bug/issues/592>.
* | | Merge pull request #584 from MichaelMure/upstream-host-cmdflagMichael Muré2021-02-285-8/+22
|\ \ \ | | | | | | | | Add option to specify host address
| * | | Add option to specify host addressSascha2021-02-285-8/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '--host'-cmdline-option is added to the webui command. Previously, the WebUI couldn't be hosted inside of a container. As the WebUI-server only listend per default to localhost and there was no option to change the address, the server should listend to. This means, that the WebUI was only reachable from localhost. So only from inside of the container but never from outside. The '--host'-option allows to set the IP address or a hostname which the WebUI-server should listen to. E.g. by setting 0.0.0.0 or :: as address. Update documentation for new option. Update shell completion for new option. Compilation seems to add another go-gitlab version.
* | | | Merge pull request #520 from ↵Michael Muré2021-02-281-17/+14
|\ \ \ \ | |/ / / |/| | | | | | | | | | | MichaelMure/dependabot/npm_and_yarn/webui/node-notifier-8.0.1 build(deps): [security] bump node-notifier from 8.0.0 to 8.0.1 in /webui
| * | | build(deps): [security] bump node-notifier from 8.0.0 to 8.0.1 in /webuidependabot-preview[bot]2020-12-211-17/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [node-notifier](https://github.com/mikaelbr/node-notifier) from 8.0.0 to 8.0.1. **This update includes a security fix.** - [Release notes](https://github.com/mikaelbr/node-notifier/releases) - [Changelog](https://github.com/mikaelbr/node-notifier/blob/v8.0.1/CHANGELOG.md) - [Commits](https://github.com/mikaelbr/node-notifier/compare/v8.0.0...v8.0.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
| | | * Improve feedback for user when Github rate limitingAlexander Scharinger2021-04-083-9/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Github bridge itself should not write anything. This commit removes code writing to stdout and itroduces an event `ImportEventRateLimiting` to `core.ImportResult` in order to inform about a rate limiting situation of the Github GraphQL API. Now the communication with the user is delegated to the various user interfaces.
| | | * Add comment to clarify look ahead in import channelAlexander Scharinger2021-04-081-1/+10
| | | |
| | | * Bridges: move credential loading and client creationAlexander Scharinger2021-04-082-39/+38
| | | | | | | | | | | | | | | | | | | | | | | | Gitlab and Jira bridge: move credential loading and client creation from `Init` to `ImportAll` in order to harmonize the behaviour of the different bridges.
| | | * Github bridge: refactor message handlingAlexander Scharinger2021-03-281-3/+15
| | | |
| | | * Github bridge: stop sleep-timer on SIGINTAlexander Scharinger2021-03-271-2/+8
| | | |
| | | * Github bridge: fix message about timeoutAlexander Scharinger2021-03-271-1/+2
| | | |
| | | * Github bridge: RefactorAlexander Scharinger2021-03-223-435/+303
| | | |
| | | * Github bridge: send message to user when waitingAlexander Scharinger2021-03-182-63/+209
| | | | | | | | | | | | | | | | | | | | | | | | When the Github GraphQL API rate limit is exhausted print a message at the bottom of the terminal so the user knows why the import has been paused.
| | | * Github bridge: try again in case of web API errorAlexander Scharinger2021-03-151-1/+23
| | | |
| | | * Remove maps containing channels.Alexander Scharinger2021-03-152-93/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old implementation of the github bridge used maps to store several channels holding data obtained from the Github API. Removing the maps and simply packing data and channels together in a struct and passing it through one single channel makes the program simpler in terms of concurrency and, additionally, enables the garbage collector to free the memory gradually without any additional provisions.
| | | * Fix errors: deadlock and empty titlesAlexander Scharinger2021-03-153-203/+263
| | | |
| | | * Deal with github bridge import rate limitAlexander Scharinger2021-02-284-737/+687
| |_|/ |/| |
* | | Merge pull request #563 from ↵Michael Muré2021-02-273-254/+228
|\ \ \ | | | | | | | | | | | | | | | | MichaelMure/dependabot/go_modules/github.com/spf13/cobra-1.1.3 build(deps): bump github.com/spf13/cobra from 1.1.1 to 1.1.3
| * | | cmd: better powershell completion, thanks to cobra upgradeMichael Muré2021-02-272-253/+225
| | | |
| * | | build(deps): bump github.com/spf13/cobra from 1.1.1 to 1.1.3dependabot-preview[bot]2021-02-272-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.1.1 to 1.1.3. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](https://github.com/spf13/cobra/compare/v1.1.1...v1.1.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | | | Merge pull request #570 from ↵Michael Muré2021-02-272-1/+2
|\ \ \ \ | |/ / / |/| | | | | | | | | | | MichaelMure/dependabot/go_modules/github.com/xanzy/go-gitlab-0.44.0 build(deps): bump github.com/xanzy/go-gitlab from 0.40.1 to 0.44.0
| * | | build(deps): bump github.com/xanzy/go-gitlab from 0.40.1 to 0.44.0dependabot-preview[bot]2021-02-272-1/+2
|/ / / | | | | | | | | | | | | | | | | | | | | | Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab) from 0.40.1 to 0.44.0. - [Release notes](https://github.com/xanzy/go-gitlab/releases) - [Changelog](https://github.com/xanzy/go-gitlab/blob/master/releases_test.go) - [Commits](https://github.com/xanzy/go-gitlab/compare/v0.40.1...v0.44.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | | Merge pull request #568 from vmiklos/search-metadataMichael Muré2021-02-2713-110/+177
|\ \ \ | | | | | | | | Add ability to search by arbitrary metadata
| * | | query: refactor to reuse the split function for both query and tokenMichael Muré2021-02-277-152/+98
| | | |
| * | | Add ability to search by arbitrary metadataMiklos Vajna2021-02-2111-8/+129
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example: ~/git/git-bug/git-bug ls --metadata github-url=https://github.com/author/myproject/issues/42 or ~/git/git-bug/git-bug ls metadata:github-url:\"https://github.com/author/myproject/issues/42\" Fixes the cmdline part of <https://github.com/MichaelMure/git-bug/issues/567>.
* | | doc: cleanup query documentationMichael Muré2021-02-201-10/+9
| | |
* | | Merge pull request #569 from claudioantonio/masterMichael Muré2021-02-193-55/+47
|\ \ \ | |/ / |/| | Commits for issues #554, #564 and #566
| * | Commit for #554Cláudio2021-02-191-41/+9
| | | | | | | | | | | | - New build after removing images from public folder
| * | Commit for #564Cláudio2021-02-195-83/+1
| | | | | | | | | | | | - Remove images for ReactJS, MaterialUI, GraphQL and Apollo GraphQL
| * | Commit for #554Cláudio2021-02-152-50/+68
| | |
| * | Commits for issues #564 e #566Cláudio2021-02-145-1/+89
|/ /
* | Merge pull request #536 from ↵Cláudio Silva2021-02-111-14/+475
|\ \ | | | | | | | | | | | | MichaelMure/dependabot/npm_and_yarn/webui/graphql-tools/git-loader-6.2.6 build(deps): [security] bump @graphql-tools/git-loader from 6.2.4 to 6.2.6 in /webui
| * | build(deps): [security] bump @graphql-tools/git-loader in /webuidependabot-preview[bot]2021-01-291-14/+475
| | | | | | | | | | | | | | | | | | | | | | | | Bumps [@graphql-tools/git-loader](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/loaders/git) from 6.2.4 to 6.2.6. **This update includes a security fix.** - [Release notes](https://github.com/ardatan/graphql-tools/releases) - [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/loaders/git/CHANGELOG.md) - [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/git-loader@6.2.6/packages/loaders/git) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | | Merge pull request #559 from claudioantonio/webui_543_ifloggedinMichael Muré2021-02-093-26/+53
|\ \ \ | | | | | | | | Webui 543 ifloggedin
| * | | Apply suggestions from code reviewMichael Muré2021-02-091-11/+11
| | | |
| * | | Commit for #543Cláudio2021-02-082-20/+35
| | | | | | | | | | | | | | | | | | | | - To test I forced Ifloggedin always return null. - Layout is ok even when edition components are hidden.
| * | | Commit for #557Cláudio2021-02-081-3/+2
| | | | | | | | | | | | | | | | - Formatting
| * | | Commit for #557Cláudio2021-02-081-4/+4
| | | | | | | | | | | | | | | | - Formatting
| * | | Commit for #557Cláudio2021-02-081-7/+20
| | | | | | | | | | | | | | | | | | | | - Adding more details - Tip when lint error occur
* | | | Merge pull request #555 from claudioantonio/masterMichael Muré2021-02-0813-9/+8
|\| | | | | | | | | | | Commit for #541
| * | | Commit for #541Cláudio2021-02-0513-9/+8
| | | |
* | | | Merge pull request #556 from 5nord/366-multiple-bugs-with-gitlab-bridgeMichael Muré2021-02-081-2/+2
|\ \ \ \ | | | | | | | | | | Fix comparison mix-up in gitlab importer