Commits
- Commit:
45f610f681a1e110dc2a2a27ffea9c721ec62968
- From:
- Oliver Lowe <o@olowe.co>
- Date:
Jira: add Comment command to issue window tags
- Commit:
ab1b9335a9b3b8c04dd191ad9e8300aba64a2bd6
- From:
- Oliver Lowe <o@olowe.co>
- Date:
Correct pkg.go.dev package paths
- Commit:
8a4b7c017983246797ee7a4cd56c6a6175126ca7
- From:
- Oliver Lowe <o@olowe.co>
- Date:
Jira: decode, print issue links
- Commit:
fac10d65517b52cbfcfb48d395832524025afbeb
- From:
- Oliver Lowe <o@olowe.co>
- Date:
all: simplify go.mod
- Commit:
bda9b4bf27784158b75dd1b8c28165eab2311931
- From:
- Oliver Lowe <o@olowe.co>
- Date:
Gitlab: correct url hostname parse error message
- Commit:
4d0a5834991f4debd135280b03d29f26735457c0
- From:
- Oliver Lowe <o@olowe.co>
- Date:
Jira: lots
Many changes to make being a 9 to 5 wage slave less boring.
- Commit:
4f7a6856e8d1f7e96a76eb2854e8dc7eff9f9b6d
- From:
- Oliver Lowe <o@olowe.co>
- Date:
jira: aeroplane hacking
- Commit:
2fe99c0f775659ffbbd6683ed755964934a8300f
- From:
- Oliver Lowe <o@olowe.co>
- Date:
jira: initial working Jira acme program
With a read-only io/fs filesystem to issues, comments.
- Commit:
43b3d76ef021d1f016352a1ba0f57430d33dc923
- From:
- Oliver Lowe <o@olowe.co>
- Date:
issue: replace custom time format with identical time.DateTime
Might as well use from the standard library.
- Commit:
ba9e266535f5c1704c277e5402192008034adc16
- From:
- Oliver Lowe <o@olowe.co>
- Date:
jira: printing
- Commit:
8d9dbdfc8a07bca44bcef1a030dc1e248a6ddeaf
- From:
- Oliver Lowe <o@olowe.co>
- Date:
add initial jira support
- Commit:
72ce55ca9db6e1433ac2c235c5e72c3f2feab374
- From:
- Oliver Lowe <o@olowe.co>
- Date:
Gitlab: use default host gitlab.com when no flag set
- Commit:
2c3ba36585f1fe3292fa0bb894d4130ab8eeb066
- From:
- Oliver Lowe <o@olowe.co>
- Date:
issue: upgrade to golang.org/x/oauth2@v0.21.0
The newer version does not pull in any 3rd party modules. Easier for
us to maintain.
- Commit:
f5e2c5fe5d55e3364885c24178b3d9b030e2d63a
- From:
- Oliver Lowe <o@olowe.co>
- Date:
issue: upgrade to github.com/google/go-github/v63
- Commit:
35a2038f0578687a6894b44e992d1d3ecdc92575
- From:
- Oliver Lowe <o@olowe.co>
- Date:
Gitlab: add debug output flag
- Commit:
521d393bafe7353136fd8b7742e2e30ae5a898ea
- From:
- Oliver Lowe <o@olowe.co>
- Date:
all: remove all internal Go project tooling
This is a repository for, from the updated README, "programs to
interact with GitHub and GitLab issues from the Acme editor".
- Commit:
83150219a3b6c73f55c28090663d65f81cecce62
- From:
- Oliver Lowe <o@olowe.co>
- Date:
Gitlab: import from olowe.co/gitlab
No point having these two very similar programs in two different
repositories. The packages themselves aren't really intended to be
imported by other projects.
- Commit:
e82076b19f23f436c28f921ebbea74e2703ea0cc
- From:
- Oliver Lowe <o@olowe.co>
- Date:
github: support only token file store
Instead of both netrc and token files. One less thing to worry about.
- Commit:
4c6af851c2b236144371f69a88eaa5d73e9a72c5
- From:
- Oliver Lowe <o@olowe.co>
- Date:
internal/minutes: remove
This is an upstream Go project specific program that we won't ever
use.
- Commit:
979e0264a3f22ffa56a51a5c16fc664adad3882a
- From:
- Oliver Lowe <o@olowe.co>
- Date:
issue: read from OS-portable user config dir
Never liked that dotfile in home directory pattern anyway.
- Commit:
300b9fda1d64a255d53ca4c9148e81c88e4afa8b
- From:
- Oliver Lowe <o@olowe.co>
- Date:
issue: swap out deprecated ioutil with os, io
- Commit:
a601c11cb9789b876f074631fb12713105c8a8ab
- From:
- Oliver Lowe <o@olowe.co>
- Date:
issue: return errors for loadAuth
Removes some random log.Fatal around the place, and shorter too.
- Commit:
94f93d960c0cdd46a84d8727f8a21747a353a305
- From:
- Oliver Lowe <o@olowe.co>
- Date:
issue: read from standard user config dir
- Commit:
088b35ce631ef792e9620f8966a12cfa366bceaa
- From:
- Roi Martin <jroi.martin@gmail.com>
- Via:
- Oliver Lowe <o@olowe.co>
- Date:
issue: document plumb port requirement
Document "githubissue" plumb port requirement and how to create
it under the section "Acme Editor Integration".
- Commit:
4ea9357af1c7eaf067bdfb8cc1b546595b68d5c2
- From:
- Roi Martin <jroi.martin@gmail.com>
- Via:
- Oliver Lowe <o@olowe.co>
- Date:
issue: fix nil pointer dereference on plumb error
plumbserve() fails with a nil pointer dereference when it tries to
print errors via w.Err(). This happens because w is a dummy window
with a nil *acme.Win. This commit replaces w.Err() calls in
plumbserve() with acme.Errf(). It also extracts the plumbserve()
method out of *awin, given that the previous change removes this
dependency.
Fixes issue #5.