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

  1. Chat
  2. Voice Call
  3. Video Call
  4. View Image
  5. Play Video
  6. Timeline
  7. Group Chat
  8. Multiple Chat
  9. Group Voice Call
  10. Download file (Although it displays error message, the file is downloaded in the ~/Downloads with random file name and .tmp extension)
  11. Line Keep
  12. Add Friend

What does not

  1. Need to wait a little bit longer to play video
  2. Download file shows error message but file is downloaded in the ~/Downloads directory with random file name and .tmp extension.
  3. Screenshot's selector is black instead of transparent.
  4. Sometimes crash and exit after login.

Workarounds

  1. Need to rename the downloaded file with the meaningful name and the correct file extension.

What was not tested

As far as I know, every feature has been tested

Hardware tested

Graphics:

  • GPU: Nvidia
  • Driver: proprietary

Additional Comments

selected in Test Results table below
Operating systemTest dateWine versionInstalls?Runs?Used
Workaround?
RatingSubmitter
CurrentArch 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