summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* drawFlag(): Added skipping of individual wrapped description parts when ↵Sven Eden2013-09-171-10/+43
| | | | searching the start of a flag with enabled description wrapping.
* types: Added calculation of wrapped description parameters.Sven Eden2013-09-162-16/+144
|
* destroyFlag(): Included destruction of the new sWrap chains if presentSven Eden2013-09-131-0/+10
|
* Enabled new key button F11 to toggle line wrappingSven Eden2013-09-131-4/+4
|
* e_wrap: new global to record current wrapping styleSven Eden2013-09-132-0/+2
|
* eWrap: New enum to set description wrapping styleSven Eden2013-09-131-0/+9
|
* sWrap_: new struct to support description line wrappingSven Eden2013-09-122-10/+30
|
* Substituted the long button labels with shorter ones. The long ones were ↵Sven Eden2013-09-121-13/+6
| | | | written for testing the dynamic button placement.
* Key descriptions (buttons) are now recalculated to only use as much space as ↵Sven Eden2013-09-124-48/+75
| | | | they actually can have.
* types: New function setKeyDispLen() calculates the display length of buttons ↵Sven Eden2013-09-121-0/+75
| | | | to fill available space.
* types: Add a display length member to struct sKey and add a prototype for a ↵Sven Eden2013-09-121-2/+5
| | | | function to set it.
* Updated the fix for bug #478318 - It is more reliable now.Sven Eden2013-09-111-9/+12
|
* Portage.pm: Use portageq to determine not only EPREFIX, but PORTDIR and ↵Sven Eden2013-09-111-16/+30
| | | | PORTDIR_OVERLAY, too.
* ufed.pl.in: Fixed a typo.Sven Eden2013-09-111-3/+3
|
* Added all addition/changes about the buttons, the new filter F10 and the new ↵Sven Eden2013-09-111-0/+31
| | | | layout of the indicator line to the man page.
* Added all addition/changes about the buttons, the new filter F10 and the new ↵Sven Eden2013-09-111-5/+29
| | | | layout of the indicator line to the help screen text.
* Changed the indicator to show F9/F10 state as well, now in a condensed ↵Sven Eden2013-09-111-9/+18
| | | | 4-char-limited line that needs less space.
* Toggling description display using F9/F10 needs a full draw()Sven Eden2013-09-111-6/+2
|
* Updated the help text and man page to include information about the new F10 ↵Sven Eden2013-09-112-4/+48
| | | | key and the change to indicate the next state via button text instead of an indicator line.
* Changed key help display to show the next state instead of a fixed text.Sven Eden2013-09-102-49/+83
|
* Changed the help page to support the new sKey layoutSven Eden2013-09-101-6/+5
|
* types: Changed enums to explicit numbers and added values to sKey to hold a ↵Sven Eden2013-09-102-17/+38
| | | | seaprate name and up to three explanations.
* ufed.pl: Added a constant for easier setting on how to start the curses ↵Sven Eden2013-09-101-8/+21
| | | | interface. (Useful in development)
* Added new F10 key short helpSven Eden2013-09-101-11/+15
|
* Portage.pm: Enhanced Stripping of descriptions to build the alternative variant.Sven Eden2013-09-101-1/+10
|
* F10 now really toggles the description between original and alternativeSven Eden2013-09-101-2/+7
|
* Added handling for F10 to siwtch description display between original and ↵Sven Eden2013-09-101-0/+8
| | | | alternative.
* ufed-curses-globals.[hc]: Added e_desc global to switch between original and ↵Sven Eden2013-09-102-0/+2
| | | | alternative description.
* eDesc: Added enum to determine whether the original or the alternative ↵Sven Eden2013-09-101-0/+8
| | | | description is displayed
* Merge branch 'master' into altdesc to have recent development there as well.Sven Eden2013-09-101-4/+3
|\
| * Change the usage of Readonly (unneccessary dependency) to pragma constant ↵Sven Eden2013-09-101-4/+3
| | | | | | | | (no external dependency). It is only used for DEBUG, which is only questioned _once_.
* | Added reading of the new incoming alternative description line and its ↵Sven Eden2013-09-102-11/+16
| | | | | | | | addition to the flag descriptions.
* | The new alternative description line is now freed when a flag gets destroyed.Sven Eden2013-09-101-0/+2
| |
* | types: Added altenative description to sFlagSven Eden2013-09-102-4/+7
| |
* | udfed.pl: Send alternative text to interfaceSven Eden2013-09-101-2/+4
| |
* | Portage.pm: Added an alternative description with stripped ↵Sven Eden2013-09-101-0/+8
|/ | | | "<include|enable|add>[s][ support for]" prefix stripped.
* If read only mode is set, both Enter and ESC help show "Exit" and the key ↵Sven Eden2013-09-101-17/+27
| | | | presses show a correct prompt.
* Made the subtitle more descriptive presenting a possible read-only modeSven Eden2013-09-102-5/+7
|
* Portage.pm: When scanning a make.conf directory, only skip files beginning ↵Sven Eden2013-09-101-2/+3
| | | | with . or ending with ~.
* Added prefixing of predefined configuration values and added read-only-mode ↵Sven Eden2013-09-095-5/+42
| | | | as the first in use. When read-only-mode is set, the interface now changes both header lines to other colors and to show the user that flags are not saved.
* The warning issued when make.conf is not writable is now prefixed with a ↵Sven Eden2013-09-091-2/+2
| | | | "WARNING". Should be obvious now.
* ufed no longer tries to write out use flags if the new $Portage::ro_mode is ↵Sven Eden2013-09-091-3/+3
| | | | not set to 0.
* If the determined make.conf is not writable by the effective uid/gid, a ↵Sven Eden2013-09-091-4/+19
| | | | warning is issued and the new shared variable $ro_mode is set to 1.
* Changed the search for files if make.conf is a directory to be done by a ↵ufed-0.90Sven Eden2013-07-221-8/+55
| | | | recursive function. Known items to skip are now skipped correctly:
* Changed file search in make.conf directory parsing to be case insensitive.Sven Eden2013-07-221-1/+1
|
* Added parsing of files in a possible make.conf directory, skipping backup ↵Sven Eden2013-07-223-20/+85
| | | | and temporary files. The last found file with a USE assignement is used to store changes.
* Added a "thank you" section to the documentation.ufed-0.90_rc2Sven Eden2013-04-092-1/+12
|
* The cursor is now invisible on the help screen.Sven Eden2013-04-091-0/+2
|
* Changed the colors of highlighted lines in the help screen to make them ↵Sven Eden2013-04-091-1/+1
| | | | better recognizable.
* Safe USE_EXPAND_HIDDEN separaterly and merge them into USE_EXPAND if the ↵Sven Eden2013-04-081-0/+17
| | | | former has been set to "-*" in make.conf