Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Version 0.18 release
[xestiaab/.git] / source / CHANGES
1 Version 0.18
2 ============
3 11 March 2017
5 - Fixed issue with audio device remaining open after opening the contact
6   editor for the first time.
7 - Fixed issue where prefix isn't detected on Linux systems when editing
8   an account.
9 - Quit application process properly implemented.
10 - Enhanced contact information screen properly formatting dates.
11 - Contact Editor subforms that use the language drop down box are now
12   pre-filled with the list of language codes from ISO 639-1.
13 - Added icons to the preferences window.
14 - Double clicking on an account in the preferences window opens up the
15   properties for that account.
17 Version 0.17
18 ============
19 18 January 2017
21 - Added icon to the search window.
22 - Win32: Status bar gripper has been removed from main window and search
23   window.
24 - Check that the default account exists each time XAB is started.
25 - Fixed bug where non-SSL connections are treated as SSL connections for
26   CardDAV connctions.
27 - Fixed bug where an assert happens when the search window is closed when
28   in search only mode (-s).
29 - Fixed bug where filename of contact to open in search window appears
30   in a dialog.
31 - Message saying 'n contacts found.' disappears when the reset button
32   is pressed in the search window.
33 - Added manual page. This page is installed/uninstalled on Linux-based 
34   systems into the share/man1 path. (e.g. /usr/local/share/man/man1)
36 Version 0.16
37 ============
38 13 November 2016
40 - Added toolbar to the main window with icons.
41 - Created the template translation file. This now allows Xestia Address Book
42   to be translated into other languages.
44 Version 0.15
45 ============
46 30 September 2016
48 - Implemented the Connection Object interface.  This now opens up the 
49   possibility of using other protocols.
50 - CardDAV2 class implemented using the Connection Object interface. This
51   has stopped the Win32 version of XAB from crashing.
52 - Removed old CardDAV code.
54 Version 0.14
55 ============
56 08 July 2016
58 - Unsupported accounts (neither local or CardDAV) are now displayed within 
59   XAB. Contact data from unsupported accounts can be viewed but not edited or
60   deleted. Account settings cannot be edited but the account can still be
61   deleted.
62 - Implemented Online/Offline feature. It can be used by double clicking on
63   the cable icon next to the SSL icon in the status bar or by selecting Sleep
64   Mode in the Activity Manager menu.
65 - Documentation changed to a flat OpenDocument text file for easier
66   management for the code repository.
67 - Moved contact saving in frmContactEditor to the ContactDataObject class.
68 - Unit testing added for Contact Saving in the ContactDataObject class.
69 - Fixed random number generation for directory naming when creating accounts.
71 Version 0.13
72 ============
73 28 May 2016
75 - Added support for Windows. Support begins from Windows 7. Use of
76   XAB on Windows Vista or before this version is unsupported.
77 - Added Visual Studio 2013 (Express) project files.
78 - Added Xcode project files.
79 - SSL verification is now done before sending or receiving any contact
80   data so that SSL context handles in Windows and OS X can be obtained.
81   Linux versions use certificate information from cURL's
82   CURLINFO_CERTINFO.
83 - Fixed code in frmActivityMgr so that proper cURL codes are used
84   instead of being lazy with integers that may change.
85 - Fixed issue where saving picture data in some cases may cause
86   XAB to crash.
88 Version 0.12
89 ============
90 12 April 2016
92 - Added check to see if a server is on the blacklist and to display a
93   dialog confirming that data loss could happen if that server is used.
94 - Added support for OS X. Support begins from OS X 10.11.4. Use of XAB
95   on OS X before this version is unsupported.
97 Version 0.11
98 ============
99 23 March 2016
101 - This version is a maintenance release.
102 - All code is indented using tabs not spaces.
103 - Remove most of the unused variables from the code.
104 - Moved unit testing application building into a separate Makefile. 
105   To build the unit test application, run make from the tests directory.
106 - Added unit tests for some of the common functions that can return
107   values or use pointers.
109 Version 0.10
110 ============
111 06 March 2016
113 - Implemented support to run the application to display contact
114   information only using the -d switch.
115     - It takes one option which is the filename of the contact to display.
116 - Fixed issue where address book URL does not appear when server is using
117   self-signed SSL certificate.
118 - Fixed issue where the conflict resolution window kept coming up when a
119   contact was saved to a CardDAV server.
121 Version 0.09
122 ============
123 24 February 2016
125 - Password was displayed as text in the Edit Account window when it
126   shouldn't have been.
127 - Fixed top section of the contact information page so that the name
128   doesn't collapse into a line per word.
129 - Display error message if no accounts are selected when searching 
130   for contacts.
131 - Resized the Edit Account window so that all controls appear properly
132   in the window.
133 - Fixed issue with the add and remove search setting buttons in the
134   Search window after searching.
135 - Fixed issue with accounts that are reloaded after closing the edit 
136   account window without making any changes. Clicking on either the 
137   Edit or Delete buttons without selecting an account again caused XAB 
138   to crash/assert.
139 - Fixed issue where SSL certificate window asserts due to MaxLength being
140   set for one of the controls.
142 Version 0.08
143 ============
144 10 February 2016
146 - Fixed issue with checks not being made on iterators when editing data
147   which causes the application to crash.
148 - Fixed issue which causes the application to assert on multiline text
149   box controls (maxlength was set when it shouldn't have been).
150 - Resized add and edit properties dialogs that are use with the contact
151   editor so certain controls are not squashed.
152 - Contact editor now has a minimum window size of 800x500 set.
153 - Corrected Makefile so that compiling using -j now works.
155 Version 0.07
156 ============
157 22 January 2016
159 - Fixed right click menu in the Search window when the mode is Search Only. 
160 - New accounts now appear after creating an account through the new account
161   window. They didn't appear before due to a bug involving a boolean that
162   wasn't set as a pointer.
163 - Added support to do contact format conversion on the command line using the
164   -c switch.
165   - Takes three or four command switches:
166         -ifmt=<str>: Input format to convert form.
167         -ofmt=<str>: Output format to convert to.
168         -ifile: Input filename to read from.
169         -ofile: Output filename to write to. (don't use to pipe to console).
170 - Added unit tests for contact format conversion.
171 - Added unit tests for loading vCard 4 data.
172 - Moved loading of vCard 4 data when using frmContactEditor into 
173   ContactDataObject. Saving will also move into ContactDataObject in a later
174   version.
175 - vCard 3/4 conversion now supports CLIENTPIDMAP, XML and SOURCE. 
177 Version 0.06
178 ============
179 01 December 2015
181 - Added right click menus for the contact list in the main window and the search
182   results list in the search window.
183 - Added feature to save photos, logos and sounds from contacts.
184 - Fixed minor vCard version printing to console issue.
185 - Added copyright and licence headers to the source and header files as needed.
186 - Changed CardDAV into CardDAV* for the Activity Manager tasks which improves
187   memory efficiency as CardDAV object is now deleted each time a task is
188   completed.
189 - Splitted some source files down to make them more manageable.
191 Version 0.05
192 ============
193 25 November 2015
195 - Click on the Close Window button on the main window on Win32 systems causes XAB
196   to crash. This hopefully has now been fixed.
197 - All tabbed forms now show the first page instead of the second page in some
198   forms.
199 - Initial unit testing application has been implemented. Additional unit tests
200   will be added over time.
202 Version 0.04
203 ============
204 17 November 2015
206 - Added -e support for direct editing without having to start XAB fully. The direct 
207   editing process checks if the contact is in the user's settings/accounts directory
208   and refuses to load it if it is. Another check is made where if the file is not a
209   vCard 4.0 contact, it will refuse to load.
210 - Cleaned up Bitmap Code Helper removing all commented out references to Boost and
211   fixed the line tabbing.
212 - Cancel button for the Preferences window now works.
214 Version 0.03
215 ============
216 03 November 2015
218 - Fixed assert issues when opening frmContactEditorTemplate and frmContactEditorAddress
219 - Save Contact & Close within the contact editor is now implemented.
220 - Fixed more issues with compiling when using other Linux-based OSes other than OpenSuSE.
221 - Fixed issues when creating an account on a Win32 system.
223 Version 0.02
224 ============
225 20 October 2015
227 - Added -s support for direct searching without having to start XAB fully.
228 - Fixed issues with compiling when using other Linux-based OSes other than OpenSuSE.
230 Version 0.01
231 ============
232 05 October 2015
234 - Initial Release
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy