Package Details: webull-desktop 8.2.0-1

Git Clone URL: https://aur.archlinux.org/webull-desktop.git (read-only, click to copy)
Package Base: webull-desktop
Description: Invest in stocks, ETFs, and options with Webull Financial, all commission-free, $0 minimum deposit.
Upstream URL: https://webull.com
Keywords: finance stocks trading webull
Licenses: custom
Submitter: chovy
Maintainer: cacoro2
Last Packager: cacoro2
Votes: 9
Popularity: 0.013857
First Submitted: 2021-01-31 07:22 (UTC)
Last Updated: 2024-10-02 21:04 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

nihalani commented on 2021-10-28 01:29 (UTC)

Can we update this to the latest version: 5.7.0

daneenjah commented on 2021-02-14 13:36 (UTC)

Webull only works with older nss versions. Downgraded to 3.58.2 and installed with dpkg. Firefox had to be downgraded to 83 as well.

dancow commented on 2021-02-13 20:17 (UTC)

Installed perfectly but when I attempt to run it crashes immediately with no visible errors. No GUI appears. Let me know if I can help with logs or anything sorry, new to arch linux.

MrMidnightz commented on 2021-02-12 03:20 (UTC) (edited on 2021-02-12 03:25 (UTC) by MrMidnightz)

It installs thanks to @KI9N's pkg file, but for me the gui doesn't load up properly.

Screenshots: https://imgur.com/a/kjKXltm

Console errors:

QXcbIntegration: Cannot create platform OpenGL context, neither GLX nor EGL are enabled

Log Warnings:

[02-11 21:09:26.350][default][WAR][unknown:0]=>QSqlDatabase: QSQLITE driver not loaded
[02-11 21:09:26.350][default][WAR][unknown:0]=>QSqlDatabase: available drivers: 
[02-11 21:09:26.350][default][DBG][../../../../QtStocks/modules/store/market/marketstoreplugin.cpp:13]=>WBMarketStorePlugin::WBMarketStorePlugin(QObject*) 

[02-11 21:09:26.371][skin][WAR][../../../../QtStocks/library/core/core/wbcorelib.cpp:105]=>error: open file failed,filePath: ":/basewindow.css"

[02-11 21:09:26.434][default][WAR][unknown:0]=>QObject::connect(WBDragSplitter, Unknown): invalid null parameter
[02-11 21:09:26.437][default][WAR][../../../QtStocks/framework/uiframework/component/wbcomponentcontainer.cpp:410]=>create component failed: "WBWatchlistsComponent" round: "round"
[02-11 21:09:26.437][default][WAR][unknown:0]=>QObject::connect(WBDragSplitter, Unknown): invalid null parameter
[02-11 21:09:26.440][default][WAR][unknown:0]=>QString::arg: Argument missing: webull://www.market.com/marketTabWidget/usaFrame, markets
[02-11 21:09:26.441][default][WAR][unknown:0]=>QString::arg: Argument missing: webull://www.market.com/marketTabWidget/usaFrame, markets
[02-11 21:09:26.441][default][WAR][unknown:0]=>QString::arg: Argument missing: webull://www.market.com/marketTabWidget/usaFrame, usaFrame
[02-11 21:09:26.441][default][WAR][unknown:0]=>QString::arg: Argument missing: webull://www.market.com/marketTabWidget/usaFrame, markets
[02-11 21:09:26.441][default][WAR][unknown:0]=>QString::arg: Argument missing: webull://www.market.com/marketTabWidget/usaFrame, usaFrame

Also can't resize the window

Any help is much appreciated :3

Big-B commented on 2021-02-12 02:47 (UTC)

@KI9N

That PKGBUILD works perfectly, thanks.

KI9N commented on 2021-02-09 12:44 (UTC)

just get rid of those 2 lines like this :

# Maintainer: Neal

pkgname=webull-bin
pkgver=4.2.9
pkgrel=1
pkgdesc="Webull Trading Desktop"
arch=('x86_64')
url="https://webull.com"
license=('')
options=('!emptydirs')
source=("https://pub.webull.com/global/desktop/Webull%20Desktop%20${pkgver}.deb")
sha256sums=('dc16651a474b2dad5b9379b79a3c018f7de41cf3d6f582558b04ecd55d459845')

package(){

# Extract package data
tar xf data.tar.xz -C "${pkgdir}"

}

iamkanen commented on 2021-02-09 01:33 (UTC)

@KI9N @TuxBunny

Same-ish error:

==> Starting package()...
install: missing destination file operand after '/usr/local/WebullDesktop/LICENSE.txt'
Try 'install --help' for more information.
==> ERROR: A failure occurred in package().
    Aborting...

TuxBunny commented on 2021-02-09 00:09 (UTC)

Seems the pkgbuild doesnt work for me, I copied it into a file and ran makepkg, and got this. "install: cannot stat '/usr/local/WebullDesktop/LICENSE.txt': No such file or directory"

KI9N commented on 2021-02-08 22:30 (UTC) (edited on 2021-02-08 22:31 (UTC) by KI9N)

Try this PKGBUILD:

# Maintainer: Neal

pkgname=webull-bin
pkgver=4.2.9
pkgrel=1
pkgdesc="Webull Trading Desktop"
arch=('x86_64')
url="https://webull.com"
license=('')
options=('!emptydirs')
source=("https://pub.webull.com/global/desktop/Webull%20Desktop%20${pkgver}.deb")
sha256sums=('dc16651a474b2dad5b9379b79a3c018f7de41cf3d6f582558b04ecd55d459845')

package(){

# Extract package data
tar xf data.tar.xz -C "${pkgdir}"

install -D -m644 "/usr/local/WebullDesktop/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -D -m644 "/usr/local/WebullDesktop/doc/libudev1/copyright" "${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
}