-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from TransbankDevelopers/chore/prepare-release…
…-1.4.0 Prepare release 1.4.0
- Loading branch information
Showing
4 changed files
with
100 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Changelog | ||
|
||
Todos los cambios notables a este proyecto serán documentados en este archivo. | ||
|
||
El formato está basado en [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
y este proyecto adhiere a [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.4.0] - 2019-06-18 | ||
|
||
### Added | ||
|
||
- Función para Anulación. | ||
- Función para Última Venta. | ||
- Función para Totales. | ||
|
||
## [1.0.0] - 2019-05-13 | ||
|
||
### Added | ||
|
||
- Función para listar puertos seriales. | ||
- Función para POLL de POS. | ||
- Función para Cambio a POS Normal. | ||
- Función para Carga de Llaves. | ||
- Función para Cierre. | ||
- Función para Venta sin mensajes intermedios. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#include <windows.h> | ||
|
||
// DLL version information. | ||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION 1,4,0,0 | ||
PRODUCTVERSION 1,4,0,0 | ||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | ||
#ifdef _DEBUG | ||
FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE | ||
#else | ||
FILEFLAGS 0 | ||
#endif | ||
FILEOS VOS_NT_WINDOWS32 | ||
FILETYPE VFT_DLL | ||
FILESUBTYPE VFT2_UNKNOWN | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "080904b0" | ||
BEGIN | ||
VALUE "CompanyName", "Transbank" | ||
VALUE "FileDescription", "Library used by TransbankPosSDK to communicate with Verifone VX520 y VX520C integrated POS." | ||
VALUE "FileVersion", "1.4.0.0" | ||
VALUE "InternalName", "TransbankWrap" | ||
VALUE "LegalCopyright", "2019 Transbank" | ||
VALUE "OriginalFilename", "TransbankWrap.dll" | ||
VALUE "ProductName", "TransbankWrap Library" | ||
VALUE "ProductVersion", "1.4.0.0" | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x809, 1200 | ||
END | ||
END |