Giter VIP home page Giter VIP logo

wombat's Introduction

Wombat

Cross platform gRPC client

Github release Homebrew Cask AUR
Go version Go report card Awesome gRPC

screenshot

Features

  • Automatic parsing of proto definitions to render services and input messages
  • .proto file discovery
  • Selection of multiple services and methods
  • Configuration of TLS, including disabling TLS (plain text)
  • Input generation for all scalar types
  • Input generation for nested messages
  • Input generation for enums, including nested
  • Input generation for repeated fields
  • Input generation for oneof and map fields
  • Support for adding RPC metadata
  • Execute unary requests
  • Execute server streaming requests
  • Execute client streaming requests
  • Execute bidirectional requests
  • Cancel requests in-flight
  • Send EOF for client streaming and bi-directional streaming
  • View response messages
  • View RPC Header and Trailer
  • View full RPC statistics
  • MacOS build
  • Linux build
  • Windows build
  • Reflection API to determine RPC schema
  • Support for Google Well Known Types
  • Create multiple workspaces and workspace switching

Download

Visit the Releases page for the latest downloads.

Install

MacOS

Download and open Wombat*_Darwin_86_64.dmg, drag Wombat.app to the Applications folder and run from Applications.

Or via Homebrew

$ brew install --cask wombat

If you get this error message: "Wombat.app" can't be opened because the identity of the developer cannot be confirmed., Install by Right Click/Option Click -> Open -> Open. You'll only need to do this on first install.

Linux

Download and unarchive Wombat*_Linux_86_64.tar.gz and run.

Arch Linux AUR

$ yay -S wombat-bin

Windows

Download and unarchive Wombat*_Windows_86_64.zip and run.

wombat's People

Contributors

aschey avatar azuka avatar dependabot[bot] avatar devkanro avatar kernald avatar nunosilva800 avatar optiman avatar rogchap avatar tra4less avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wombat's Issues

build failing

i matched the version of wails your using but it fails...

But maybe i have some other dependency wrong ?

makefile:

# https://github.com/rogchap/wombat
# GRPC reflection gui tool


REPO_NAME=wombat

#WAILS_URL=github.com/wailsapp/wails/v2/cmd/wails
#WAILS_VERSION=latest

WAILS_URL=github.com/wailsapp/wails/cmd/wails
WAILS_VERSION=v1.16.3

print:
	@echo

	@echo OS: $(shell uname)
	@echo GO version: $(shell go version)
	@echo npm version: $(shell npm version)

all: print dep-os f-build b-build

dep:
	git clone [email protected]:rogchap/wombat.git -b master
dep-delete:
	rm -rf $(REPO_NAME)

dep-os:
	# wails cli. 
	go install $(WAILS_URL)@$(WAILS_VERSION)


	
f-build:
	cd $(REPO_NAME)/frontend && npm install
	cd $(REPO_NAME)/frontend && npm run build
f-serve:
	# not used
	#cd $(REPO_NAME)/frontend && npm run serve


b-doctor:
	cd $(REPO_NAME) && wails doctor
b-dev:
	cd $(REPO_NAME) && wails dev
b-serve:
	cd $(REPO_NAME) && wails serve
b-build:
	cd $(REPO_NAME) && wails build
b-dist:
	# mac in this case
	cd $(REPO_NAME) && wails build -platform darwin/arm64 -clean

bundle:
	# not used
	cd $(REPO_NAME) && chmod +x ./build.osx.sh && ./build.osx.sh

out:


 make all

OS: Darwin
GO version: go version go1.17.6 darwin/amd64
npm version: { apple: 0.0.0, npm: 8.4.1, node: 17.5.0, v8: 9.6.180.15-node.13, uv: 1.43.0, zlib: 1.2.11, brotli: 1.0.9, ares: 1.18.1, modules: 102, nghttp2: 1.46.0, napi: 8, llhttp: 6.0.4, openssl: 1.1.1m, cldr: 39.0, icu: 69.1, tz: 2021a, unicode: 13.0 }
# wails cli. TODO. modify to correct version as needed
go install github.com/wailsapp/wails/cmd/[email protected]
cd wombat/frontend && npm install

up to date, audited 258 packages in 2s

21 packages are looking for funding
  run `npm fund` for details

3 moderate severity vulnerabilities

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

VLOG causing crash

Wombat will enter a state where it always crashes immediately during startup before the GUI is visible. The issue is resolved when the VLOG file is deleted from the AppData\Roaming\Wombat\db directory. Not sure if it has to do with the size (2GB) or something else.

Running v0.50 on Windows 10.

db.zip

Crash on MacOS

Hi !

I've been trying to run the latest version on Mac 10.15.7 but it crashes immediately.
Only info I managed to get is this:

panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x477f9aa]

goroutine 46 [running]:
wombat/internal/app.(*api).GetWorkspaceOptions(0xc0004d8000, 0x4a1a4be, 0xb, 0xc0003701e0)
	/Users/runner/work/wombat/wombat/internal/app/api.go:174 +0x14a
wombat/internal/app.(*api).wailsReady(0xc0004d8000, 0x0, 0x0, 0x0)
	/Users/runner/work/wombat/wombat/internal/app/api.go:96 +0x157
created by github.com/wailsapp/wails/lib/event.(*Manager).Start.func1
	/Users/runner/go/pkg/mod/github.com/wailsapp/[email protected]/lib/event/manager.go:124 +0x457

Previous version runs flawlessly.
Let me know if there's something else I can do to give you more debug information.

Wails v2

FLux based architecture is really nice. I learnt alot from this code.

V2 looks like it resolves manny Windows issues that are currently worked around

@rogchap Are you waiting for Linux support before moving to wails v2

Crash and auto close on Windows 11

Hello developer,
Please see the attached gif, I don't know what I should provide to you so if you have any questions, please let me know.

wombat

Empty dark gray screen on startup

Using 0.4.0 on Linux, I get an empty, dark gray (regular background colour) on startup, and nothing else. Starting from a terminal, I get this (and only this):

Overriding existing handler for signal 10. Set JSC_SIGNAL_FOR_GC if you want WebKit to use a different signal

When closing the window, the process exits normally (0).

I didn't find any flag to make it more verbose or anything. It used to work on the same machine a few weeks ago, and can't figure out what might have changed since then. I tried removing ~/.cache/wombat and ~/.local/share/Wombat, it didn't make a difference.

What can I do to get more insights to troubleshoot this?

Feature Request: Tabs for Multiple Requests

First off really great job on this project. I've had a fantastic experience using wombat. I wanted to make a feature request regarding adding tabs to the application (a very common feature in many http/grpc clients) to keep track of multiple requests. It would be awesome if the user could make a request in a workspace and then be able to make another request in a separate tab so it is easy to navigate between the requests/responses.

The use case being requests are frequently related, so for example a request is made to get posts, and then a post id can easily be copied into a separate get post request without having to manually keep track of the post ids returned from the first request.

Search is very slow

I am on Windows 10 Home 64 Bit - I installed the latest version of Wombat 0.4.0. When I get a response back from the service and I try to do a search using ctrl + f - as soon as I type in 1 - 2 characters in the search field, the application freezes for 2 - 3 seconds -- When I looked up "Task Manager" -- I noticed it goes into "very high" under Power Usage and for 2 - 3 seconds when its frozen it shows "Not Responding" -- it then resumes as normal. It does this every time anything is searched.

The response that I am trying to do the find (ctrl + f) on is about 1kb (about 1300 characters).

image

Love the utility though, thanks for doing this! : )

Immediately retry a disconnected grpc connection before attempting to send a request

If you connect to a grpc server with Wombat and then stop the server for some reason, the grpc client used by Wombat will continue to attempt to connect to the server using an exponential backoff. If you stop the server for a while and then start it up again, it may be a while before Wombat attempts to retry the connection due to the exponential backoff. As a result, you may not be able to send a message to the server for a bit while you wait for the client to reconnect. Currently the best way around this is to manually disconnect from the server and then reconnect, but it would be convenient if Wombat immediately retried the connection before attempting to send a message, removing the wait time for the connection to reestablish.

Feature Request: Multi Environment Workspace

First of all, fantastic work guys. Thank you. 🏅

I was thinking it would have been great if we could label workspaces and have a dropdown in the UI to switch between different workspaces (environments). It would also be useful to be able to choose where the workspaces are stored on the disk.

Keep up the good work fellas.

Failed to find any PEM data in certificate input

Hi,

I have generated the cert and key as such:
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365

Doing openssl verify everything comes ok with both cert and key. However Wombat does not accept the cert (see picture below)
Screenshot 2021-02-06 at 01 22 19

Appimage is broken

Downloading the targz and running the binary works perfectly, but the appimage crashes on running. Looks like its incorrectly packaged.

➜  Downloads ./Wombat_v0.2.0_Linux_x86_64.AppImage        

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.558: Theme parsing error: gtk.css:94:21: '-gtk-outline-radius' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.558: Theme parsing error: gtk.css:95:28: '-gtk-secondary-caret-color' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.558: Theme parsing error: gtk.css:112:20: '-gtk-icon-effect' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.558: Theme parsing error: gtk.css:148:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:156:2: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:168:21: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:214:13: 'caret-color' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:222:8: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:224:10: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:258:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:261:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:278:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:279:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:295:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:314:20: '-gtk-icon-effect' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:331:20: '-gtk-icon-effect' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:347:46: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:354:48: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:363:78: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:373:35: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:379:37: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:386:39: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:392:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:414:11: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:430:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:431:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:440:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:446:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:454:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:466:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:471:13: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:489:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:501:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:511:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:527:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:529:27: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:550:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:559:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:562:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:571:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:573:34: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:594:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:605:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:660:48: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:667:50: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:671:50: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:680:82: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:692:26: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:698:28: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:705:30: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:715:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:724:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:736:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:739:28: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:756:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:811:39: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:818:41: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:822:41: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:832:33: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:842:28: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:848:30: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:855:32: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:865:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:874:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:886:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:889:30: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:906:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.564: Theme parsing error: gtk.css:947:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.565: Theme parsing error: gtk.css:981:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.565: Theme parsing error: gtk.css:986:38: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.565: Theme parsing error: gtk.css:988:40: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.565: Theme parsing error: gtk.css:994:49: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.565: Theme parsing error: gtk.css:996:51: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.565: Theme parsing error: gtk.css:1013:25: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.565: Theme parsing error: gtk.css:1060:120: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.565: Theme parsing error: gtk.css:1076:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.568: Theme parsing error: gtk.css:1141:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.568: Theme parsing error: gtk.css:1143:11: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.568: Theme parsing error: gtk.css:1157:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.568: Theme parsing error: gtk.css:1161:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.568: Theme parsing error: gtk.css:1165:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.568: Theme parsing error: gtk.css:1169:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.568: Theme parsing error: gtk.css:1173:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1177:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1181:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1185:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1187:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1191:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1195:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1199:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1205:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1209:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1213:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1217:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1221:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1225:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1229:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1233:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1235:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1239:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1243:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1247:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1251:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1255:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1259:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.569: Theme parsing error: gtk.css:1263:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1267:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1271:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1275:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1279:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1283:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1287:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1291:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1295:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1301:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1305:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1309:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1313:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1317:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1321:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1325:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1329:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1331:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1335:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1339:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1343:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1349:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1353:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1357:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.570: Theme parsing error: gtk.css:1361:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1365:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1369:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1373:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1377:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1379:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1383:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1387:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1391:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1395:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1399:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1403:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1407:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1411:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1415:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1419:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1423:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1427:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1431:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1435:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1439:6: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1447:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1453:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1459:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1465:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.571: Theme parsing error: gtk.css:1471:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1477:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1483:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1489:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1491:25: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1497:25: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1503:25: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1509:25: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1526:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1527:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1532:72: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1549:25: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1594:12: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1596:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1599:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1632:12: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1634:14: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1654:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1655:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.572: Theme parsing error: gtk.css:1657:9: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1667:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1708:18: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1717:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1759:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1768:13: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1781:22: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1827:13: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1839:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1847:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.573: Theme parsing error: gtk.css:1856:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1857:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1896:36: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1907:35: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1907:35: Missing closing bracket for :not()

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1913:37: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1913:37: Missing closing bracket for :not()

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1920:30: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1932:58: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1950:30: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1977:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.574: Theme parsing error: gtk.css:1978:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2304:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2324:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2333:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2345:40: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2351:42: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2381:48: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2400:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2421:40: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.575: Theme parsing error: gtk.css:2427:42: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.576: Theme parsing error: gtk.css:2437:49: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.576: Theme parsing error: gtk.css:2446:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.576: Theme parsing error: gtk.css:2467:42: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.576: Theme parsing error: gtk.css:2473:44: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.576: Theme parsing error: gtk.css:2483:51: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.576: Theme parsing error: gtk.css:2526:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2655:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2658:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2659:15: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2738:17: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2742:19: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2779:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2780:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2783:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2784:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.577: Theme parsing error: gtk.css:2919:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:2924:23: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:2948:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:2949:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:2957:18: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:2961:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:2975:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:2976:15: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:3001:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:3002:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:3003:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:3027:17: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:3039:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:3040:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.578: Theme parsing error: gtk.css:3057:20: '-gtk-icon-effect' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3168:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3169:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3177:37: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3185:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3186:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3220:15: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3221:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3280:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3281:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3285:20: Not a valid image

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3288:22: Not a valid image

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3290:22: Not a valid image

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3292:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3293:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3295:22: Not a valid image

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.579: Theme parsing error: gtk.css:3299:24: Not a valid image

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3387:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3390:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3399:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3400:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3419:21: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3424:32: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3432:23: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3438:34: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3442:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3443:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3447:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3450:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3452:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3453:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3462:26: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3468:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3472:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3479:23: '-gtk-outline-radius' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3482:23: '-gtk-outline-radius' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3486:13: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3491:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3501:17: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3504:49: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3508:30: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.580: Theme parsing error: gtk.css:3516:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3526:24: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3535:24: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3538:24: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3554:24: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3556:35: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3587:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3588:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3590:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3592:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3593:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3595:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3597:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3598:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3607:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3608:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3617:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3618:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3626:57: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3637:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3638:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3646:66: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3657:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3658:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3667:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.581: Theme parsing error: gtk.css:3668:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3677:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3678:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3686:57: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3697:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3698:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3706:66: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3717:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3718:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3727:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3728:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3737:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3738:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3746:55: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3757:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3758:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3766:64: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3777:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3778:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3787:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3788:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3797:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3798:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3806:55: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3817:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3818:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3826:64: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.582: Theme parsing error: gtk.css:3837:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3838:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3840:24: Not a valid image

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3849:140: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3859:134: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3869:134: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3919:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3920:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3932:21: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3935:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3936:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3947:15: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3948:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3952:15: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3953:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3961:15: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3964:15: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3967:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3970:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3974:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3976:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3979:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3980:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.583: Theme parsing error: gtk.css:3989:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:3997:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4005:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4007:21: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4021:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4023:32: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4142:24: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4144:22: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4148:40: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4150:42: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4152:42: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4154:44: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4168:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4176:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4191:37: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4201:46: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.584: Theme parsing error: gtk.css:4206:48: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4218:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4224:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4233:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4237:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4245:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4248:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4250:40: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4266:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4269:29: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4272:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4277:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4278:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4283:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4284:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4304:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4312:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4320:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4322:46: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4337:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4340:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4344:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4367:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4384:9: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4389:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4402:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.585: Theme parsing error: gtk.css:4403:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4512:16: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4514:18: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4516:20: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4518:18: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4521:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4528:16: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4532:18: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4534:18: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4617:30: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4626:41: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4670:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4686:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4692:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.586: Theme parsing error: gtk.css:4695:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4716:23: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4732:34: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4770:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4772:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4773:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4809:20: '-gtk-icon-effect' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4846:42: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4848:44: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4925:15: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.587: Theme parsing error: gtk.css:4926:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.588: Theme parsing error: gtk.css:5236:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.588: Theme parsing error: gtk.css:5248:16: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.588: Theme parsing error: gtk.css:5284:34: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.588: Theme parsing error: gtk.css:5312:13: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.588: Theme parsing error: gtk.css:5313:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.589: Theme parsing error: gtk.css:5346:26: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.589: Theme parsing error: gtk.css:5447:50: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.589: Theme parsing error: gtk.css:5450:52: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.589: Theme parsing error: gtk.css:5462:14: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.589: Theme parsing error: gtk.css:5541:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.589: Theme parsing error: gtk.css:5542:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.589: Theme parsing error: gtk.css:5554:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.589: Theme parsing error: gtk.css:5555:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.590: Theme parsing error: gtk.css:5608:12: 'min-height' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.590: Theme parsing error: gtk.css:5609:11: 'min-width' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.590: Theme parsing error: gtk.css:5661:21: '-gtk-outline-radius' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.590: Theme parsing error: gtk.css:5817:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.590: Theme parsing error: gtk.css:5828:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.590: Theme parsing error: gtk.css:5911:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.591: Theme parsing error: gtk.css:6136:35: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.591: Theme parsing error: gtk.css:6139:37: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.591: Theme parsing error: gtk.css:6142:37: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.591: Theme parsing error: gtk.css:6180:24: Missing name of pseudo-class

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.591: Theme parsing error: gtk.css:6202:18: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.591: Theme parsing error: gtk.css:6210:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.591: Theme parsing error: gtk.css:6218:20: '-gtk-icon-shadow' is not a valid property name

(Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.591: Theme parsing error: gtk.css:6220:26: Missing name of pseudo-class
Gtk-Message: 09:31:01.609: Failed to load module "canberra-gtk-module"
Gtk-Message: 09:31:01.609: Failed to load module "pk-gtk-module"
Gtk-Message: 09:31:01.610: Failed to load module "canberra-gtk-module"
Gtk-Message: 09:31:01.611: Failed to load module "pk-gtk-module"

** (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): ERROR **: 09:31:01.703: Unable to fork a new child process: Failed to execute child process “/usr/lib/x86_64-linux-gnu/webkit2gtk-4.0/WebKitWebProcess” (No such file or directory)
SIGTRAP: trace trap
PC=0x7febe01ce937 m=0 sigcode=128
signal arrived during cgo execution

goroutine 1 [syscall, locked to thread]:
runtime.cgocall(0xb64020, 0xc0004efb38, 0x0)
	/opt/hostedtoolcache/go/1.15.3/x64/src/runtime/cgocall.go:133 +0x5b fp=0xc0004efb08 sp=0xc0004efad0 pc=0x413abb
github.com/wailsapp/wails/lib/renderer/webview._Cfunc_CgoWebViewCreate(0x334000004b0, 0x181d9c0, 0x181d9e0, 0x1, 0x0)
	_cgo_gotypes.go:110 +0x4e fp=0xc0004efb38 sp=0xc0004efb08 pc=0x91b64e
github.com/wailsapp/wails/lib/renderer/webview.NewWebview(0xd980e3, 0x6, 0x0, 0x0, 0x4b0, 0x334, 0x1, 0xc0003dc030, 0xa, 0xe)
	/home/runner/go/pkg/mod/github.com/wailsapp/[email protected]/lib/renderer/webview/webview.go:261 +0x105 fp=0xc0004efb98 sp=0xc0004efb38 pc=0x91c185
github.com/wailsapp/wails/lib/renderer.(*WebView).Initialise(0xc000444180, 0xf253c0, 0xc00008c100, 0xf1d1a0, 0xc000444240, 0xf1fba0, 0xc00008a050, 0x41d950, 0xc0003dc010)
	/home/runner/go/pkg/mod/github.com/wailsapp/[email protected]/lib/renderer/webview.go:56 +0x345 fp=0xc0004efc90 sp=0xc0004efb98 pc=0x91e065
github.com/wailsapp/wails.(*App).start(0xc00008c080, 0x0, 0x0)
	/home/runner/go/pkg/mod/github.com/wailsapp/[email protected]/app.go:114 +0x1a8 fp=0xc0004efdb0 sp=0xc0004efc90 pc=0x922448
github.com/wailsapp/wails.(*App).Run(0xc00008c080, 0xd671e0, 0xc000444300)
	/home/runner/go/pkg/mod/github.com/wailsapp/[email protected]/app.go:93 +0xb0 fp=0xc0004efe28 sp=0xc0004efdb0 pc=0x922170
wombat/internal/app.Run(0x0)
	/home/runner/work/wombat/wombat/internal/app/run.go:53 +0x3ae fp=0xc0004eff70 sp=0xc0004efe28 pc=0xb5cc2e
main.main()
	/home/runner/work/wombat/wombat/main.go:9 +0x25 fp=0xc0004eff88 sp=0xc0004eff70 pc=0xb62a85
runtime.main()
	/opt/hostedtoolcache/go/1.15.3/x64/src/runtime/proc.go:204 +0x209 fp=0xc0004effe0 sp=0xc0004eff88 pc=0x448d69
runtime.goexit()
	/opt/hostedtoolcache/go/1.15.3/x64/src/runtime/asm_amd64.s:1374 +0x1 fp=0xc0004effe8 sp=0xc0004effe0 pc=0x47b901

rax    0x0
rbx    0x1
rcx    0x1
rdx    0x7febd48b9a80
rdi    0xe
rsi    0x0
rbp    0x0
rsp    0x7fff56c6c720
r8     0x0
r9     0xfc
r10    0x190a190
r11    0x0
r12    0x3
r13    0x7fff56c6c760
r14    0x7febe01d0670
r15    0x0
rip    0x7febe01ce937
rflags 0x202
cs     0x33
fs     0x0
gs     0x0

BTW, Wombat is great, thanks for making it.

Export/Import request to/from grpcurl

Sometimes I need to share my request settings/metadata with my team.
I will export a curl command for other people, they can import the curl command in PostMan or other something in HTTP/Json case.

Maybe we can support export and import request to grpcurl?

grpcurl -d '{"id": 1234, "tags": ["foo","bar"]}' \
    grpc.server.com:443 my.custom.server.Service/Method

Mac build does not run on Mac OSX 10.14

There are no features that specifically require 10.15, but we are using GitHub Actions to create the build and the default VM is 10.15.
Check to see if we can do a build for 10.14.

flatbuffers ?

I am looking for a GRPC / flatbuffers equivalent of wombat :to aid with debugging flatbufers.

If anyone has any ideas around this would be awesome

flatbuffers can work because you can also do reflection in golang.
I dont think flatbuffers golang has support for Flexbuffers yet from my scanning of the google code

oneof fields with only one option block the UI

I have an edge case with a oneof field with only one possible value, like:

message Bar {
}

message Foo {
  oneof value {
    Bar bar = 1;
  }
}

bar does show up in the dropdown but when I select it, the UI gets in a strange state where everything is either unresponsive or pressing buttons doesn't have any effect. oneof with several options work fine. This is on 0.3.2, I don't recall having this problem on 0.2.0. I'm on Mac if that matters.

Wombat (macos Catalina x86) - crashes when opening proto with imports

After setting up wombat workspace towards my proto and respective imports (google api annotation and http) the application just crashes after a few seconds. It continues to happen even if I reopen it and hence impossible to use.

I also cleaned all the configurations with app cleaner to start from a fresh Wombat (latest version) and the exact same problem occurs. I can't even see the forms for the respective service. Screenshots below.

Images:
https://ibb.co/DfJnJY3
https://ibb.co/j5mxqs7

Add support for multiple workspaces

Similar to how Insomnia lays out multiple pre-defined requests. Provide the ability to have requests sit on their own, or be grouped within a folder.

This is a major usability piece as working on multiple endpoints over time will get very tedious to keep updated Wombat

Screenshot 2020-11-11 at 09 28 32

Wombat flashes and crashes while installing in Win 10

I have downloaded Wombat_v0.4.0_Windows_x86_64 from the repo and when I clicked on the application file, it goes through windows defender smartscreen, when clicked on run anyway, the application flashes n crashes .
Could you please help me with this.

Send binary metadata headers as base64

I attempted to send binary metadata headers encoded as base64 but couldn't deserialize the value properly on the server side. I might have done something wrong but could I get confirmation whether this is even theoretically supposed to work with the current implementation ? And if not is it something we could add ? :)

Cheers

Can't see more than one service when using reflection

Hi all,

I have a server with two services: Service_A and Service_B. When I use reflection I can only see Service_A. I can see both services if I manually use the .proto files. Any idea what I'm doing wrong?

Using Wombat_v0.4.0_Linux_x86_64.tar.gz

Thanks

wombat

server.cpp:

#include <grpcpp/grpcpp.h>
  
#include <string>

#include "service_a.grpc.pb.h"
#include "service_b.grpc.pb.h"

using grpc::Server;
using grpc::ServerBuilder;
using grpc::ServerContext;
using grpc::Status;

using service_a::Service_A;
using service_b::Service_B;

class ServiceAImplementation final : public Service_A::Service {};

class ServiceBImplementation final : public Service_B::Service {};

void Run() {
  std::string address{"0.0.0.0:5000"};
  ServiceAImplementation service_a;
  ServiceBImplementation service_b;

  ServerBuilder builder;

  builder.AddListeningPort(address, grpc::InsecureServerCredentials());
  builder.RegisterService(&service_a);
  builder.RegisterService(&service_b);

  std::unique_ptr<Server> server(builder.BuildAndStart());
  std::cout << "server listening on port: " << address << std::endl;

  server->Wait();
}

int main(int argc, char** argv) {
  Run();

  return 0;
}

service_b.proto:

syntax = "proto3";
  
package service_b;

service Service_B{
  rpc DoThing(ThingIn) returns (ThingOut) {}
}

message ThingIn {}
message ThingOut {}

service_a.proto:

syntax = "proto3";
  
package service_a;

service Service_A{
  rpc DoThing(ThingIn) returns (ThingOut) {}
}

message ThingIn {}
message ThingOut {}

Working with grpc-client-cli:

$ grpc-client-cli localhost:5000
? Choose a service:  [Use arrows to move, enter to select, type to filter]
→ grpc.reflection.v1alpha.ServerReflection
  service_a.Service_A
  service_b.Service_B

Build instructions would make testing contributions easier

After fighting for a couple of days with Go / Qt / etc it would be really helpful to have a short description of the requirements / dependencies for this project and the build steps to create a DMG. This will make testing of branches easier rather than waiting for new releases. Can't test your latest PR as I have yet to successfully build the tool through to a DMG. Apologies.

Service/method names not rendered in lubuntu 20.04.4 LTS

Service/method names not rendered in lubuntu 20.04 LTS:
wombat1
wombat2
wombat3

$ cat /etc/os-release 
NAME="Ubuntu"
VERSION="20.04.4 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.4 LTS"
VERSION_ID="20.04"

LXQt version 0.14.1

It will get stuck with some server

like grpc server 3.114.33.194:50051
use reflection
and then choose com.lion.device.DeviceController
then wombat will hang, you can't do anything except exit.

Fix module directive in go.mod

I use to install binaries like these via go get. This is impossible due to the following error:

go get: github.com/rogchap/wombat@none updating to
	github.com/rogchap/[email protected]: parsing go.mod:
	module declares its path as: wombat
	        but was required as: github.com/rogchap/wombat

This is because the module directive in the go.mod file is written as:

module wombat

whereas it would correctly be:

module github.com/rogchap/wombat

Are there any reasons not to change the module directive?

WIndows 11

Has anybody been able to run this in Windows 11? I get a blank screen with no diagnostic information.

Feature request: Search in responses

Sometimes responses are complex and big, or they are simple but long streams. It would be very useful to be able to search for strings in the response.
For example, I sometimes follow streams and do changes on the server, and I am checking if messages on the stream change accordingly. This is OK if the responses are very simple and not changing too fast. But many times it is just too easy to miss the messages by scanning the responses by eye.
A search function would provide great value to Wombat and allow us, developers, to quickly check for the interesting parts of the response messages.

Hard to open macOS build

wombat build: Wombat_0.1.0-beta.1_Darwin_x86_64.dmg
macOS version: 10.15.6 (19G2021)

I just tried 2 ways to open wombat, open it directly in the dmg file, or drag the application to /Applications folder and then open it from /Applications folder.

  1. Open it directly from the dmg container without dragging it to /Applications folder.

CleanShot 2020-09-24 at 11 21 00@2x

Later on I got this warning:

CleanShot 2020-09-24 at 11 20 49@2x

I can ignore it and change settings in System Preferences / Security & Privacy and finally can open it, but it's annoying because I have to open it from dmg container directly.

  1. Drag wombat to /Applications folder and then open it from /Applications folder

The Icon of wombat becomes broken in /Applications folder

CleanShot 2020-09-24 at 11 21 25@2x

When I try to open it, I got this error message:

CleanShot 2020-09-24 at 11 22 05@2x

Even if I changed the settings of System Preferences / Security & Privacy, I can not open wombat from /Applications folder eventually.

"Failed to load RPC schema" because imported files are not identified

Hello,

This is a really neat project and very excited to get it working and introduce it to my team. I am messing around with it and having a little bit of trouble.

I have a Root file that defines my service, which I am importing. I have also had wombat traverse my Proto Source files which include some shared objects which are imported in multiple service definitions.

However when I try to Connect I get the following error (some stuff is redacted):
Screen Shot 2020-11-13 at 10 23 40 AM

Now my service definition includes importing the file in question like this:
import "idl/shared/common/common.proto";

It sort of seems like it is looking for an import to be defined as an absolute path rather than the relative path? I am not sure what are the next steps here, it seems like I might just be misunderstanding how to set up a workspace. Let me know if anything seems obviously wrong.

panic: send on closed channel (when proxy closes connection)

goroutine 104 [running]:
wombat/internal/app.(*transportCreds).ClientHandshake(0xc0070bb240, 0x104e840, 0xc007182ed0, 0xc0004de300, 0x16, 0x1057140, 0xc0004b4908, 0x0, 0x0, 0x103ed20, ...)
	/home/runner/work/wombat/wombat/internal/app/client.go:31 +0x16e
google.golang.org/grpc/internal/transport.newHTTP2Client(0x104e800, 0xc007180300, 0x104e780, 0xc0070cc740, 0xc0004de300, 0x16, 0xc0004de300, 0x16, 0x0, 0x0, ...)
	/home/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:225 +0x62c
google.golang.org/grpc/internal/transport.NewClientTransport(...)
	/home/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:577
google.golang.org/grpc.(*addrConn).createTransport(0xc0002c8840, 0xc0004de300, 0x16, 0xc0004de300, 0x16, 0x0, 0x0, 0x0, 0x0, 0xc0070af8c0, ...)
	/home/runner/go/pkg/mod/google.golang.org/[email protected]/clientconn.go:1297 +0x428
google.golang.org/grpc.(*addrConn).tryAllAddrs(0xc0002c8840, 0xc0070cc000, 0x1, 0x1, 0xc00f8284ee6e4089, 0x87523494e, 0x17c3d40, 0x1058de0, 0xc0001f0000, 0x0, ...)
	/home/runner/go/pkg/mod/google.golang.org/[email protected]/clientconn.go:1227 +0x3c8
google.golang.org/grpc.(*addrConn).resetTransport(0xc0002c8840)
	/home/runner/go/pkg/mod/google.golang.org/[email protected]/clientconn.go:1142 +0x23f
created by google.golang.org/grpc.(*addrConn).connect
	/home/runner/go/pkg/mod/google.golang.org/[email protected]/clientconn.go:825 +0x12a

request: Workspace headers/metadata.

Our gRPC endpoints currently use a combination of TLS and oauth2 bearer tokens so support for additional headers without mutual TLS would allow us to authenticate with Wombat.

State loaded from DB is a miss-match with loaded descriptor causes error

image

This happens when a breaking change is made to a proto, but the DB still loads up a field that is no longer valid.

There are two possible fixes:

  1. Make sure state loaded from DB matches the current method descriptor before sending to frontend
  2. Ignore unknown fields when unmarshaling from the frontend (may not be possible, and may have undesired side effects)

crash with stack overflow right after UI loads

Hey, for some reason after I made some changes to my protos Wombat started to crash right after the UI comes up.

The error I'm seeing in the console:

fatal error: stack overflow

runtime stack:
runtime.throw(0x4a17f2e, 0xe)
	/Users/runner/hostedtoolcache/go/1.16.3/x64/src/runtime/panic.go:1117 +0x72
runtime.newstack()
	/Users/runner/hostedtoolcache/go/1.16.3/x64/src/runtime/stack.go:1069 +0x7ed
runtime.morestack()
	/Users/runner/hostedtoolcache/go/1.16.3/x64/src/runtime/asm_amd64.s:458 +0x8f

goroutine 102 [running]:
runtime.heapBitsSetType(0xc050f0c300, 0x80, 0x80, 0x49c5ca0)
	/Users/runner/hostedtoolcache/go/1.16.3/x64/src/runtime/mbitmap.go:815 +0xc05 fp=0xc02ca003c0 sp=0xc02ca003b8 pc=0x401ab05
runtime.mallocgc(0x80, 0x49c5ca0, 0x1, 0x80015a4150)
	/Users/runner/hostedtoolcache/go/1.16.3/x64/src/runtime/malloc.go:1096 +0x5c5 fp=0xc02ca00448 sp=0xc02ca003c0 pc=0x4011265
runtime.growslice(0x49c5ca0, 0x0, 0x0, 0x0, 0x1, 0xc02ca00520, 0x90015a4430, 0x0)
	/Users/runner/hostedtoolcache/go/1.16.3/x64/src/runtime/slice.go:230 +0x1e9 fp=0xc02ca004b0 sp=0xc02ca00448 pc=0x4052069
wombat/internal/app.fieldViewsFromDesc(0x4da7c28, 0xc000431b08, 0xc000431b00, 0xc04c9ff630, 0x0, 0xc02ca00700, 0x422a5a5, 0xc000446ea0, 0x4dad200)
	/Users/runner/work/wombat/wombat/internal/app/api.go:707 +0x43f fp=0xc02ca006b0 sp=0xc02ca004b0 pc=0x4763aff
wombat/internal/app.messageViewFromDesc(0x4dad278, 0xc000446ea0, 0xc04c9ff630, 0xc00022cff0, 0x1, 0xc050f0c280)
	/Users/runner/work/wombat/wombat/internal/app/api.go:627 +0x125 fp=0xc02ca00710 sp=0xc02ca006b0 pc=0x4763305
wombat/internal/app.fieldViewsFromDesc(0x4da7c28, 0xc00029cc08, 0xc00029cc00, 0xc04c9ff630, 0x0, 0xc02ca00960, 0x422a5a5, 0xc00023a1a0, 0x4dad200)
	/Users/runner/work/wombat/wombat/internal/app/api.go:699 +0x4e5 fp=0xc02ca00910 sp=0xc02ca00710 pc=0x4763ba5
wombat/internal/app.messageViewFromDesc(0x4dad278, 0xc00023a1a0, 0xc04c9ff630, 0xc00022d0e0, 0x2, 0xc050f0a700)
.
.
.
wombat/internal/app.fieldViewsFromDesc(0x4da7c28, 0xc00029cc08, 0xc00029cc00, 0xc04c9ff630, 0x0, 0xc02ca07900, 0x422a5a5, 0xc00023a1a0, 0x4dad200)
	/Users/runner/work/wombat/wombat/internal/app/api.go:699 +0x4e5 fp=0xc02ca078b0 sp=0xc02ca076b0 pc=0x4763ba5
...additional frames elided...

My protos:

syntax = "proto3";
package spinci;
option go_package = "github.com/spin-ci/spind/pkg/proto";

import "pkg/proto/task.proto";
import "pkg/proto/runtime.proto";

import "google/protobuf/empty.proto";
import "google/protobuf/timestamp.proto";

service DaemonService {
    rpc Version(google.protobuf.Empty) returns (VersionResponse);

    rpc ExecTask(ExecTaskRequest) returns (ExecTaskResponse);

    rpc GetLogs(GetLogsRequest) returns (stream GetLogsResponse);
}

message VersionResponse {
    string daemon_version = 1;
    string runtime_type = 2;
    oneof runtime {
        DockerMachineInfo docker_machine = 3;
        DockerNativeInfo docker_native = 4;
    }
}

message ExecTaskRequest {
    Task task = 1;
}

message ExecTaskResponse {
    string id = 1;
}

message GetLogsRequest {
    string id = 1;
    bool follow = 2;
    bool timestamps = 3;
    bool stderr = 4;
}

message GetLogsResponse {
    bytes data = 1;
    Stream stream = 2;
    google.protobuf.Timestamp timestamp = 3;
}

enum Stream {
    OUT = 0;
    ERR = 1;
    IN = 2;
}

message Metadata {
    string id = 1;
    google.protobuf.Timestamp created_at = 2;
}


message DockerMachineInfo {
    string driver = 1;
    int64 mem = 2;
    int32 cpu = 3;
    string kernel_version = 4;
    string engine_version = 5;
    string engine_os_arch = 6;
    string client_version = 7;
    string client_os_arch = 8;
}

message DockerNativeInfo {
    string kernel_version = 1;
    string engine_version = 2;
    string engine_os_arch = 3;
    string client_version = 4;
    string client_os_arch = 5;
}

enum TaskState {
    UNKNOWN = 0;
    CREATED = 1;
    RUNNING = 2;
    SUCCESS = 3;
    ERROR = 4;
}

message Task {
    Metadata metadata = 1;
    TaskSpec spec = 2;
    TaskStatus status = 3;
}

message TaskSpec {
    string image = 1;
    string command = 2;
    repeated string args = 3;
    repeated string env = 4;
}

message TaskStatus {
    TaskState state = 1;
    google.protobuf.Timestamp from = 2;
}

Not working on mac

First, thanks for creating this: I found this on Reddit.

For some reason, I've tried multiple versions but haven't been able to get them to work on a Mac. I get the error below regardless of version:

image

I'm running macOs Catalina 10.15.7 (19H2).

Display binary data as base64

When a RPC returns binary data (type bytes), it's currently represented as JSON-encoded UTF-8. However, that is not convenient and it will corrupt messages that aren't valid UTF-8. Suggest representing the data as base64-encoded string instead.

PS: I really <3 this app and it's already been extremely useful to me... and I found it only today :) Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.