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