Who's Online 
 
         
              
          107  user(s) are online (
55  user(s) are browsing 
Forums )
Members: 2
Guests: 105
 
K-L , 
flash ,
    more...
  
       
      
     
   
                         
                         
                      
                
        
            
                        
            
                         
  
      
          Topic options 
                           
            
      
          View mode 
                        Newest First 
                 
                      
              
    
 
    
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/7/28 23:36 
                                  
                                    #21  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2012/8/14 12:51Last Login
                                :  7/5 20:45
                                                    From  France
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @alfkil hi, Even if I use SMtube around everyday, i didn't noticed graphical glitch (except in webkit font rendering that we still noticed you, it's why i automtically resize the window at opening) So, I am a lazy bastard ;) I'm ready and happy to beta test.
                        
             
            
                                    
 
     
    
                
                                
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/7/29 0:27 
                                  
                                    #22  
                             
         
     
    
                
                             Just popping in
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2009/1/20 10:21Last Login
                                :  2019/9/8 13:35
                                                    From  Asturies-Spain
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        I have X1000 and happy to betatest your Qt progress also. Regards Jose
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/7/29 4:59 
                                  
                                    #23  
                             
         
     
    
                
                             Not too shy to talk
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2010/5/22 11:35Last Login
                                :  10/25 15:53
                                                    From  Mobile, Alabama, USA
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        You mean rendering bug where window does not redraw without a lot of encouragement? I've just silently cursed it all this time. LOL  I don't like to complain. :)
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/7/29 5:26 
                                  
                                    #24  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2006/11/29 8:09Last Login
                                :  Today 13:11
                                                    From  Lyon, France
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @alfkil 
I use Qt everyday thanks to SMtube and qPDF 
So yes, there are still people using your excellent work
 
                        
             
            
                                    
 
     
    
                
                                
                -- AmigaONE X1000 and Radeon RX 560 Sam460 and Radeon RX 560 MiST FPGA Replay + 060 DB
            
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/7/30 16:54 
                                  
                                    #25  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2009/10/7 0:11Last Login
                                :  8/26 18:34
                                                    From  Odense
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        Help: How do I get a full path from a DOS file lock?? I need this to interpret Workbench arguments for use in Qt, it seems.
UPDATE: main.cpp
#include <proto/dos.h>
 
 #include <QString>
 
 #include <stdio.h>
 
 int main ()
 {
      QString path ;
      BPTR lock  =  IDOS -> Lock ( "SYS:Utilities/NotePad.info" ,  SHARED_LOCK );
     
     if( lock )
     {
          struct ExamineData  * dat  =  IDOS -> ExamineObjectTags ( EX_LockInput , lock , TAG_END );
         if(  dat  )
         {
              path  =  QString :: fromLocal8Bit ( dat -> Name );
                 
              BPTR parentlock ;
             while( ( parentlock  =  IDOS -> ParentDir ( lock )) )
             {
                     IDOS -> UnLock ( lock );
                     lock  =  parentlock ;
                  IDOS -> FreeDosObject ( DOS_EXAMINEDATA , dat );  /* Free data when done */
                  if( ( dat  =  IDOS -> ExamineObjectTags ( EX_LockInput , lock , TAG_END )) )
                 {
                      path . prepend ( QLatin1String ( "/" ));
                      path . prepend ( QString :: fromLocal8Bit ( dat -> Name ));
                 }
                }
             if( lock )
                  IDOS -> UnLock ( lock );
             
              path . prepend ( QLatin1String ( "/" ));
         
             if( dat )
                  IDOS -> FreeDosObject ( DOS_EXAMINEDATA , dat );  /* Free data when done */
          }
     }
     else
     {
          IDOS -> PrintFault ( IDOS -> IoErr (), NULL );  /* failure - why ? */
      }
 
      printf ( "Final result: %s\n" ,  path . toLocal8Bit (). constData ());
     
     return  0 ;
 }  
 
That is a lot of code for very little.
 
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/7/30 19:39 
                                  
                                    #26  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2006/11/30 11:30Last Login
                                :  Today 6:52
                                                    From  Finland
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @alfkil
Quote:
 How do I get a full path from a DOS file lock??Use IDOS->DevNameFromLock().
 
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/6 4:32 
                                  
                                    #27  
                             
         
     
    
                
                             Just popping in
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2007/3/25 23:56Last Login
                                :  2021/1/8 2:31
                                                    From  Los Angeles
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @alfkil Hey bro glad you are still around. your qt app SMtube is unfortanately the best software for 0s4! Thanks for working on amiga things. 
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/6 16:58 
                                  
                                    #28  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2012/8/14 12:51Last Login
                                :  7/5 20:45
                                                    From  France
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @magnetic SMTube is not from Alfkil but, true, thanks to his Qt, he made it adaptable for OS4.
                        
             
            
                                    
 
     
    
                
                                
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/6 17:06 
                                  
                                    #29  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2006/11/29 8:09Last Login
                                :  Today 13:11
                                                    From  Lyon, France
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @magnetic
Quote:
your qt app SMtube is unfortanately the best software for 0s4! Well, zzd10h is the author (e.g. porter for Amiga OS4) of SMTube (check the readme).
 
                        
             
            
                                    
 
     
    
                
                                
                -- AmigaONE X1000 and Radeon RX 560 Sam460 and Radeon RX 560 MiST FPGA Replay + 060 DB
            
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/9 19:06 
                                  
                                    #30  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2009/10/7 0:11Last Login
                                :  8/26 18:34
                                                    From  Odense
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @AlicePPC I have sent you an email.
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/10 15:38 
                                  
                                    #31  
                             
         
     
    
                
                             Home away from home
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2006/12/2 3:55Last Login
                                :  Today 11:03
                                                    From  Italy, Perugia
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @alfkil
I think I can test it aswell 
Do you still have my mail right ? 
 
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/11 10:06 
                                  
                                    #33  
                             
         
     
    
                
                             Home away from home
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2007/9/11 11:31Last Login
                                :  Yesterday 17:35
                                                    From  Russia
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @Alfkil
Quote:
 New versions of Qt4.7 and JuffEd. Yeah ! Who can hope there will be another version :) Btw, will you make "qt-minimal" as before ? Was pretty handy :)
Quote:
 How can I make a News announcement on this page??You mean announcement on SF page, or there ?
 
                        
             
            
                                    
 
     
    
                
                                
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/11 11:55 
                                  
                                    #34  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2009/10/7 0:11Last Login
                                :  8/26 18:34
                                                    From  Odense
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @kas1e Just an amigans.net news entry. Found it. @all Let me know, if there are any issues with installation etc. Or just if you like it. It feels really nice, when people like what you are doing ;) .
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/11 12:27 
                                  
                                    #35  
                             
         
     
    
                
                             Quite a regular
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2009/6/1 13:11Last Login
                                :  2024/1/12 16:20
                                                    From  Germany
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @alfkil I installed it. JuffED works now Printing support added I will try more things
                        
             
            
                                    
 
     
    
                
                                
                Amiga600/Vampire2/PrismaMegaMix/32GB CF Card/2x Rys Mk2/A604n/IndivisionECS/Gotek
            
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/11 12:37 
                                  
                                    #36  
                             
         
     
    
                
                             Quite a regular
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2009/3/10 10:51Last Login
                                :  2024/9/19 8:56
                                                    From  Germany
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @alfkil
Oh, yes, they do! 
 
                        
             
            
                                    
 
     
    
                
                                
                X1000|II/G4|440ep|2000/060|2000/040|1000
            
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/11 13:52 
                                  
                                    #37  
                             
         
     
    
                
                             Home away from home
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2006/12/2 3:55Last Login
                                :  Today 11:03
                                                    From  Italy, Perugia
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @alfkil
Installation went perfectly .. all seems nice as before (and better)
And yes a cutted archive would be nice to have, expecially for the OS4Depot repository, but also because the majority of plain users doesn't need all that developer files all around 
Good job mate 
 
                        
             
            
                                    
 
     
    
                
                             
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/11 14:45 
                                  
                                    #38  
                             
         
     
    
                
                             Home away from home
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2007/5/19 13:23Last Login
                                :  2024/1/2 17:30
                                                    From  England
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @kas1e I vote for a cut-down QT installation, without all that Developer stuff that 99% of users don't need.  The huge archive size probably puts off a lot of users from trying QT... (Also, it'd be better if it was an LHA archive, rather than .tar.gz, to avoid a (probably slightly confusing) two-stage unpacking process using UnArc.)
                        
             
            
                                    
 
     
    
                
                                
                Author of the 
PortablE  programming language.
            
 
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/11 16:12 
                                  
                                    #39  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2006/11/29 8:09Last Login
                                :  Today 13:11
                                                    From  Lyon, France
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @ChrisH Are Amigans children ? Of course it's a huge archive. But you only have ton install it ONCE. And then you dont't have to  touch it (except in there in an update 2 or 3 years later). And I prefer installing everything in order to prevent me from missing something when a new software is ported. So yes, it takes a little bit of time to install (I installed it on both my Sam440 and my X1000) but I'm now sure that everything is correctly installed.
                        
             
            
                                    
 
     
    
                
                                
                -- AmigaONE X1000 and Radeon RX 560 Sam460 and Radeon RX 560 MiST FPGA Replay + 060 DB
            
                 
     
    
        
     
     
   
        
  
    
    
        
    
    
        
            
         
        
            Re: Has Alfkil (Qt port developer) gone?
         
        
            
                                    Posted on: 
2016/8/11 16:21 
                                  
                                    #40  
                             
         
     
    
                
                             Just can't stay away
 
                                     
                     
                                 
                                    
                    
                         
 
                    
                        Joined:  2012/8/14 12:51Last Login
                                :  7/5 20:45
                                                    From  France
                                                                            Group: 
                                  Registered Users                            
                                                
                                                                            
                                             
                                     
        
                        @Alfkill
Many thanks   
And, please, could you remove the debug output of QtWebkit (debug output at SMTube exit for example) 
PS : I have just tested your first beta days ago, I will test your latest SourceForge version later.
 
                        
             
            
                                    
 
     
    
                
                                
                 
     
    
        
     
     
   
    
  
    
      Currently Active Users Viewing This Thread:
      1
      (
        0 members
                  and 1 Anonymous Users
              )