Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
53 user(s) are online (34 user(s) are browsing Forums)

Members: 1
Guests: 52

hlt, more...

Support us!

Headlines

 
  Register To Post  

« 1 2 3 (4) 5 6 7 ... 17 »
Re: Introducing the Rear Window blog
Site Builder
Site Builder


See User information
@trixie
I added your fine blog at the amigablogs.net (http://amigablogs.net/node/582664/feed-items). Thank you for updating your blog with so interesting posts.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@walkero

Fantastic, thank you very much!

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Site Builder
Site Builder


See User information
And while I was doing this, I saw your blog Roman (http://kas1e.blogspot.com/) left with no updates. I bet we could read some fine posts from you again. Should we hope for it?

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@walkero

Quote:
And while I was doing this, I saw your blog Roman (http://kas1e.blogspot.com/) left with no updates. I bet we could read some fine posts from you again. Should we hope for it?

Yes please, Roman! Even if your blog just serves to introduce your great videos.

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Home away from home
Home away from home


See User information
@walkero,trixie
I just find out blogs to be something you spend a lot of time on, but they did not get much attention. I mean, you wrote nice articles, spend a lot of work on them, and they disappeared into the dust after few weeks. And no one will read them outside, as they didn't have many frameworks behind like saying youtube, where anyone typing "amigaos4" can found your work.

But i surely love to read amigaos4 blog articles :)

Speaking about my videos (And sorry for OT, but as Trixie ourself bring it here, so hope he in interst about too), i finished today my problably first "big" video i spend 2 weeks on : "Sam460: from the Begining to the End". It's pretty long 45 minutes video, about SAM460. With music, subtitles, lot of editing-video work, etc, etc. Not "that" proffesional of course, but probably one of not bad ones from me.

There is: https://youtu.be/X75KbnOpZhA

Quote:

PART 1: Unpacking the package and close look at motherboard - 0:15 till 4:35
PART 2: The first run. Tests on the Table. | 4:30 till 9:00
PART 3: Installing into the case. Vertical GFX setup. | 9:10 till 20:45
PART 4: Installing of AmigaOS4 FE. an USB Stick way. | 20:55 till 26:20
PART 5: The basic configuration : Network, Audio and Extrass | 26:30 till 30:35
PART 6: UP 2 DATE. Installing Update1 and Update2 | 30:45 till 36:20
PART 7: Full settings. Real-life performance | 36:30 till 45:15



Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@all

A small update to the latest article on the Rear Window blog. The file requester module of the Rave audio editor now supports DOS multi-assigns. As the screenshot below shows, multi-assigns are shown in bold and when you double-click on them, you can select one of the associated paths from a pop-up menu.

Resized Image

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Just popping in
Just popping in


See User information
@trixie

Do you have any idea of ​​an approximate release date?

Go to top
Re: Introducing the Rear Window blog
Site Builder
Site Builder


See User information
@trixie
This is really awesome. The popup on the multiassign is a hidden chooser? So, you check the node at the listbrowser for multiassigns and you dynamically create a hidden chooser?

Do you use UserData to keep that information on the node, or something else?

Sorry for all these questions.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@sinisrus

Quote:
Do you have any idea of ​​an approximate release date?

As I explained in the blog post, things unfortunately got delayed due to the lockdown parenting hell, but I'll definitely give you something to play with this summer.

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@walkero

Quote:
The popup on the multiassign is a hidden chooser? So, you check the node at the listbrowser for multiassigns and you dynamically create a hidden chooser? Do you use UserData to keep that information on the node, or something else?

I scan the DOS volumelist for the current list of volumes and assigns, and if a specific assign is marked as a multi-assign, I scan it for the associated paths. These end up on a Chooser list, which I store within the respective ListBrowser node. But I don't use LBNA_UserData for this. Instead, each ListBrowser node in the requester's list of assigns is allocated as a custom node via AllocListBrowserNode() and LBNA_NodeSize (which has the size of my custom node structure). The Chooser list is then stored as a pointer in the custom node structure.

The advantage of this is that upon selection, I can simply GetAttr() the LISTBROWSER_SelectedNode attribute and read the Chooser list pointer from the node structure. In other words, I spare a subsequent GetListBrowserNodeAttrs() call to retrieve LBNA_UserData.

The multi-assign path selector is indeed a hidden chooser. I create one such chooser for the file requester. When a multi-assign gets double-clicked, I retrieve the Chooser list pointer from the ListBrowser node, set CHOOSER_Labels to point to the respective list, and then open the hidden chooser via ActivateGadget().

Of course I have a notification on the DOS volumelist, so the list of volumes and assigns gets rebuilt with every change reported by DOS. I also rebuild the list whenever the file requester reopens.

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Site Builder
Site Builder


See User information
@trixie
Pretty smart way to do it. Thank you for the explanation.
Did you see any slow downs on requester open? When you do the first scan? When you start the application or when the user first open the requester? Have you tried it on Sam440 you have to see how fast it is?

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: Introducing the Rear Window blog
Just can't stay away
Just can't stay away


See User information
@trixie

Hi, this new (asl)requester looks amazing!!!!

Instead of a chooser, did you try with Hierachical nodes/entries (those with [+]) or does it mess everything up?

Go to top
Re: Introducing the Rear Window blog
Home away from home
Home away from home


See User information
@trixie

nice read thanks for posting

_______________________________
c64-dual sids, A1000, A1200-060@93, A4000-CSMKIII
PiStorm32 & Catweasel MK4+= Amazing
! My Master Miggies-Amiga1000 & AmigaONE X1000 !
mancave-ramblings

Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@jabirulo

Quote:
Instead of a chooser, did you try with Hierachical nodes/entries (those with [+]) or does it mess everything up?

I was considering hierarchical nodes, but in the end I settled for the chooser. The reason is that the multi-assign path strings can get quite long and won't fit in the listbrowser area. So you'll have to use a horizontal scroller to see the paths in full. This is more awkward than simply selecting from the chooser pop-up. Another reason is that the standard system ASL requester uses a similar solution: when you double-click on a multi-assign, a pop-up selector opens.

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@walkero

Quote:
Did you see any slow downs on requester open? When you do the first scan? When you start the application or when the user first open the requester?

At application start-up I only build the requester object (including GUI). I scan the DOS volumelist whenever the user opens the requester (and, as I mentioned above, when there is a change notification from DOS).

Quote:
Have you tried it on Sam440 you have to see how fast it is?

My Sam440ep-Flex is currently in storage, waiting for me to find time to install Update 2 on it. But I've tested the program under emulation (OS4.1 for Classic in WinUAE), and the requester opens almost immediately. So I'd say the volumes/assigns scan is fast. And I can tell you that my emulated system is much slower than the Sam440.

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Site Builder
Site Builder


See User information
Quote:
But I've tested the program under emulation (OS4.1 for Classic in WinUAE), and the requester opens almost immediately. So I'd say the volumes/assigns scan is fast. And I can tell you that my emulated system is much slower than the Sam440.


That's awesome. Thanks for the details.

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: Introducing the Rear Window blog
Quite a regular
Quite a regular


See User information
@trixie
Really lookin forward to Rave, as I'm a "musician" your'e going to get a lot of feedback, suggestions and bug reports from me. Bring it on! ;)

1989-> A500, A600, A3000, A4000, A1200, CD32, µA1, PegII, A1XE, CDTV, Amy/416D79, A1X5000, Vampire 500 V2+, Vampire 600 V2, Amy-ITX, Denise ITX, Apollo V4SA, A1X5000/40 <-2026
Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@all

My new blog post is looking at the Polish magazine Amiga NG (among other things). Enjoy the read!

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Amigans Defender
Amigans Defender


See User information
@all

I have posted a progress update on the Rave audio editor. Hope you'll find it interesting!

The Rear Window blog

AmigaOne X5000 @ 2GHz / 4GB RAM / Radeon RX 560 / ESI Juli@ / AmigaOS 4.1 Final Edition
SAM440ep-flex @ 667MHz / 1GB RAM / Radeon 9250 / AmigaOS 4.1 Final Edition
Go to top
Re: Introducing the Rear Window blog
Quite a regular
Quite a regular


See User information
@trixie
Quote:
Nice read on the Rave Update. Thanks. Keep up the good work!

AmigaOne X1000, A1222Plus, uA1
Go to top

  Register To Post
« 1 2 3 (4) 5 6 7 ... 17 »

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )



Polls
Running AmigaOS 4 on?
AmigaOne SE/XE or microA1 12% (26)
Pegasos2 3% (8)
X5000 22% (48)
X1000 14% (30)
A1222 8% (19)
Sam 440/460 18% (40)
Classic PowerPC Amiga 2% (6)
WinUAE emulation 7% (16)
Qemu emulation 9% (21)
Total Votes: 214
The poll closed at 2025/12/1 12:00
8 Comments


Powered by XOOPS 2.0 © 2001-2024 The XOOPS Project