iFox

jueves, octubre 28, 2010

Novedades / News + Proceso de Registracion / Registration Process

En los (esperemos) proximos dias estare liberando la version 1.0 de iFox con algunas mejoras menores, principalmente en la distribucion. El codigo estan terminado, solamente resta la documentacion. Si deseas obtener la nueva version escribe al correo de contacto.

En los ultimos dias el servidor de correo funciono intermitentemente, si no has recibido contestacion a la solicitud de licencia, por favor reenvia tu mensaje.

-------------------------------------------------------

In the next (hopefully) few days I will be releasing version 1.0 of iFox with some minor improvements, mainly in the distribution area. The code is finished, only documentation remains. If you wish to download the new version ask it by mail.

In the last days the mail server has gone through a series of problems, if you haven't receiver your license code, please resend your message.

viernes, octubre 31, 2008

Nueva version / New Version

Notas de la versión: 0.99.1

Se ha solucionado los problemas de instacion que tenia la version anterior.
También se ha agregado en la ayuda un tema explicando como distribuir los componentes.

Existen nuevas funciones que seran documentadas proximamente:

* El soporte para sockets UDP

* Un nuevo componente para obtener la hora de servidores de tiempo.

Ejemplo:
oNTP = CreateObject("iFox.NTP")
oNTP.Server = "time.windows.com"
If oNTP.GetTime()
? oNTP.Date
? oNTP.Time
? oNTP.AdjustedDate && Ajustado a la zona horaria establecida en el Panel de Control
? oNTP.AdjustedTime
else
? oNTP.ErrorNumber
Endif

------------------------------------------------------------

Release Notes: 0.99.1

The installation problems of the previous version are fixed.

A new help topic explaining how to distribute the components is included.

There are new functions that will be documented in the near future:

* UDP sockets support

* A new component to get the current time querying time servers.

Sample:
oNTP = CreateObject("iFox.NTP")
oNTP.Server = "time.windows.com"
If oNTP.GetTime()
? oNTP.Date
? oNTP.Time
? oNTP.AdjustedDate && Ajustado a la zona horaria establecida en el Panel de Control
? oNTP.AdjustedTime
else
? oNTP.ErrorNumber
Endif

martes, abril 29, 2008

Nueva version / New version

Notas de la versión: 0.98.2

Se corrige un problema que se producía al llamar al método Listen de iFox.Sockets sin indicar el parametro IP cuando el sistema operativo poseía más de una dirección IP asignada. Gracias a Carlos Figueroa López por señalar este error.


------------------------------------------------------------
Release Notes: 0.98.2


Fixed a problem in the Listen method of iFox.Sockets than happened when you called it without the IP parameter and the operating system had more than one IP address assigned. Thanks to Carlos Figueroa López for pointing this error.

jueves, marzo 27, 2008

Nueva version / New version

Notas de la versión: 0.98.1

Se corrige un problema que se ocasionaba al intentar efectuar una conexión a un dominio (por medio de cualquier protocolo) que tuviera asignadas más de una dirección IP. La conexión se establece siempre a la primera dirección IP listada.

Se corrige un problema que ocasionaba que algunos servidores SMTP rechazaran los mensajes enviados por iFox.SMTP. Solamente la versión 0.98.0 se encuentra afectada y actualizar esta versión es recomendado.

La nueva propiedad (en beta) NotifyDelivery de iFox.SMTP permite solicitar al servidor SMTP que informe sobre el estado de la entrega del mensaje. Solo algunos de los servidores SMTP más populares soportan esta funcionalidad, por lo tanto me gustaría recibir comentarios sobre esto.

----------------------------------------------------

Release Notes: 0.98.1

A problem that happened when a connection was attemped to a domain address assigned to more than one IP address was fixed. The connetion is stablished to the first IP address listed.

A problem that caused that some SMTP servers rejected the messages generated by iFox.SMTP has been fixed. Only version 0.98.0 was affected, an upgrade is recommended for users of this version.

The new property (in beta) NotifyDelivery in iFox.SMTP allows to ask the SMTP server to inform about the status of the message delivery. Only a few of the most popular SMTP servers supports this functionality, so I would like to hear about your experiences.

viernes, marzo 14, 2008

Nueva version / New version

Notas de la versión: 0.98

- Debido a las confusiones que se generaban, agregue un pequeño ejemplo en la documentacion del metodo Dir de los objetos iFox.FTP e iFox.Direct.FTP.

- La nueva propiedad IgnoreSSLErrors de iFox.HTTP permite acceder a páginas web que tengan problemas con su certificado de seguridad. Previamente todos los accesos a páginas con este problema eran rechazados.

- Mejore el acceso a traves de proxies de iFox.HTTP. Lamentablemente tuve que romper la compatibilidad con versiones anteriores cambiando la manera de indicar el proxy a utilizar. De todas maneras supongo que no sera un gran problema ya que funcionaba pesimamente y no creo que nadie lo haya implementado.

- iFox.HTTP ahora dispone de versiones asincrónicas de los métodos GET y POST. Esto permite transferir grandes cantidades de información sin que la interfaz de usuario deje de responder.

- iFox.DirectFTP: Cuando se transferian archivos grandes sobre conexiones lentas podía ocasionarse que no se estableceria correctamente el valor de la propiedad EOT aunque la transferencia se hubiera completado. El componente ahora consulta previamente el tamaño del archivo para evitar este problema.

- iFox.POP3: La propiedad ErrorNumber ahora puede tomar algunos nuevos valores para una mejor identificación del error.

- iFox.POP3: Se ofrecen nuevas propiedades para obtener la fecha y hora de envío de los mensajes en la zona horaria actual, conviertiendola desde la zona horaria del remitente.

- iFox.POP3: Ha pedido de algunos usuarios el componente ahora no ignora los archivos adjuntos WinMail.dat generados por Microsoft Outlook a pesar de que estos mensajes no respetan los estandares. Se necesitará un programa auxiliar para decodificar estos archivos.

- iFox.POP3: Se documentan todas las propiedades del componente.

- iFox.POP3: Se agregan propiedades y métodos para facilitar el almacenamiento de los mensajes y decodificación de mensajes guardados.

----------------------------------------------------

Release Notes: 0.98

- To avoid confusions, I added a little sample to the documentation of the Dir method of iFox.FTP and iFox.DirectFTP.

- The new IgnoreSSLErrors property of iFox.HTTP allows to access web pages wich have problems with their security certificate. Previosly all access to this pages where rejected.

- Proxy access has been improved. Unfortunately I had to break backwards compatibility changing the way you instruct the component wich proxy to use. I assume it is no problem, no one must have used a feature that sucked.

- iFox.HTTP now has asynchronous versions of the GET and POST methods. This allows to transfer huge amounts of data without loosing responsiveness in the user interface.

- iFox.DirectFTP: In ocasions when transferring big files over slow connections the EOT property was not setted to True. The component now gets the file size and uses it to end the transfer correctly.

- iFox.POP3: The ErrorNumber property has new values to help in the identification of the error.

- iFox.POP3: New properties allow to get the time and date in wich the message has been sent expressed in the current time zone, converting it from the sender's time zone.

- iFox.POP3: As requested by some users the component doesn't ignore the WinMail.Dat attachments generated by Microsoft Outlook although this messages doesn't comply with standars. You will need an auxiliar program to decode this files.

- iFox.POP3: All properties of the component are documented.

- iFox.POP3: New properties and methods allows an easy storage of the messages and the decoding of stored messages.

miércoles, diciembre 26, 2007

Nueva version / New version

Notas de la versión: 0.97.2.0

- Se corrige un error que se producía al llamar al método SendNextPart de iFox.SMTP. Este error fue originado en la version 0.97.1 por lo tanto versiones anteriores no se encuentran afectadas.

- Se agrega el parámetro lFastDisconnect al método Disconnect de iFox.SMTP.

- En versiones anteriores cuando se producía un error al enviar un mensaje no era posible enviar otros mensajes durante la misma sesión. Este problema ha sido solucionado.
-------------------------------------------------

Release Notes: 0.97.2.0

- An error in the SendNextPart method of iFox.SMTP has been corrected. This error was originated in version 0.97.1, so previous versions are not affected.

- The Disconnect method of iFox.SMTP has a new lFastDisconnect parameter.

- In previous versions if you got an error while trying to send a message you couldn't send another in the same session. This has been corrected.

jueves, diciembre 20, 2007

Nuevo logo / New logo

Oscar Vega Castaneda gentilmente ha desarollado un nuevo logo el cual pueden apreciar en la página principal de iFox.Así que, ahora tienen dos posibilidades si quieren incluir el logo de iFox en su aplicación.

-------------------------------

Oscar Vega Castaneda kindly created a new logo, wich you can see the iFox's homepage.So, if you wish to include iFox's logo in your application now you have two choices.

http://www.coliseosoftware.com.ar/ifox/logo1.gif
http://www.coliseosoftware.com.ar/ifox/logo2.jpg