summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-04-13WIP logo absolute dimensions to fix page layoutlogoMateusz Czapliński
2020-04-13readme: add logo creditsMateusz Czapliński
2020-04-13WIP back to 20% logoMateusz Czapliński
2020-04-13WIP try 15% logoMateusz Czapliński
2020-04-13WIP logo left-aligned is most funMateusz Czapliński
2020-04-13WIP center logoMateusz Czapliński
2020-04-13WIP right-align the logoMateusz Czapliński
2020-04-13WIP unalign logoMateusz Czapliński
2020-04-13WIP move logo below title in readmeMateusz Czapliński
2020-04-13WIP: try left-aligned logoMateusz Czapliński
2020-04-13logo: shrink canvas to fit with small marginMateusz Czapliński
2020-04-13WIP smaller logoMateusz Czapliński
2020-04-13WIP logo in readmeMateusz Czapliński
2020-04-12got logo! :) (#48)Mateusz Czapliński
> > how can I credit you for the logo? I'd especially love to put some name(s) > > behind it if I may, it's always cool to feel a personal connection; I'm happy > > to put even a long list out there, and with many links, and totally with the > > name of your company too, which I also highly appreciate for sponsoring this > > and the implicit endorsement of the project's usability :) > > on behalf of GPU Exchange Pty Ltd, the copyright holder, I hereby grant Akavel > & future maintainers of the UP project a royalty-free, global and irrevocable > licence to use the chosen logo (version 1) however you see fit in the context > of the UP project (including but not limited to: general branding, web & print, > creation of derivative works). > > If you want to give credit, I (Thoai Nguyen) came up with the original concept > on pen & paper, and get it vectorised by our design partner at Many Pixels. A > backlink to my startup (https://gpu.exchange/) would be much appreciated. ;)
2020-04-12tests: tiny tweak to namingMateusz Czapliński
2020-03-03authors: add Александр КрамаревMateusz Czapliński
2020-03-03add --no-colors flag #46Alexander Kramarev
2019-03-29Add FreeBSD installation instructionsMateusz Piotrowski
2019-02-18.travis.yml: update from vgo to go1.11 wayMateusz Czapliński
2018-12-04readme: update download link to v0.3.2Mateusz Czapliński
2018-12-04Merge branch 'readline_keys'v0.3.2Mateusz Czapliński
2018-12-04upgrade version to 0.3.2Mateusz Czapliński
2018-12-04replace yank with better insertMateusz Czapliński
Previous prototype of yank was O(n*m). The new code is more effective O(n+m), and also removes the need for yank function, by extending the insert function to accept more than 1 rune at once.
2018-12-04keys: supplement ctrlKey() with key()Mateusz Czapliński
I'm not really sure why KeyCtrlB needs to be wrapped with ctrlKey() on my machine, if it already has Ctrl in name; I hoped key() would be enough here. But it seems to only work in ctrlKey() for me. However, given the confusion, I currently prefer to err on the "beter safe than sorry" side, and slap both variants everywhere. To be fixed some day in future maybe.
2018-12-04authors: add Calum MacRaeMateusz Czapliński
2018-11-29readme: fix download link, add ArchLinux & macOSMateusz Czapliński
Fix download link to point to v0.3.1 (was: v0.3). Also, add convenience installation instructions for ArchLinux (via AUR) and macOS (via Homebrew). Resolves #30, closes #17.
2018-11-21keys: Protect against killspace consuming an empty buffer upon killcmacrae
2018-11-21keys: Use len(e.value) for `C-e`cmacrae
2018-11-20keys: Implement yank (C-y)cmacrae
2018-11-20keys: Implement `kill-to-end-of-line (C-k)`cmacrae
2018-11-20keys: Implement basic readline movement keyscmacrae
- C-b: left - C-f: right - C-a: beginning-of-line - C-e: end-of-line
2018-10-31release 0.3.1v0.3.1Mateusz Czapliński
2018-10-31print detailed error message for ErrTermNotFoundMateusz Czapliński
Closes #15. Unfortunately, it seems that the "terminfo" infrastructure in the Linux/Unix world is defined only at C ABI level (not at file format level), and as such is fundamentally incompatible with pure-Go applications. I don't see a good way to solve this problem in a cross-platform (or, mainly, cross-Unix) way, so I'm currently falling back to displaying an error message, asking user to patch the mess locally for themselves by hand.
2018-10-31some cleanup in TODOsMateusz Czapliński
2018-10-31Merge branch 'master' of https://github.com/akavel/upMateusz Czapliński
2018-10-31refactor shell discoveryMateusz Czapliński
Closes #29 - thanks @rhnvrm for pointing out that readability of this fragment of code could be improved!
2018-10-27do you mean 'codebase'?0xflotus
2018-10-27readme: update download link to v0.3Mateusz Czapliński
2018-10-27use $SHELL instead of hardcoded bashv0.3Mateusz Czapliński
Fixes #2. This currently requires the $SHELL to support a `-c` option. For shells that do not support such option, it's recommended to write a wrapper script. Thanks to everybody who contributed ideas how to resolve this, and especially for ottidmes & symphorien on #nixos IRC channel.
2018-10-26readme: update instructions for "Enter to run"Mateusz Czapliński
2018-10-26readme: upgrade download & asciinema links @v0.2.1Mateusz Czapliński
2018-10-26fix restart on Ctrl-Qv0.2.1Mateusz Czapliński
Broken after changing the logic for "Enter to run" feature.
2018-10-26et al.v0.2Mateusz Czapliński
2018-10-26Merge branch 'pr3'Mateusz Czapliński
2018-10-26add missing AUTHORS fileMateusz Czapliński
2018-10-26implement my review requestsMateusz Czapliński
2018-10-25add -o/--output-script optionMateusz Czapliński
For reddit.com/u/attrigh and other zsh users. https://www.reddit.com/r/commandline/comments/9qt0ay/ultimate_plumber_is_a_tool_for_writing_linux/e8d53n1
2018-10-25add help info about Enter keyMateusz Czapliński
2018-10-25better saving or printing of command after exitMateusz Czapliński
2018-10-25update version to 0.2Mateusz Czapliński