1
0
mirror of https://invent.kde.org/network/krfb synced 2024-07-01 07:24:29 +00:00
Commit Graph

40 Commits

Author SHA1 Message Date
Tim Jansen
60f6e1f35e Extend VNC protocol to let the client enable/disable the background.
svn path=/trunk/kdenetwork/krfb/; revision=202747
2003-01-25 17:31:36 +00:00
Tim Jansen
fc0d25ee39 Patch by Karl Vogel: add option to disable the kdesktop wallpaper
when a client connects.

(Also fixes a few problems with shortcuts in the KCM dialog)

svn path=/trunk/kdenetwork/krfb/; revision=200408
2003-01-16 20:23:26 +00:00
Tim Jansen
41843cd921 replace KInetAddress with KInetInterface
svn path=/trunk/kdenetwork/krfb/; revision=196088
2002-12-28 00:30:31 +00:00
Tim Jansen
c8e2f4583a Add tooltips to systray icon
svn path=/trunk/kdenetwork/krfb/; revision=195816
2002-12-26 02:55:34 +00:00
Tim Jansen
4015cb8b89 set RFB desktop name
svn path=/trunk/kdenetwork/krfb/; revision=191529
2002-12-01 23:36:16 +00:00
Tim Jansen
38f4d170f5 implemented configurable SLP lifetimes in kinet
svn path=/trunk/kdenetwork/krfb/; revision=191284
2002-11-30 16:33:00 +00:00
Tim Jansen
8b74e8bf11 Corrected the documentation of krfb/krdc's RFB extension. Updated TODO file.
svn path=/trunk/kdenetwork/krfb/; revision=186422
2002-10-29 19:26:08 +00:00
Tim Jansen
90ceb010a2 Always write the configuration to the dialogs, not only when
the number of invitation changes. This fixes bug 48897, because
a side-effect in loadFromKConfig() deletes the list of invitations
in the 'manage invitations' dialog.


@@ -274,10 +274,9 @@ void Configuration::invalidateOldInvitat
 void Configuration::refreshTimeout() {
        unsigned int invNum = invitationList.size();
        loadFromKConfig();
-       if (invNum != invitationList.size()) {
-               saveToDialogs();
+       saveToDialogs();
+       if (invNum != invitationList.size())
                emit invitationNumChanged(invitationList.size());
-       }
 }

svn path=/trunk/kdenetwork/krfb/; revision=182854
2002-10-08 22:16:26 +00:00
Tim Jansen
9adbc2e394 update todos for 3.2
svn path=/trunk/kdenetwork/krfb/; revision=182671
2002-10-07 23:16:34 +00:00
Tim Jansen
5b7e54229f 2 new TODO items: displaying a user-readable name in the new connection dialog (for 3.1) and some smart way to find out the avalable bandwidth between two hosts (for 3.2)
svn path=/trunk/kdenetwork/krfb/; revision=175548
2002-09-03 18:04:24 +00:00
Tim Jansen
d0e23cc700 TODO update
svn path=/trunk/kdenetwork/krfb/; revision=172690
2002-08-19 15:06:12 +00:00
Tim Jansen
9ad9d64ca6 Move KServiceRegistry members into private class
svn path=/trunk/kdenetwork/krfb/; revision=171547
2002-08-12 11:26:39 +00:00
Tim Jansen
4e6c13594e Removed some outdated docs
svn path=/trunk/kdenetwork/krfb/; revision=170016
2002-08-01 19:10:31 +00:00
Tim Jansen
cb9f1c9c96 Added KCM option to disable SLP announcements
svn path=/trunk/kdenetwork/krfb/; revision=168752
2002-07-25 20:58:42 +00:00
Tim Jansen
44c9c67df1 Updated status of 3.1, added stuff to the 3.2 TODOs
svn path=/trunk/kdenetwork/krfb/; revision=168236
2002-07-22 20:06:51 +00:00
Tim Jansen
41a9dc2161 LAN-Browsing support for krfb using OpenSLP (krdc will follow).
SLP (RFC 2608) allows searching your LAN for services and works either
peer-to-peer or with one or more directory servers. Unlike other browsing
methods it can also work over several subnets (at least if your router can
route multicast traffic). You can get the library and instructions (you
need to run a small daemon on each system that announces services) at
www.openslp.org.

This patch adds:
- a generic class for registering SLP services
- a class to find your computer's LAN and non-public Internet address
  (replaces the code in configuration_hostname.cpp, should be more
   reliable and work better on non-Linux-machines)
- generic SLP support for kinetd
- SLP announcements when krfb/kinetd is open for uninvited connections
  (invited connections will not be announced)

If OpenSLP is not installed configure should disable the feature. The code
uses the SLP API as specified in RFC 2614 and it would be interesting to know
whether it also supports the SLP library that ships with Solaris - maybe
the configure script has to be tweaked for this...

(wow, i'm really communicative today)

svn path=/trunk/kdenetwork/krfb/; revision=166638
2002-07-14 15:14:19 +00:00
Tim Jansen
e7149d1f3b Adjusted TODO list for 3.1 (only nice-to-have's)
svn path=/trunk/kdenetwork/krfb/; revision=163966
2002-06-30 15:41:19 +00:00
Tim Jansen
9f44b0dfee Added support for Softcursor protocol extension
svn path=/trunk/kdenetwork/krfb/; revision=162994
2002-06-24 22:23:45 +00:00
Tim Jansen
4116159d09 Include vnc:// style url in invitation emails
svn path=/trunk/kdenetwork/krfb/; revision=161404
2002-06-16 15:35:29 +00:00
Tim Jansen
f7064414ad Updated README and added a few new TODOs
svn path=/trunk/kdenetwork/krfb/; revision=159407
2002-06-05 00:11:54 +00:00
Tim Jansen
1ef6160d10 Fix:
krfb crashed sometimes when the user tried to close a connection. Better
locking in libvncserver and an explicit rfbCloseConnection() invocation
before calling quit() should prevent this.

svn path=/trunk/kdenetwork/krfb/; revision=149689
2002-04-15 22:54:48 +00:00
Tim Jansen
a7f422dd98 Removed stand-alone modes, scrapping a lot of code and making testing easier (because now there is only one mode to test instead of three).
svn path=/trunk/kdenetwork/krfb/; revision=147645
2002-04-07 15:33:52 +00:00
Tim Jansen
2eb101c6ba Use Configuration class for kcontrol
svn path=/trunk/kdenetwork/krfb/; revision=147626
2002-04-07 13:01:39 +00:00
Tim Jansen
f344093250 kinetd working
svn path=/trunk/kdenetwork/krfb/; revision=143744
2002-03-19 00:03:39 +00:00
Tim Jansen
617167cae5 preparation for 0.6.0; knotify commit (not working yet)
svn path=/trunk/kdenetwork/krfb/; revision=136908
2002-02-17 00:33:31 +00:00
Tim Jansen
c3e8870923 sync before Connection rewrite
svn path=/trunk/kdenetwork/krfb/; revision=134281
2002-01-27 22:31:02 +00:00
Tim Jansen
be435b7a1e first release of TightVNC encoder(not working yet), removed RRE
svn path=/trunk/kdenetwork/krfb/; revision=132723
2002-01-20 17:12:54 +00:00
Tim Jansen
a027cd3c14 added RRE, removed CoRRE
svn path=/trunk/kdenetwork/krfb/; revision=131552
2002-01-14 01:39:53 +00:00
Tim Jansen
d2b3e3921d XUpdateScanner update
svn path=/trunk/kdenetwork/krfb/; revision=130912
2002-01-10 01:49:32 +00:00
Tim Jansen
609aaccc8e sync (problems, still_)
svn path=/trunk/kdenetwork/krfb/; revision=130886
2002-01-09 23:15:05 +00:00
Tim Jansen
5755630cda Many rfblib improvements
svn path=/trunk/kdenetwork/krfb/; revision=129944
2002-01-05 03:40:06 +00:00
Tim Jansen
c3aa315ff7 Name changes, icon/pixmap changes, moved lib to /lib
svn path=/trunk/kdenetwork/krfb/; revision=129763
2002-01-03 23:41:05 +00:00
Tim Jansen
2d65425827 release 0.5.1
svn path=/trunk/kdenetwork/krfb/; revision=129619
2002-01-02 23:46:41 +00:00
Tim Jansen
a78ed4472a release 0.1 rc 1
svn path=/trunk/kdenetwork/krfb/; revision=128292
2001-12-22 03:31:19 +00:00
Tim Jansen
f271e5c9ec Last before version
svn path=/trunk/kdenetwork/krfb/; revision=128023
2001-12-20 03:48:30 +00:00
Tim Jansen
dbda058e7f sync, almost 0.1
svn path=/trunk/kdenetwork/krfb/; revision=127978
2001-12-19 20:35:12 +00:00
Tim Jansen
bbcaf86931 sync
svn path=/trunk/kdenetwork/krfb/; revision=127696
2001-12-18 03:41:11 +00:00
Tim Jansen
0287dc9a83 quite working
svn path=/trunk/kdenetwork/krfb/; revision=127687
2001-12-18 01:57:19 +00:00
Tim Jansen
902380c42f Sync
svn path=/trunk/kdenetwork/krfb/; revision=127504
2001-12-17 02:47:03 +00:00
Tim Jansen
9757cc5c62 new project started
svn path=/trunk/kdenetwork/krfb/; revision=125891
2001-12-06 20:46:32 +00:00