Directory src/net/java/sip/communicator/impl/osdependent/

Total Files:
9
Deleted Files:
1
Lines of Code:
2085

[root]/src/net/java/sip/communicator/impl/osdependent
                                 jdic (7 files, 1897 lines)
                                 macosx (1 files, 43 lines)

Lines of Code

src/net/java/sip/communicator/impl/osdependent/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 42 (100.0%) 1569 (100.0%) 37.3
yanas 17 (40.5%) 1402 (89.4%) 82.4
ysaak 1 (2.4%) 57 (3.6%) 57.0
lubomir_m 9 (21.4%) 48 (3.1%) 5.3
scmerger 1 (2.4%) 20 (1.3%) 20.0
s_vincent 2 (4.8%) 12 (0.8%) 6.0
rkuntz 1 (2.4%) 10 (0.6%) 10.0
emcho 9 (21.4%) 9 (0.6%) 1.0
wernerd 1 (2.4%) 8 (0.5%) 8.0
ibauersachs 1 (2.4%) 3 (0.2%) 3.0

Most Recent Commits

ibauersachs 2011-12-05 23:11

Suppress some error output on headless devices and suppress raw-type warnings

3 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: SystemTray.java (+3 -3)
emcho 2011-10-18 14:03

Changes project name in source license headers from SIP Communicator to Jitsi

9 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: Desktop.java (+1 -1), DesktopServiceImpl.java (+1 -1), NewStatusMessageDialog.java (+1 -1), OsDependentActivator.java (+1 -1), PopupMessageHandlerTrayIconImpl.java (+1 -1), Resources.java (+1 -1), StatusMessageMenu.java (+1 -1), SystemTray.java (+1 -1), TrayIcon.java (+1 -1)
s_vincent 2010-12-01 15:51

When calling a contact that has multiple resources, choose the one that has the highest priority AND Jingle support.

12 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: NewStatusMessageDialog.java (+8 -8), StatusMessageMenu.java (+4 -4)
yanas 2010-10-28 17:38

Fixes systray service.

2 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: OsDependentActivator.java (+2 -1)
yanas 2010-10-28 17:04

Fixes an issue with disappearing contact list window on MacOSX, reported on users mailing list by James Ward. Mac users would be now able to show the contact list window at any time by clicking on the dock icon.

9 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: OsDependentActivator.java (+9 -2)
lubomir_m 2010-09-11 13:34

Adds javadocs, fixes warnings.

10 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: OsDependentActivator.java (+6 -2), SystemTray.java (+4)
wernerd 2010-06-03 21:34

Fix logger usage - sixth bunch.

8 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: OsDependentActivator.java (+8 -4)
lubomir_m 2009-12-10 01:28

Commits the refactorying of OSUtils contributed by Sebastien Vicent which uses static final fields instead of methods.

2 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: Desktop.java (+1 -3), TrayIcon.java (+1 -3)
lubomir_m 2009-12-09 17:02

Commits the patch provided by Sebastien Vincent on the dev mailing list in an e-mail with the subject "[Patch] OS detection" which introduces and uses a single utility class to check the executing operating system and architecture.

8 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: Desktop.java (+6 -11), TrayIcon.java (+2 -2)
lubomir_m 2009-10-25 13:44

Removes duplication from PopupMessageHandler implementations.

3 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: PopupMessageHandlerTrayIconImpl.java (+3 -54)
scmerger 2009-08-27 18:01

Fix conflicts

20 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: TrayIcon.java (+20 -11)
ysaak 2009-08-25 15:56

Resolve issue 603: Problem with JPopupMenu on Windows

57 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: TrayIcon.java (+57 -28)
lubomir_m 2009-08-14 17:18

Commits the patch of Linus Wallgren which introduces ShutdownService to better abstract the shutdown procedure of the application.

24 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: OsDependentActivator.java (+24)
rkuntz 2009-08-14 13:07

[growl integration] Implementation of the selectBestPopupMessageHandler() and getPreferenceIndex() methods in the existing popup handlers

10 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: PopupMessageHandlerTrayIconImpl.java (+10)
yanas 2009-06-17 16:59

Fix opening received files with space in the name, in incoming file transfer.

2 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: Desktop.java (+2 -1)
lubomir_m 2009-06-16 10:27

Fixes the browse method of .impl.osdependent.Desktop on Java 6.

1 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: Desktop.java (+1 -1)
yanas 2009-06-15 18:18

Adding support for file transfer for XMPP and graphical User Interface for file transfer (ongoing work). This first commit adds the needed gui that enables users to send and receive files, to
drag and drop files into chat windows. It displays incoming file notifications, file icons or previews (where possible, e.g. images).
This work package also contains a first file transfer implementation over the XMPP protocol (using the smack implementation of xep-0096: http://xmpp.org/extensions/xep-0096.html). Unfortunately this implementation won't work very well with GoogleTalk accounts for now, as Google servers seem to block every file bigger than 60K.

This commit contains also some improvements in the way we load the history and we manage error messages in the gui.

1389 lines of code changed in:

  • src/net/java/sip/communicator/impl/osdependent: Desktop.java (new 469), DesktopServiceImpl.java (new 92), NewStatusMessageDialog.java (new), OsDependentActivator.java (new 153), PopupMessageHandlerTrayIconImpl.java (changed), Resources.java (changed), StatusMessageMenu.java (changed), SystemTray.java (new 230), SystrayActivator.java (del), TrayIcon.java (new 445)
Generated by StatSVN 0.3.1