From 1d9efb0e3a7dea9a06cb0c3dd634fd2040eb2dc4 Mon Sep 17 00:00:00 2001 From: crs Date: Sun, 11 Aug 2002 11:50:49 +0000 Subject: [PATCH] added TODO file and top-level rule to make zip file of distribution files. --- Makefile.am | 7 +++++++ TODO | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 TODO diff --git a/Makefile.am b/Makefile.am index 2bd4b9e6..0ed794fe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,6 +26,7 @@ EXTRA_DIST = \ FAQ \ HISTORY \ PORTING \ + TODO \ all.dsp \ synergy.dsw \ doc/doxygen.cfg.in \ @@ -61,3 +62,9 @@ dist-rpm: dist mv -f $(RPMTOPDIR)/SRPMS/*.rpm . && \ mv -f $(RPMTOPDIR)/RPMS/*/*.rpm . && \ rm -rf $(RPMTOPDIR) + +# build zip +# FIXME -- have automake generate this rule for us +dist-zip: distdir + zip -r $(distdir).zip $(distdir) + -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir) diff --git a/TODO b/TODO new file mode 100644 index 00000000..b8a1efac --- /dev/null +++ b/TODO @@ -0,0 +1,53 @@ +Synergy To Do List +================== + +Things to do to synergy, in no particular order: + +* Provide GUI configuration + + There's a GUI tool on win32 but no other platforms. It'd be nice + if the tool allowed users to drag screen icons around to set the + links between them, but this complicated because links aren't + necessarily symmetrical. + +* Provide taskbar feedback + + An icon indicating synergy's state in the taskbar would be nice. + It could also provide a means for viewing recent log messages, + stopping synergy, and forcing disconnection. + +* Support non-ASCII keyboards + + Synergy currently supports only ASCII characters typed on the + keyboard. It does, however, support Unicode clipboard text. + +* Write man pages + +* Finish PORTING guide + +* Port to other platforms + + An incomplete list of desired platforms: + * MacOS 9 + * MacOS 10 + * BSD + * Irix + * Solaris + * HP-UX + * AIX + +* Provide a nice win32 installer/uninstaller + + Synergy doesn't have any special needs so even just unzipping is + satisfactory, but a proper installer would be nice. And, more + importantly, it should provide an uninstaller. + +* Add more clipboard formats + + Synergy currently supports only text on the clipboard. It should + support more formats, such as images and sound. For each format, + some canonical type must be chosen. For text, that's UTF-8 with + \n for newlines. For images, it might be BMP or PNG. Whatever it + is it should losslessly support any type it might be converted to. + The type is converted to each platform's native type. For example, + BMP for images on win32.