WineHQ

LINE

Version 5 series (End-of-Life)

Application Details:

Version: v5.x (EOL)
License: Free to use
URL: https://line.me/
Votes: Marked as obsolete
Latest Rating: Silver
Latest Wine Version Tested: 5.17

Maintainers: About Maintainership

Free Download Official website Free Download Official website Free Download Download Page Free Download The direct link for EXE installer Free Download official line for windows Free Download https://line.me/en Free Download Download Line windows application

Test Results

Old test results
The test results you have selected are very old and may not represent the current state of Wine.
Selected Test Results

What works

Installation

Send and receive text messages

Send files

Voice call

What does not

The window flickers when maximized

Video call

Workarounds

uncheck "Allow the window manager to decorate the windows" in Graphics tab in winecfg

What was not tested

Sign up

Hardware tested

Graphics:

  • GPU: Nvidia
  • Driver: open source

Additional Comments

Tested LINE version is 5.3.3.1519

Window border stays on top of other windows

selected in Test Results table below
Operating systemTest dateWine versionInstalls?Runs?Used
Workaround?
RatingSubmitter
ShowArch Linux x86_64Nov 25 20205.17Yes Yes YesSilverNatan Hari Pamungkas 
Showopensuse leap 15.1May 10 20205.8Yes No NoGarbageZhang Jiahao 
Showopensuse leap 15.1May 10 20205.8-stagingYes No NoGarbageZhang Jiahao 
Showopensuse leap 15.1Apr 27 20205.7-stagingYes No NoGarbageZhang Jiahao 
Showopensuse leap 15.1Apr 27 20205.7Yes No NoGarbageZhang Jiahao 

Known Bugs

Bug # Description Status Resolution Other apps affected
43030 LINE: Window border stays on top of other windows NEW View
43837 LINE (Powered by Naver): Window flickers when maximized UNCONFIRMED View
44519 Wine 3.0 draws empty borders in LINE 5.6.0.1625 UNCONFIRMED View

Show all bugs

Comments

The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.

Fix Flickering window while maximized
by RX6900XT on Thursday October 6th 2022, 4:32
#!/bin/bash



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
Back