[Qt app snap] UI widgets has no text - missing/broken font configuration?

Hey hello!

I’m new packaging my first snap and I’m unable to solve the problem with missing fonts/text in the application UI. I didn’t find any solution anywhere. Please find the snapcraft.yaml and the application start log below.

More details:

snapcraft.yaml:

name: mindforger
base: core18
version: '1.55.1'
summary: Thinking notebook and Markdown editor
description: |
   Search, browse, view and edit your Markdown files. Get as much
   as possible from the knowledge in your remarks with associations,
   auto linking and powerful search options.

grade: devel
confinement: devmode
architectures:
  - build-on: amd64

parts:
  mindforger:
plugin: qmake
source: .  # . or git@github.com:dvorka/mindforger.git
qt-version: qt5
build-packages:
  - zlib1g-dev
  - ccache
  - libhunspell-dev
  - build-essential
  - qtbase5-dev
  - qt5-qmake
  - libqt5webkit5-dev  # WebKit is used @ Linux, WebEngine @ macOS/Win
  - ttf-ubuntu-font-family  # w/o fonts there are no menus/text in UI
  - libvoikko-dev  # reported as missing in the start-up log
stage-packages:  # suggested by snapcraft build
  - libbrotli1
  - libdouble-conversion1
  - libfreetype6
  - libgl1
  - libglvnd0
  - libglx0
  - libgraphite2-3
  - libgstreamer-plugins-base1.0-0
  - libgstreamer1.0-0
  - libharfbuzz0b
  - libhunspell-1.6-0
  - libhyphen0
  - libicu60
  - libjpeg-turbo8
  - liborc-0.4-0
  - libpng16-16
  - libqt5core5a
  - libqt5gui5
  - libqt5network5
  - libqt5positioning5
  - libqt5printsupport5
  - libqt5qml5
  - libqt5quick5
  - libqt5sensors5
  - libqt5webchannel5
  - libqt5webkit5
  - libqt5widgets5
  - libwebp6
  - libwoff1
  - libx11-6
  - libxau6
  - libxcb1
  - libxdmcp6
  - libxml2
  - libxslt1.1
options:
  - -r
  - "CONFIG+=mfdebug"

apps:
  mindforger:
command: bin/mindforger
environment:
  QT_DEBUG_PLUGINS: 1
  LD_LIBRARY_PATH: /usr/lib/x86_64-linux-gnu:${SNAP}/usr/lib/${SNAPCRAFT_ARCH_TRIPLET}/qt5/plugins/platforms  # add path to dir w/ libqxcb.so
  QT_PLUGIN_PATH: ${SNAP}/usr/lib/${SNAPCRAFT_ARCH_TRIPLET}/qt5/plugins
  QT_QPA_PLATFORM_PLUGIN_PATH: ${SNAP}/usr/lib/${SNAPCRAFT_ARCH_TRIPLET}/qt5/plugins
  # font configuration
  FONTCONFIG_PATH: ${SNAP}/etc/fonts/conf.d
  FONTCONFIG_FILE: ${SNAP}/etc/fonts/fonts.conf
plugs: [home, network]

Application start log:

$ mindforger 
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin" ...
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/bin/mindforger"
"Failed to extract plugin meta data from '/snap/mindforger/x1/bin/mindforger'" 
     not a plugin
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms" ...
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqeglfs.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqeglfs.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
    "Keys": [
	"eglfs"
    ]
},
"className": "QEglFSIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("eglfs")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqlinuxfb.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqlinuxfb.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
    "Keys": [
	"linuxfb"
    ]
},
"className": "QLinuxFbIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("linuxfb")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqminimal.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqminimal.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
    "Keys": [
	"minimal"
    ]
},
"className": "QMinimalIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("minimal")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqminimalegl.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqminimalegl.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
    "Keys": [
	"minimalegl"
    ]
},
"className": "QMinimalEglIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("minimalegl")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqoffscreen.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqoffscreen.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
    "Keys": [
	"offscreen"
    ]
},
"className": "QOffscreenIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("offscreen")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqvnc.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqvnc.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
    "Keys": [
	"vnc"
    ]
},
"className": "QVncIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("vnc")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3",
"MetaData": {
    "Keys": [
	"xcb"
    ]
},
"className": "QXcbIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("xcb")
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/platforms" ...
QStandardPaths: XDG_RUNTIME_DIR points to non-existing path '/run/user/1000/snap.mindforger', please create it with 0700 permissions.
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so"
Cannot load library Xcursor: (Xcursor: cannot open shared object file: No such file or directory)
Cannot load library Xcursor: (Xcursor: cannot open shared object file: No such file or directory)
xkbcommon: ERROR: failed to add default include path /usr/share/X11/xkb
Qt: Failed to create XKB context!
Use QT_XKB_CONFIG_ROOT environmental variable to provide an additional search path, add ':' as separator to provide several search paths and/or make sure that XKB configuration data directory contains recent enough contents, to update please see http://cgit.freedesktop.org/xkeyboard-config/ .
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations" ...
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-egl-integration.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-egl-integration.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.Xcb.QXcbGlIntegrationFactoryInterface.5.5",
"MetaData": {
    "Keys": [
	"xcb_egl"
    ]
},
"className": "QXcbEglIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("xcb_egl")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so, metadata=
{
"IID": "org.qt-project.Qt.QPA.Xcb.QXcbGlIntegrationFactoryInterface.5.5",
"MetaData": {
    "Keys": [
	"xcb_glx"
    ]
},
"className": "QXcbGlxIntegrationPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("xcb_glx")
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/xcbglintegrations" ...
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so"
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin" ...
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/bin/mindforger"
"Failed to extract plugin meta data from '/snap/mindforger/x1/bin/mindforger'" 
     not a plugin
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platformthemes" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/platformthemes" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts" ...
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so, metadata=
{
"IID": "org.qt-project.Qt.QPlatformInputContextFactoryInterface.5.1",
"MetaData": {
    "Keys": [
	"compose",
	"xim"
    ]
},
"className": "QComposePlatformInputContextPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("compose", "xim")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so, metadata=
{
"IID": "org.qt-project.Qt.QPlatformInputContextFactoryInterface.5.1",
"MetaData": {
    "Keys": [
	"ibus"
    ]
},
"className": "QIbusPlatformInputContextPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("ibus")
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/platforminputcontexts" ...
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so"
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so"
Qt: Session management error: None of the authentication protocols specified are supported
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/styles" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/styles" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/iconengines" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/iconengines" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats" ...
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so, metadata=
{
"IID": "org.qt-project.Qt.QImageIOHandlerFactoryInterface",
"MetaData": {
    "Keys": [
	"gif"
    ],
    "MimeTypes": [
	"image/gif"
    ]
},
"className": "QGifPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("gif")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so, metadata=
{
"IID": "org.qt-project.Qt.QImageIOHandlerFactoryInterface",
"MetaData": {
    "Keys": [
	"ico",
	"cur"
    ],
    "MimeTypes": [
	"image/vnd.microsoft.icon"
    ]
},
"className": "QICOPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("ico", "cur")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so, metadata=
{
"IID": "org.qt-project.Qt.QImageIOHandlerFactoryInterface",
"MetaData": {
    "Keys": [
	"jpg",
	"jpeg"
    ],
    "MimeTypes": [
	"image/jpeg",
	"image/jpeg"
    ]
},
"className": "QJpegPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("jpg", "jpeg")
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/imageformats" ...
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so"
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so"
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so"
Loading configuration from /home/dvorka/snap/mindforger/x1/.mindforger.md
MindForger is unable to load MD configuration from: /home/dvorka/snap/mindforger/x1/.mindforger.md
Saving configuration to FILE /home/dvorka/snap/mindforger/x1/.mindforger.md
Loading locale :/translations/mindforger_en_US.qm
Checking for default repository existence: /home/dvorka/snap/mindforger/x1/mindforger-repository
  Creating default MF repository in /home/dvorka/snap/mindforger/x1/mindforger-repository
ERROR: default source repository not found in /usr/share/doc/mindforger
Loading repository configuration from: '/home/dvorka/snap/mindforger/x1/mindforger-repository/repository-configuration.md'
Setting MindForger Qt theme: dark
Spell check:
Cannot load library libvoikko: (libvoikko: cannot open shared object file: No such file or directory)
  Spell check LOADING personal dictionary: /home/dvorka/snap/mindforger/x1/.local/share/MindForger/dictionaries/home/dvorka/snap/mindforger/x1/.local/share/MindForger/dictionaries/personal
Cannot load library libvoikko: (libvoikko: cannot open shared object file: No such file or directory)
  Available language dictionaries:
  No spell check dictionaries available!
libpng warning: iCCP: known incorrect sRGB profile
libpng warning: iCCP: known incorrect sRGB profile
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/sensors" ...
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/sensors/libqtsensors_generic.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/sensors/libqtsensors_generic.so, metadata=
{
"IID": "com.qt-project.Qt.QSensorPluginInterface/1.0",
"MetaData": {
    "Keys": [
	"generic"
    ]
},
"className": "genericSensorPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("generic")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/sensors/libqtsensors_iio-sensor-proxy.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/sensors/libqtsensors_iio-sensor-proxy.so, metadata=
{
"IID": "com.qt-project.Qt.QSensorPluginInterface/1.0",
"MetaData": {
    "Keys": [
	"iio-sensor-proxy"
    ]
},
"className": "IIOSensorProxySensorPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("iio-sensor-proxy")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/sensors/libqtsensors_linuxsys.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/sensors/libqtsensors_linuxsys.so, metadata=
{
"IID": "com.qt-project.Qt.QSensorPluginInterface/1.0",
"MetaData": {
    "Keys": [
	"linux"
    ]
},
"className": "LinuxSensorPlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("linux")
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/sensors" ...
Common words blacklist:
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/accessible" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/accessible" ...
QObject::connect: No such slot m8r::MainWindowPresenter::doActionToolsDucDuckGo()
Saving configuration as MD:
  path: '/home/dvorka/snap/mindforger/x1/.mindforger.md'
  repo: true
  repo path: /home/dvorka/snap/mindforger/x1/mindforger-repository/repository-configuration.md'
  os: 1
Saving configuration to file /home/dvorka/snap/mindforger/x1/.mindforger.md
Saving repository configuration to /home/dvorka/snap/mindforger/x1/mindforger-repository/repository-configuration.md
Saving repository configuration to file /home/dvorka/snap/mindforger/x1/mindforger-repository/repository-configuration.md
@Learn
Learning...
Mind IS sleeping...
[Autolinking] indices CLEARed
Mind WITH amnesia

Indexing repository:
  /home/dvorka/snap/mindforger/x1/mindforger-repository
INDEXING memory DIR: /home/dvorka/snap/mindforger/x1/mindforger-repository/memory
INDEXING stencils DIR: /home/dvorka/snap/mindforger/x1/mindforger-repository/stencils/notebooks
INDEXING stencils DIR: /home/dvorka/snap/mindforger/x1/mindforger-repository/stencils/notes
Repository indexed in 0.069ms
LEARNING repository in mode 0:
Markdown files:
PDF files:
TXT files:
Outline stencils:
Note stencils:
LEARNED in 0.033ms
[Autolinking] Rebuilding trie index...
[Autolinking] indices CLEARed
[Autolinking] trie w/ 0 things updated in: 6e-06ms
Mind LEARNED 0 Os
libGL error: MESA-LOADER: failed to open i965 (search paths /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri)
libGL error: failed to load driver: i965
libGL error: MESA-LOADER: failed to open i965 (search paths /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri)
libGL error: failed to load driver: i965
libGL error: MESA-LOADER: failed to open swrast (search paths /usr/lib/x86_64-linux-gnu/dri:\$${ORIGIN}/dri:/usr/lib/dri)
libGL error: failed to load driver: swrast
XmbTextListToTextProperty result code -2
XmbTextListToTextProperty result code -2
XmbTextListToTextProperty result code -2
OutlineTreeView::resizeEvent 0x7ffd881c8ce0
OutlineTreeView::resizeEvent 0x7ffd881c8220
RecentNotesTableView::resizeEvent 0x7ffd881c8f40
OutlinesTableView::resizeEvent 0x7ffd881c8f40
TagsTableView::resizeEvent 0x7ffd881c8f40
OrganizersTableView::resizeEvent 0x7ffd881c8f40
OutlinesTableView::resizeEvent 0x7ffd881c8ce0
OutlinesTableView::resizeEvent 0x7ffd881c8570
RecentNotesTableView::resizeEvent 0x7ffd881c8880
RecentNotesTableView::resizeEvent 0x7ffd881c8110
RecentNotesTableView::resizeEvent 0x7ffd881c8230
OutlinesTableView::resizeEvent 0x7ffd881c8230
RecentNotesTableView::resizeEvent 0x7ffd881c7e50
OutlinesTableView::resizeEvent 0x7ffd881c7e50
OrganizersTableView::resizeEvent 0x7ffd881c8830
TagsTableView::resizeEvent 0x7ffd881c8830
OutlinesTableView::resizeEvent 0x7ffd881c8830
RecentNotesTableView::resizeEvent 0x7ffd881c8830
Initial view to show 0 Os (scope is applied if active)
@Amnesia
Mind IS sleeping...
[Autolinking] indices CLEARed
Mind WITH amnesia
Saving configuration as MD:
  path: '/home/dvorka/snap/mindforger/x1/.mindforger.md'
  repo: true
  repo path: /home/dvorka/snap/mindforger/x1/mindforger-repository/repository-configuration.md'
  os: 1
Saving configuration to file /home/dvorka/snap/mindforger/x1/.mindforger.md
Saving repository configuration to /home/dvorka/snap/mindforger/x1/mindforger-repository/repository-configuration.md
Saving repository configuration to file /home/dvorka/snap/mindforger/x1/mindforger-repository/repository-configuration.md
Facet CHANGE: 0 > 1
OutlinesTableView::resizeEvent 0x7ffd881c8de0
OutlinesTableView::resizeEvent 0x7ffd881c8bc0
RecentNotesTableView::resizeEvent 0x7ffd881c8270
OutlinesTableView::resizeEvent 0x7ffd881c8270
OrganizersTableView::resizeEvent 0x7ffd881c8c50
TagsTableView::resizeEvent 0x7ffd881c8c50
OutlinesTableView::resizeEvent 0x7ffd881c8c50
RecentNotesTableView::resizeEvent 0x7ffd881c8c50
XmbTextListToTextProperty result code -2
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/accessiblebridge" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/accessiblebridge" ...
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer" ...
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqconnmanbearer.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqconnmanbearer.so, metadata=
{
"IID": "org.qt-project.Qt.QBearerEngineFactoryInterface",
"MetaData": {
    "Keys": [
	"connman"
    ]
},
"className": "QConnmanEnginePlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("connman")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqgenericbearer.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqgenericbearer.so, metadata=
{
"IID": "org.qt-project.Qt.QBearerEngineFactoryInterface",
"MetaData": {
    "Keys": [
	"generic"
    ]
},
"className": "QGenericEnginePlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("generic")
QFactoryLoader::QFactoryLoader() looking at "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqnmbearer.so"
Found metadata in lib /snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqnmbearer.so, metadata=
{
"IID": "org.qt-project.Qt.QBearerEngineFactoryInterface",
"MetaData": {
    "Keys": [
	"networkmanager"
    ]
},
"className": "QNetworkManagerEnginePlugin",
"debug": false,
"version": 329989
}


Got keys from plugin meta data ("networkmanager")
QFactoryLoader::QFactoryLoader() checking directory path "/snap/mindforger/x1/bin/bearer" ...
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqconnmanbearer.so"
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqgenericbearer.so"
loaded library "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqnmbearer.so"
OutlinesTableView::resizeEvent 0x7ffd881c8870
OutlinesTableView::resizeEvent 0x7ffd881c8be0
OutlinesTableView::resizeEvent 0x7ffd881c7790
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqconnmanbearer.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqgenericbearer.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/bearer/libqnmbearer.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so" 
QLibraryPrivate::unload succeeded on "/snap/mindforger/x1/usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so" 

Thank you for help!