5.5.x.x series
Application Details:
Version: | 5.5.x.x |
License: | Free to use |
URL: | http://line.naver.jp/en/ |
Votes: | 0 |
Latest Rating: | Silver |
Latest Wine Version Tested: | 3.0 |
Maintainers: About Maintainership
What works
Installation
Send and receive text messages
Send files
Voice call
What does not
The window flickers when maximized
Unable to turn on camera in video call
Workarounds
Uncheck "Allow the window manager to decorate the windows" in Graphics tab in winecfg to prevent flicker
What was not tested
Sign up
Hardware tested
Graphics:
Additional Comments
Tested LINE version is 5.5.1.1587
Window border stays on top of other windows
Operating system | Test date | Wine version | Installs? | Runs? | Used Workaround? | Rating | Submitter | ||
Show | Ubuntu 16.04 "Xenial" amd64 (+ variants like Kubuntu) | Feb 03 2018 | 3.0 | Yes | Yes | Yes | Silver | Aryo Adhi | |
Current | openSUSE Leap 42.3 x86_64 | Jan 21 2018 | 3.0 | Yes | Yes | Yes | Silver | Hsiu-Ming Chang | |
Show | openSUSE Leap 42.3 x86_64 | Dec 31 2017 | 3.0-rc4 | Yes | Yes | Yes | Silver | Hsiu-Ming Chang | |
Show | openSUSE Leap 42.3 x86_64 | Dec 17 2017 | 3.0-rc2 | Yes | Yes | Yes | Silver | Hsiu-Ming Chang |
The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.
by RX6900XT on Thursday October 6th 2022, 4:32
start_succ=false
for i in {1..5}
do
xdotool search --onlyvisible --classname "line.exe"
if [ $? == 0 ]
then
start_succ=true
break
fi
sleep 1
done
if [ $start_succ == false ]
then
exit 1
fi
windowclose=false
while :
do
retval=$(xdotool search --onlyvisible --classname "line.exe")
if [ $? != 0 ]
then
exit 0
fi
login=true
for id in $retval
do
windowname=$(xdotool getwindowname $id)
if [ "$windowname" == "Log In" ]
then
login=false
fi
if [ $windowclose == true ] && ([ "$windowname" == "" ] || [ "$windowname" == "ChatContactMenu" ])
then
xdotool windowclose $id
fi
done
if [ $windowclose == true ]
then
exit 0
fi
if [ $login == true ]
then
windowclose=true
fi
sleep 1
done