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