https://bugzilla.redhat.com/show_bug.cgi?id=1085245
Bug ID: 1085245 Summary: bicon resolution more then 640x480 when running ncurses application Product: Fedora Version: 19 Component: bicon Severity: medium Assignee: tfujiwar@redhat.com Reporter: orenoi@matrix.co.il QA Contact: extras-qa@fedoraproject.org CC: i18n-bugs@lists.fedoraproject.org, tfujiwar@redhat.com
Description of problem:
when running terminator with xfce4 on Fedora 19 when starting bicon everything seems to be normal but when running ncurses application the resolution for some reason changes to 640x480. resizing the window and exiting the application does not help . only exiting bicon and reset the terminal helps
Version-Release number of selected component (if applicable):
How reproducible:
Steps to Reproduce: 1. 2. 3.
Actual results:
Expected results:
Additional info:
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #1 from fujiwara tfujiwar@redhat.com --- Created attachment 885257 --> https://bugzilla.redhat.com/attachment.cgi?id=885257&action=edit bicon in 640x480
It seems bicon works fine in my box. Attached my screenshot.
Which ncurses application did you try?
gnome-screenshot can take the screenshot: % gnome-screenshot -i
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
fujiwara tfujiwar@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |orenoi@matrix.co.il Flags| |needinfo?(orenoi@matrix.co. | |il)
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
Oren Oichman orenoi@matrix.co.il changed:
What |Removed |Added ---------------------------------------------------------------------------- Flags|needinfo?(orenoi@matrix.co. | |il) |
--- Comment #2 from Oren Oichman orenoi@matrix.co.il --- Hay ,
I am using XFCE4 with terminator (terminal application) and mutt for my email ,
I am attaching a screenshot of before and after I am getting it with more then one application
the same thing occur with newsbeuter
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #3 from Oren Oichman orenoi@matrix.co.il --- Created attachment 888396 --> https://bugzilla.redhat.com/attachment.cgi?id=888396&action=edit the bicon command befor mutt/newsbeuter
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #4 from Oren Oichman orenoi@matrix.co.il --- Created attachment 888397 --> https://bugzilla.redhat.com/attachment.cgi?id=888397&action=edit the bicon command after mutt/newsbeuter
after I am exiting bicon and run the reset command the terminal goes back to normal size
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #5 from fujiwara tfujiwar@redhat.com --- I don't see any problems with mutt or newsbeuter.
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #6 from Oren Oichman orenoi@matrix.co.il --- Hay,
is there any more direction I can check to see the why my resolution is very small when working with bicon and ncurses application ?
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #7 from fujiwara tfujiwar@redhat.com --- I have no idea. You may like to ask upstream directly: http://projects.arabeyes.org/project.php?proj=BiCon
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #8 from Oren Oichman orenoi@matrix.co.il --- Hi,
I have did some investigation and a notice that the $COLUMNS and $LINES have changes after I run the bicon command. if I set them manually then the ncurses application run as it should
me@localhost ~ $ echo $LINES 49 me@localhost ~ $ echo $COLUMNS 140 me@localhost ~ $ bicon BiCon started me@localhost ~ $ echo $LINES 24 me@localhost ~ $ echo $COLUMNS 80
is there anything that can be done to preserve the right values ?
thanks in advanced
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #9 from fujiwara tfujiwar@redhat.com --- (In reply to Oren Oichman from comment #8)
me@localhost ~ $ echo $LINES 49 me@localhost ~ $ echo $COLUMNS 140 me@localhost ~ $ bicon BiCon started me@localhost ~ $ echo $LINES 24 me@localhost ~ $ echo $COLUMNS 80
I don't see that change when bicon starts. But I saw LINES and COLUMNS are reset when bicon exits.
I noticed $HOME/.bashrc is loaded when bicon starts. Your login script might change that values.
BTW, bicon is a wrapper shell script and it calls bicon.bin
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
Fedora Update System updates@fedoraproject.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |MODIFIED
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #10 from Fedora Update System updates@fedoraproject.org --- bicon-0.4-1.fc19 has been submitted as an update for Fedora 19. https://admin.fedoraproject.org/updates/bicon-0.4-1.fc19
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
fujiwara tfujiwar@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Flags| |needinfo?(orenoi@matrix.co. | |il)
--- Comment #11 from fujiwara tfujiwar@redhat.com --- Could you check if your problem exists in bicon 0.4?
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
fujiwara tfujiwar@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |CLOSED Fixed In Version| |bicon-0.4-1.fc21 Resolution|--- |RAWHIDE Last Closed| |2014-08-06 22:36:57
--- Comment #12 from fujiwara tfujiwar@redhat.com --- Since no reply, I close this with the update and will integrate the new bicon in f19 too later.
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #13 from Fedora Update System updates@fedoraproject.org --- bicon-0.4-1.fc19 has been pushed to the Fedora 19 stable repository. If problems still persist, please make note of it in this bug report.
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
Oren Oichman orenoi@matrix.co.il changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|CLOSED |MODIFIED Resolution|RAWHIDE |--- Flags|needinfo?(orenoi@matrix.co. | |il) | Keywords| |Reopened
--- Comment #14 from Oren Oichman orenoi@matrix.co.il --- Hi,
the problem still presist
I did a workaround in the bashrc file :
[[ -z $lines ]] && export lines=$LINES [[ -z $columns ]] && export columns=$COLUMNS
if [[ $COLUMNS != $columns ]] && [[ ! -z $columns ]] ; then export COLUMNS=$columns; fi if [[ $LINES != $lines ]] && [[ ! -z $lines ]] ; then export LINES=$lines; fi
for some reason the base values are 24x80
is there a why to change the defualt values
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #15 from fujiwara tfujiwar@redhat.com --- I don't see the default values in my view. It would be good for you to file a bug in upstream since I cannot reproduce your bug: http://projects.arabeyes.org/project.php?proj=BiCon
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
--- Comment #16 from Fedora End Of Life endoflife@fedoraproject.org --- This message is a notice that Fedora 19 is now at end of life. Fedora has stopped maintaining and issuing updates for Fedora 19. It is Fedora's policy to close all bug reports from releases that are no longer maintained. Approximately 4 (four) weeks from now this bug will be closed as EOL if it remains open with a Fedora 'version' of '19'.
Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, simply change the 'version' to a later Fedora version.
Thank you for reporting this issue and we are sorry that we were not able to fix it before Fedora 19 is end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora, you are encouraged change the 'version' to a later Fedora version prior this bug is closed as described in the policy above.
Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete.
https://bugzilla.redhat.com/show_bug.cgi?id=1085245
Fedora End Of Life endoflife@fedoraproject.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |CLOSED Resolution|--- |EOL Last Closed|2014-08-06 22:36:57 |2015-02-18 06:15:19
--- Comment #17 from Fedora End Of Life endoflife@fedoraproject.org --- Fedora 19 changed to end-of-life (EOL) status on 2015-01-06. Fedora 19 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug.
If you can reproduce this bug against a currently maintained version of Fedora please feel free to reopen this bug against that version. If you are unable to reopen this bug, please file a new report against the current release. If you experience problems, please add a comment to this bug.
Thank you for reporting this bug and we are sorry it could not be fixed.
i18n-bugs@lists.fedoraproject.org