Mitchell Stokes
Mitchell Stokes
This is not completely untested. I was able to have both rofi and dmenu pick up on the desktop file. However, neither of these display an icon. I inspected the...
I have updated the branch (rebased onto current `master`, removed the extra whitespace, and removed the debug print). A desktop file generated with this patch should work with the `build_apps`...
The failing test seems unrelated to this patch: ``` _________________________ test_filename_ctor_pathlib __________________________ def test_filename_ctor_pathlib(): pathlib = pytest.importorskip('pathlib') path = pathlib.Path(__file__) fn = Filename(path) > assert fn.to_os_specific_w() == str(path) E AssertionError:...
You'll need to modify a 1.11 build since it has the icon changes. You can grab a 1.11 build with: `pip install --pre --extra-index-url https://archive.panda3d.org/branches/master panda3d`
Ah, right, I think I ran into simular issues with absolute paths, which is why I was using that PKGBUILD script in the original post. PKGBUILD is for creating packages...
A "packager" in this case is referring to someone who is preparing a package for a Linux distribution's package repo. For example, someone who creates deb files for Debian or...
I do not have much to add on the pronunciation of ".exe". I usually call them "ee ex ee" files, but the readme actually has the dot, so I don't...
I might be missing something (e.g., some modern C++ thing), but don't we need to check that `_icon_image` is not `NULL`/`nullptr` before freeing it with `delete[]`? It looks like opening...
@rdb any further thoughts on this? This PR fixes issue #603.
I used this snippet in panda3d-simplepbr to test this with: ```python def modify_options(build_apps_cmd): if 'simplepbr' not in build_apps_cmd.package_data_dirs: build_apps_cmd.package_data_dirs['simplepbr'] = [ ('simplepbr/*.vert', '', {}), ('simplepbr/*.frag', '', {}), ] ``` And...