Custom Query (230 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (70 - 72 of 230)

Ticket Resolution Summary Owner Reporter
#305 fixed Invalid signatures Matteo Ipri
Description

Hi all, I can not install xpra on Ubuntu 17.10 Artful AArdvark because I get the following:

W: GPG error: http://winswitch.org artful Release: The following signatures were invalid: EXPKEYSIG 18ADB31CF18AD6BB Antoine Martin <[email protected]>
E: The repository 'http://winswitch.org artful Release' is not signed.

I followed instructions on: https://winswitch.org/downloads/debian-repository.html?dist_select=artfulbeta

and on: https://winswitch.org/trac/ticket/304

Steps to reproduce:

apt-get install curl
curl https://winswitch.org/gpg.asc | apt-key add -

and

apt-get install dirmngr
apt-key adv --fetch-keys https://xpra.org/gpg.asc

both get me the above message; while

apt-key adv --keyserver keys.gnupg.net --recv-keys F18AD6BB

results in a connection timeout.

Please advice, Thanks

#242 fixed Additional NX options madmonk
Description

The composite option in the nx.conf configuration file currently doesn't actually seem to turn compositing on or off. It's fairly broken in nx anyway but may still have some value in certain apps and would therefore be good if it could be set at the application level if possible. The biggest problem when it is enabled is that certain UI elements are completely invisible. Conversely alpha blended areas of the UI appear completely black when disabled.

To turn on compositing I modified...

/usr/lib/winswitch/winswitch/virt/nx_server_util.py

and added the following code.

        def start_display(self, session, user, is_preload):

                if session.full_desktop:
                        args_list += self.get_X_geometry_args(session.screen_size)

+                args_list += ["+extension","Composite"]
+                args_list += ["-dpi", "96"]
+                #args_list += ["-nocomposite"]

                args_list += ["-name", name, session.display]
                env = session.get_env();

Perhaps the composite setting from the configuration file could enable or disable the extension as a workaround for this. I can also confirm that setting composite off in the nx.conf configuration file does not appear to disable compositing when the Composite extension is loaded as above. Likewise it would be nice if the DPI settings could be changed.

#243 fixed Unity specific menu options from .desktop files being prioritised over defaults Antoine Martin madmonk
Description

The Win Switch menu appears to offer the last choice in the .desktop file these typically appear to be the unity specific options which would normally be ignored / hidden in other environments. The files can of course be copied and modified which clears up the problem. It would of course be nice if the relevant parser could be adjusted to take the 1st option in the file (which is the default option AFAIK).

e.g.

Exert from the firefox.desktop file...

From the beginning of the file

[Desktop Entry]
Version=1.0
Name=Firefox Web Browser
....
Exec=firefox %u

The Win Switch menu shows the last option however....

From the end of the file

[Desktop Action NewPrivateWindow]
Name=Open a New Private Window
...
Exec=firefox -private-window
OnlyShowIn=Unity;
Note: See TracQuery for help on using queries.