Simple GUI app for Gnome 3 that provides a menu for initiating SSH/Telnet/Custom Apps connections. (The site extensions.gnome.org does not work well and I can not upload the latest version of "Connection Manager" (https://bugzilla.gnome.org/show_bug.cgi?id=689994). Please, download the latest version from GitHub or go to https://extensions.gnome.org/extension/699/connection-manager/. Thanks.)
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
21 | Active |
20 | Active |
19 | Active |
18 | Active |
17 | Active |
15 | Active |
14 | Rejected |
13 | Active |
12 | Active |
11 | Active |
10 | Rejected |
9 | Active |
8 | Rejected |
7 | Rejected |
6 | Active |
5 | Active |
4 | Inactive |
3 | Active |
2 | Rejected |
1 | Rejected |
Unfortunately, deleting is not enough: it removes the property, but doesn't destroy the object until GC. So no, this is not an acceptable solution.
What is an acceptable solution? Is it necessary destroy the Connection Manager class? Or only file monitor? Have you some example or link from which start?
You need to prevent your signal handler from being invoked. Many ways to do this exist: you can cancel the file monitor (monitor.cancel()), you can disconnect the signal (monitor.disconnect(signalId), where signalId is the return value from connect), you can dispose the file monitor object (monitor.run_dispose()).