Skip to content

Releases: nark/WiredClient

Wired Client 2.5-58

01 May 17:31
Compare
Choose a tag to compare
Wired Client 2.5-58 Pre-release
Pre-release
  • fix Debug console colors in Dark Mode
  • clean useless UI controls
  • clean Preferences dead code
  • template signing
  • convert icons to PNG

Wired Client 2.5-57

30 Apr 11:59
Compare
Choose a tag to compare
Wired Client 2.5-57 Pre-release
Pre-release
  • fix Debug console colors in Dark Mode
  • clean useless UI controls
  • clean Preferences dead code

Wired Client 2.5-56

29 Apr 19:31
0c71d3f
Compare
Choose a tag to compare
  • fix boards unread count when thread is read from a Smart Board
  • fix « Welcome to wired » post not showing on fresh new server
  • Fixed white color idle bug
  • Fixed so that the black nick text in Darkmode now changes to white text.
  • Fixed Purple and Blue color in Darkmode (brighter)
  • In dark mode the opaque value for the user avatar is correct now (becomes darker instead brighter if idle mode kicks in)
  • Adjust Status Text color (added color string). In light mode a bit darker and in dark mode brighter for better readabilty.
  • German/French localisation

Wired Client 2.5-54

26 Apr 08:49
Compare
Choose a tag to compare
Wired Client 2.5-54 Pre-release
Pre-release
  • fix boards unread count when thread is read from a Smart Board
  • fix « Welcome to wired » post not showing on fresh new server
  • Fixed white color idle bug
  • Fixed so that the black nick text in Darkmode now changes to white text.
  • Fixed Purple and Blue color in Darkmode (brighter)
  • In dark mode the opaque value for the user avatar is correct now (becomes darker instead brighter if idle mode kicks in)
  • Adjust Status Text color (added color string). In light mode a bit darker and in dark mode brighter for better readabilty.
  • German/French localisation

Wired Client 2.5-53

24 Apr 15:33
1d2ba44
Compare
Choose a tag to compare
Wired Client 2.5-53 Pre-release
Pre-release
  • fix boards unread count when thread is read from a Smart Board
  • fix « Welcome to wired » post not showing on fresh new server
  • German localisation

Wired Client 2.5-52

24 Apr 10:53
1d2ba44
Compare
Choose a tag to compare
Wired Client 2.5-52 Pre-release
Pre-release
  • fix boards unread count when thread is read from a Smart Board
  • fix « Welcome to wired » post not showing on fresh new server
  • German localisation

Wired Client 2.5-51

24 Apr 10:26
1d2ba44
Compare
Choose a tag to compare
Wired Client 2.5-51 Pre-release
Pre-release
  • fix boards unread count when thread is read from a Smart Board
  • fix « Welcome to wired » post not showing on fresh new server
  • German localisation

Wired Client 2.5-50

21 Apr 22:01
Compare
Choose a tag to compare

Moving from old OpenSSL

Some part of libwired relies on OpenSSL when running on other OS than macOS. OpenSSL library evolved a lot these last years to provide patches and improve overall security. This also comes with downsides where it is very hard to keep old OpenSSL versions compliant with recent OpenSSL versions.

Regarding libwired, the following issues has been addressed:

  • The RSA Public Key is now 2048 bits as recommended (instead of 1024)
  • RSA initialisation now uses RSA_new()
  • Cipher context initialisation updated to use EVP_CIPHER_CTX_new
  • 2048 Public Key allow usage of bigger digest as SHA256 and SHA512

This Release of Wired Client already implements all these changes and it is highly recommended to update to this new version:

Broken Releases

Some of us already run the latest version of the server with latest OpenSSL on Linux, but the official macOS version is not yet released, because I mainly want more users to migrate to the latest version of the client.

In the process of updating to this new version, some existing Wired Client versions has been identified as « broken » and sometimes cannot connect or transfer data with Wired Server running latest OpenSSL versions. Those versions are the following:

  • Wired Client 2.1.1 (310) [cannot connect]
  • Wired Client 2.4 (363) [cannot connect]
  • Wired Client 2.5 (46) [transfer issue]

But maybe other versions in between are also affected. Again to be sure to not experience this issue, it is highly recommended to update to thes new client versions listed above.

NB: If you are using an old macOS version (< 10.10), I recommend you to use the version 2.1 (309) available here.

About SHA1/256/512

Wired 2.0 and upper currently uses SHA1 digest as default algorithm for 3 main purposes:

  • binary data checksum: integrity of each chunk of data transferred is validated using a SHA1 checksum
  • password of the AES private key: when handshaking, server and client exchange a secret key pair hashed with SHA1
  • user account password: user password are blind checked using SHA1 hash at login and stored as it in the database

SHA1 has been proven weak since some time now, so it was required to modernise the protocol.
The both first items of the list above are completely covered by the following update.

Wired protocol now provides SHA256 and SHA256 digests, and that introduces the 10 new following encryption schemes:

  • RSA - AES/128 - SHA256
  • RSA - AES/192 - SHA256
  • RSA - AES/256 - SHA256
  • RSA - BF/128 - SHA256
  • RSA - 3DES/192 - SHA256
  • RSA - AES/128 - SHA512
  • RSA - AES/192 - SHA512
  • RSA - AES/256 - SHA512
  • RSA - BF/128 - SHA512
  • RSA - 3DES/192 - SHA512

Wired Client default encryption scheme is RSA - AES/256 - SHA1 when creating new connection. These encryption cipher and digest will continue to work as default for both client and server. However, Wired Server now supports all the previously listed scheme, as Wired Client, that can enforce it in the Edit Bookmark panel.

If the requested encryption scheme is not supported by the server, the connection will fallback to RSA - AES/128 - SHA1, first of the list. If you want to use SHA256/512, be sure to configure it for servers that support it, otherwise it will weaken your encryption cipher.

About the user account password, this version of Wired will continue to use SHA1 for now, but I hope moving to bcrypt someday, which is now the recommended algorithm for password hashing and database storage. And it is a much sensitive affair.

To summarise, nothing change and everything should be totally transparent for you, as you update the client, nor the server, or nothing at all.

Wired Client 2.5-49

20 Apr 20:29
Compare
Choose a tag to compare
Wired Client 2.5-49 Pre-release
Pre-release
WiredClientDebug-2.5-49

Wired Client 2.5-47

15 Apr 15:58
Compare
Choose a tag to compare

With the help of members of the Wired community, we managed to put in order a build that regroups all the latest fixes we worked on.

  • fix dark/light theme live switch
  • disable manual theme selection in Preferences (in every languages XIB)
  • disable manual theme selection in Bookmarks (in every languages XIB)
  • remove /youtube command
  • fix internal error at launch (Sparkle related)
  • migrate from old version without error
  • sign app with Developer ID