Next Update ?

Post Reply
User avatar
TimStone
Posts: 2536
Joined: Fri Oct 07, 2005 1:45 pm
Location: Trabuco Canyon, CA USA
Contact:

Next Update ?

Post by TimStone »

There were many upcoming features announced for the next release in the past , but it has been almost 4 months since the last update to .06.

Do you have an anticipated release date ?
Tim Stone
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: Next Update ?

Post by Antonio Linares »

Dear Tim,

This next monday we will be publishing the new version
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Next Update ?

Post by cnavarro »

TimStone wrote:There were many upcoming features announced for the next release in the past , but it has been almost 4 months since the last update to .06.
Tim, The latest version 19.06 was released on July 11, 2019, and a new version is not usually published in August for holiday reasons. It is normal to publish the 07/08 joined versions in September ( not almost 4 months )

Look at the date of the post,

http://forums.fivetechsupport.com/viewt ... 38#p223831

Thanks
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: Next Update ?

Post by Otto »

Hello Tim,
there are nearly every day new updates on mod Harbour.
Have you tested mod harbour.
In my opinion mod harbour makes obsolete many desktop things.

http://www.modharbour.online

Best regards
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
User avatar
TimStone
Posts: 2536
Joined: Fri Oct 07, 2005 1:45 pm
Location: Trabuco Canyon, CA USA
Contact:

Re: Next Update ?

Post by TimStone »

Otto,

19.06 was released on May 28, and my libs are dated June 3. That is 4 months.

I was interested in some of the new features announced for the next release many weeks ago. That is why I asked.

My primary work is NOT internet based at this time, but my clients continue to ask for enhancements. Thus I will likely not be working with mod_harbour for many months. My clients do extensive data entry, and many do not have good internet service, so a cloud based solution would not be good for them. I may explore mod_harbour at a later date, but for now I'm just focused on FWH with Visual Studio for the desktop.

Tim
Tim Stone
http://www.MasterLinkSoftware.com
timstone@masterlinksoftware.com
Using: FWH 19.06 with Harbour 3.2.0 / Microsoft Visual Studio Community 2019
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Next Update ?

Post by cnavarro »

TimStone wrote:Otto,

19.06 was released on May 28, and my libs are dated June 3. That is 4 months.

.../...
Tim
Image

Tim, excuse me, but you may not have downloaded version 19.06
Here is an image of the official Fwh repository.
Also in my previous post I indicate the link announcing the publication of version 19.06 of Fwh.

Version 19.05 was published on June 4
On June 3 was when the library of version 19.05 was updated in the repository

Image
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: Next Update ?

Post by Otto »

Hello Tim,
>My primary work is NOT internet based at this time, but my clients continue to ask for enhancements.
You do not need internet. You can install mod harbour on your file server and access through intranet.
Same as your files.
Many things are easier in mod harbour than with desktop.

Best regards
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: Next Update ?

Post by Otto »

Hello Tim to show what I mean I post a little code sample.

Please check http://modharbour.online with for example with http://responsivetesttool.com/ to see what I yourself.

Wish you a nice Sunday and best regards
Otto

Code: Select all

function Main()
    local alinks := {}

    if ! File( hb_GetEnv( "PRGPATH" ) + "/links.dbf" )
        DbCreate( hb_GetEnv( "PRGPATH" ) + "/links.dbf",;
                  { { "LINKDEST",   "C", 200, 0 },;
                    { "LINKNAME",   "C", 200, 0 },;
                    { "LONGTEXT",   "M", 10, 0 } } )
     endif

    USE ( hb_GetEnv( "PRGPATH" ) + "/links" ) SHARED NEW
    do while .not. eof()
        aadd( alinks, { field->linkdest, field->linkname, field->longtext } )
        skip
    enddo    
    USE

TEMPLATE PARAMS alinks

<html>
    <head>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
    </head>
    <body>
    <div class="container">
        <div class="row">
        <table class="table col-12" style="font-size:20px;">
      <thead class="thead-dark ">
        <tr>
          <th scope="col">#</th>
          <th scope="col">Project Name</th>
        </tr>
      </thead>
      <tbody>
      
        <?prg local I := 0, cRow := ""      //mod harbour code inside HTML  TAG starts with <?prg   
        for I := 1 to len( alinks )
            cRow += '<tr>'
            cRow += '<th scope="row">' + ALLTRIM( str(I) ) + '</th>' 
            cRow += "<td><a target='_blank' href=" +  alinks[I,1] + ">" +  alinks[I,2] + "</a>"
            cRow += '<br>'
            cRow +=  alinks[I,3]
            cRow += "</td>"
            cRow += "</tr>"
        next   
        return cRow ?>                    
      </tbody>
    </table>
    </div>
    </div>
    </body>
</html>

ENDTEXT

return nil

 
Image

Image
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
Post Reply