Please make Raspberry Pi version #377

Open
opened 2017-10-29 02:24:31 +02:00 by LanceJZ · 6 comments
LanceJZ commented 2017-10-29 02:24:31 +02:00 (Migrated from github.com)

Would be really awesome to have a Pi version, even an Android version.

Would be really awesome to have a Pi version, even an Android version.
LarryCalvert commented 2017-11-15 14:38:42 +01:00 (Migrated from github.com)

It would be great to have a running Raspberry Pi Version. I tried the Debian version on a Raspberry Pi 3. It complies _ with some warnings and by increasing swap space to 150 or so it will generate an executable. https://raspberrypi.stackexchange.com/questions/70/how-to-set-up-swap-space/1605#1605

Running cool-retro=term - I get:
libEGL warning: DRI2: failed to authenticate
** (cool-retro-term:972): WARNING **: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files
JIT is disabled for QML. Property bindings and animations will be very slow. Visit https://wiki.qt.io/V4 to learn about possible solutions for your platform.
QQmlApplicationEngine failed to load component
qrc:/main.qml:-1 File not found
Cannot load QML interface

I would love to see it run.

It would be great to have a running Raspberry Pi Version. I tried the Debian version on a Raspberry Pi 3. It complies _ with some warnings and by increasing swap space to 150 or so it will generate an executable. https://raspberrypi.stackexchange.com/questions/70/how-to-set-up-swap-space/1605#1605 Running cool-retro=term - I get: libEGL warning: DRI2: failed to authenticate ** (cool-retro-term:972): WARNING **: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files JIT is disabled for QML. Property bindings and animations will be very slow. Visit https://wiki.qt.io/V4 to learn about possible solutions for your platform. QQmlApplicationEngine failed to load component qrc:/main.qml:-1 File not found Cannot load QML interface ------------------------------------------------------------------------------ I would love to see it run.
o-lenczyk commented 2017-12-31 13:53:47 +01:00 (Migrated from github.com)

i have same issue

libEGL warning: DRI2: failed to authenticate
JIT is disabled for QML. Property bindings and animations will be very slow. Visit https://wiki.qt.io/V4 to learn about possible solutions for your platform.
QQmlApplicationEngine failed to load component
qrc:/main.qml:-1 File not found

Cannot load QML interface

any chance to have it fixed?

i have same issue libEGL warning: DRI2: failed to authenticate JIT is disabled for QML. Property bindings and animations will be very slow. Visit https://wiki.qt.io/V4 to learn about possible solutions for your platform. QQmlApplicationEngine failed to load component qrc:/main.qml:-1 File not found Cannot load QML interface any chance to have it fixed?
WGH- commented 2019-04-23 20:16:28 +02:00 (Migrated from github.com)

It works fine on Ubuntu 19.04 ARM64 (RPi 3). I tested both installing it from snap and building from source (I built it on a Scaleway VM, though).

The snap version has annonying update-mime-database running on every launch, which takes tens of seconds on slow SD card.

It works fine on Ubuntu 19.04 ARM64 (RPi 3). I tested both installing it from snap and building from source (I built it on a Scaleway VM, though). The snap version has annonying `update-mime-database` running on every launch, which takes tens of seconds on slow SD card.
Saeihr commented 2020-06-15 17:56:33 +02:00 (Migrated from github.com)

when I run it on the Pi 3 I get

libEGL warning: DRI2: failed to authenticate
QQmlApplicationEngine failed to load component
qrc:/main.qml:137 Type TerminalContainer unavailable
qrc:/TerminalContainer.qml:23 Type PreprocessedTerminal unavailable
qrc:/PreprocessedTerminal.qml:24 module "QMLTermWidget" is not installed

Cannot load QML interface

when I run it on the Pi 3 I get > libEGL warning: DRI2: failed to authenticate > QQmlApplicationEngine failed to load component > qrc:/main.qml:137 Type TerminalContainer unavailable > qrc:/TerminalContainer.qml:23 Type PreprocessedTerminal unavailable > qrc:/PreprocessedTerminal.qml:24 module "QMLTermWidget" is not installed > > Cannot load QML interface >
sschueller commented 2021-04-17 20:24:00 +02:00 (Migrated from github.com)

I spent some time and got it all running with good performance on a PI3: https://gist.github.com/sschueller/8fdc56a416510c0cce6bc2e4c2d96771 . Only thing that does not work is the menu so changes need to be made in the DB directly which I so far have not been able to get to work. If anyone know what needs to be done so that it takes changes please let me know. I attempted to edit the db with sqlite like so:

sqlite3 .local/share/cool-retro-term/QML/OfflineStorage/Databases/[somehash].sqlite
UPDATE settings SET value='{
  "backgroundColor": "#000000",
  "fontColor": "#aaff7f",
  "flickering": 0.1,
  "horizontalSync": 0.08,
  "staticNoise": 0.12,
  "chromaColor": 0.25,
  "saturationColor": 0.25,
  "screenCurvature": 0.3,
  "glowingLine": 0.2,
  "burnIn": 0.25,
  "bloom": 0.55,
  "rasterization": 0,
  "jitter": 0.2,
  "rbgShift": 0,
  "brightness": 0.5,
  "contrast": 0.8,
  "ambientLight": 0.2,
  "windowOpacity": 1,
  "fontName": "TERMINUS_SCALED",
  "fontWidth": 1,
  "margin": 0.5
}'
WHERE setting="_CURRENT_PROFILE";

Sadly it gets reverted next start of retro-cool-term

I spent some time and got it all running with good performance on a PI3: https://gist.github.com/sschueller/8fdc56a416510c0cce6bc2e4c2d96771 . Only thing that does not work is the menu so changes need to be made in the DB directly which I so far have not been able to get to work. If anyone know what needs to be done so that it takes changes please let me know. I attempted to edit the db with sqlite like so: ```bash sqlite3 .local/share/cool-retro-term/QML/OfflineStorage/Databases/[somehash].sqlite UPDATE settings SET value='{ "backgroundColor": "#000000", "fontColor": "#aaff7f", "flickering": 0.1, "horizontalSync": 0.08, "staticNoise": 0.12, "chromaColor": 0.25, "saturationColor": 0.25, "screenCurvature": 0.3, "glowingLine": 0.2, "burnIn": 0.25, "bloom": 0.55, "rasterization": 0, "jitter": 0.2, "rbgShift": 0, "brightness": 0.5, "contrast": 0.8, "ambientLight": 0.2, "windowOpacity": 1, "fontName": "TERMINUS_SCALED", "fontWidth": 1, "margin": 0.5 }' WHERE setting="_CURRENT_PROFILE"; ``` Sadly it gets reverted next start of retro-cool-term
robinhood2014 commented 2022-08-26 08:08:39 +02:00 (Migrated from github.com)

I can't say anything about a Pi version since I don't own one of those, but I too would like an Android version.

I can't say anything about a Pi version since I don't own one of those, but I too would like an Android version.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: seeseemelk/cool-retro-term#377
No description provided.