xaizek / pipedial (License: GPLv3 only) (since 2019-01-08)
One more tool for selecting something in console.
Commit e3000b9a2e19fcdbe8f2d8672b5e711e9e8a6117

Use named colors (upgrade libcursed)
Author: xaizek
Author date (UTC): 2019-04-23 21:21
Committer name: xaizek
Committer date (UTC): 2019-04-23 21:21
Parent(s): 450da964de718cfde4910da573275d3ebf7c2198
Signing key: 99DC5E4DB05F6BE2
Tree: 9ec92bf0d3fe4a0b2d7c3c5633bd43ce5d070498
File Lines added Lines deleted
libs/cursed 1 1
src/PipeDial.cpp 2 2
File libs/cursed changed (mode: 160000) (index 1ee6912..8566541)
1 Subproject commit 1ee6912c090c26c139e9e9c65b5e080075004b61
1 Subproject commit 8566541dc04c2c9b97756589c2954e14eafbe01a
File src/PipeDial.cpp changed (mode: 100644) (index 4dd2874..57b7d45)
... ... PipeDial::PipeDial(std::wstring titleText, std::vector<std::wstring> initLines)
37 37 title(std::move(titleText)), quit(false) title(std::move(titleText)), quit(false)
38 38 { {
39 39 cursed::Format titleBg; cursed::Format titleBg;
40 titleBg.setForeground(6);
41 titleBg.setBackground(0);
40 titleBg.setForeground(cursed::Color::Cyan);
41 titleBg.setBackground(cursed::Color::Black);
42 42 titleBg.setReversed(true); titleBg.setReversed(true);
43 43 titleBg.setBold(true); titleBg.setBold(true);
44 44 title.setBackground(titleBg); title.setBackground(titleBg);
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/pipedial

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

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