Changeset 65
- Timestamp:
- Dec 9, 2021, 11:37:56 PM (3 years ago)
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/1.1.0/Install/win/vCard Studio.iss
r26 r65 5 5 #define MyAppNameShort "vCardStudio" 6 6 #define MyAppVersion "1.1.0" 7 #define MyAppVersionSuffix "alfa"7 ;#define MyAppVersionSuffix "alfa" 8 8 #define MyAppPublisher "Chronosoft" 9 9 #define MyAppPublisherShort "Chronosoft" … … 80 80 Source: "{#MyAppSubDir}\lib\i386-win32-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode 81 81 Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion 82 82 Source: "{#MyAppSubDir}\Images\Profile.png"; DestDir: "{app}\Images"; Flags: ignoreversion 83 83 84 84 [Icons] -
tags/1.1.0/Languages/vCardStudio.cs.po
r62 r65 1151 1151 msgid "Invalid line length for encoded text" 1152 1152 msgstr "Neplatná délka řádky kódovaného textu" 1153 -
tags/1.1.0/Release Notes.txt
r30 r65 1 Version 1.1.0 (2021-12-09) 2 ========================== 3 4 * Added: New feature to split multiple contacts into separate files. Accessible from File menu. 5 * Added: Show also normal phone and work phone in the contact list. 6 * Added: Support for GIF and PNG images for contact photo. 7 * Added: Social tab in contact form. 8 * Added: Allow to specify alternative property name for contact field definition to support various non-standard properties. 9 * Added: Chat contact tab for text chatting applications. 10 * Added: Show textual name of contact field in contact field form and prefill field name and attributes. Update that name back according used field name and attributes. 11 * Added: Support more file encodings for file open. 12 * Added: Show open file dialog on photo click. 13 * Added: Allow to load from file or save to file individual selected contacts from the list. 14 * Added: Clone context menu action and toolbar button for list of contacts and contact properties. 15 * Added: Context menu action to clear profile image. 16 * Added: Remember last selected tab index in contact form. 17 * Added: Show default profile photo if contact image is not specified. 18 * Added: Allow to load photo from file or save it to file. 19 * Added: New more general contact properties list and item form. 20 * Added: Support for QUOTED-PRINTABLE encoding. 21 * Added: Full name, Middle name, title after and title before into contact form. 22 * Added: Bottom column filter bar in contacts list. 23 * Added: Allow to sort columns in contacts list. 24 * Added: Show contact image in contact edit window. 25 * Added: In case of loading errors show a list of found errors with line numbers. 26 * Added: More standard properties. 27 * Added: Support text/vcard mime type by deb and snap packages. 28 * Modified: Optimized encoding/decoding of escaped strings. 29 * Modified: Optimized select all action. 30 * Modified: Optimize loading/saving values in contact form. Load/save only form fields from active tab. 31 * Modified: Show Private and Work addresses in separate tab. 32 * Modified: Statusbar moved into contacts form and it is now showing total, filtered and selected number of items. 33 * Modified: Translated contact fields titles. 34 * Modified: Store contact properties in general way to support also user defined properties and unknown attributes. 35 * Fixed: Escaping combined values with backslash symbol. 36 * Fixed: Long BASE64 encoded lines were not automatically wrapped to limit max line length. 37 * Fixed: Autosize cool bar bands. 38 * Fixed: Loading of JPEG photo. Image binary data were affected by TStringList. Store them just as a string type. 39 * Fixed: Avoid exception if photo data are not valid image data. 40 * Fixed: Hints were not shown in contacts toolbar. 41 * Fixed: Check if property block started correctly. 42 * Fixed: Improved alignment of fields in contact dialog. 43 1 44 Version 1.0.0 (2021-08-19) 2 45 ========================== -
tags/1.1.0/UCore.lfm
r63 r65 500 500 VersionMinor = 1 501 501 VersionBugFix = 0 502 VersionSuffix = 'alfa'503 502 HomePage = 'https://app.zdechov.net/vcard-studio' 504 503 AuthorsName = 'Chronos' -
trunk/Install/deb/debian/control
r26 r65 3 3 Section: utils 4 4 Priority: optional 5 Standards-Version: 1. 1.05 Standards-Version: 1.2.0 6 6 Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8) 7 7 -
trunk/Install/snap/snapcraft.yaml
r54 r65 1 1 name: vcard-studio 2 2 title: vCard Studio 3 version: '1. 1.0'3 version: '1.2.0' 4 4 summary: A contact management application with support for vCard file format. 5 5 description: | -
trunk/Install/win/vCard Studio.iss
r26 r65 4 4 #define MyAppName "vCard Studio" 5 5 #define MyAppNameShort "vCardStudio" 6 #define MyAppVersion "1. 1.0"6 #define MyAppVersion "1.2.0" 7 7 #define MyAppVersionSuffix "alfa" 8 8 #define MyAppPublisher "Chronosoft" … … 80 80 Source: "{#MyAppSubDir}\lib\i386-win32-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode 81 81 Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion 82 82 Source: "{#MyAppSubDir}\Images\Profile.png"; DestDir: "{app}\Images"; Flags: ignoreversion 83 83 84 84 [Icons] -
trunk/Release Notes.txt
r30 r65 1 Version 1.1.0 (2021-12-09) 2 ========================== 3 4 * Added: New feature to split multiple contacts into separate files. Accessible from File menu. 5 * Added: Show also normal phone and work phone in the contact list. 6 * Added: Support for GIF and PNG images for contact photo. 7 * Added: Social tab in contact form. 8 * Added: Allow to specify alternative property name for contact field definition to support various non-standard properties. 9 * Added: Chat contact tab for text chatting applications. 10 * Added: Show textual name of contact field in contact field form and prefill field name and attributes. Update that name back according used field name and attributes. 11 * Added: Support more file encodings for file open. 12 * Added: Show open file dialog on photo click. 13 * Added: Allow to load from file or save to file individual selected contacts from the list. 14 * Added: Clone context menu action and toolbar button for list of contacts and contact properties. 15 * Added: Context menu action to clear profile image. 16 * Added: Remember last selected tab index in contact form. 17 * Added: Show default profile photo if contact image is not specified. 18 * Added: Allow to load photo from file or save it to file. 19 * Added: New more general contact properties list and item form. 20 * Added: Support for QUOTED-PRINTABLE encoding. 21 * Added: Full name, Middle name, title after and title before into contact form. 22 * Added: Bottom column filter bar in contacts list. 23 * Added: Allow to sort columns in contacts list. 24 * Added: Show contact image in contact edit window. 25 * Added: In case of loading errors show a list of found errors with line numbers. 26 * Added: More standard properties. 27 * Added: Support text/vcard mime type by deb and snap packages. 28 * Modified: Optimized encoding/decoding of escaped strings. 29 * Modified: Optimized select all action. 30 * Modified: Optimize loading/saving values in contact form. Load/save only form fields from active tab. 31 * Modified: Show Private and Work addresses in separate tab. 32 * Modified: Statusbar moved into contacts form and it is now showing total, filtered and selected number of items. 33 * Modified: Translated contact fields titles. 34 * Modified: Store contact properties in general way to support also user defined properties and unknown attributes. 35 * Fixed: Escaping combined values with backslash symbol. 36 * Fixed: Long BASE64 encoded lines were not automatically wrapped to limit max line length. 37 * Fixed: Autosize cool bar bands. 38 * Fixed: Loading of JPEG photo. Image binary data were affected by TStringList. Store them just as a string type. 39 * Fixed: Avoid exception if photo data are not valid image data. 40 * Fixed: Hints were not shown in contacts toolbar. 41 * Fixed: Check if property block started correctly. 42 * Fixed: Improved alignment of fields in contact dialog. 43 1 44 Version 1.0.0 (2021-08-19) 2 45 ========================== -
trunk/UCore.lfm
r63 r65 497 497 object ApplicationInfo1: TApplicationInfo 498 498 Identification = 1 499 VersionMajor = 1499 VersionMajor = 2 500 500 VersionMinor = 1 501 501 VersionBugFix = 0 … … 506 506 AppName = 'vCard Studio' 507 507 Description = 'vCard files management tool' 508 ReleaseDate = 445 39508 ReleaseDate = 44524 509 509 RegistryKey = '\Software\Chronosoft\vCard Studio' 510 510 RegistryRoot = rrKeyCurrentUser
Note:
See TracChangeset
for help on using the changeset viewer.