AxRuntime v41.5 available #83
Replies: 8 comments 15 replies
-
Dear Sir: I have tried Final Writer on Linux using its incredible AXRuntime tool, it seemed wonderful to me. Now, I am interested in implementing Intuition + Scalos using Axruntime. Could you provide me with a small tutorial on how to do it? I await your news. Very thankful: Fco. Morales |
Beta Was this translation helpful? Give feedback.
-
Hey there, @xgnusr Looks like we have the same goal (maybe?) I'm actually hoping to create a little distro, complete with an installer GUI (naturally also written with Intuition) and a lightweight, transparent Amiga emulator for classic software that cannot be recompiled. |
Beta Was this translation helpful? Give feedback.
-
Curious. Is it "normal" that some MUI attributes aren't defined? For starters, Putting this on top of the source file works, as per code from this wiki. #ifndef MUIA_Slider_Level
#define MUIA_Slider_Level 0x8042ae3a /* V4 isg LONG */
#endif |
Beta Was this translation helpful? Give feedback.
-
Messing about with I got somewhere but now it's complaining that |
Beta Was this translation helpful? Give feedback.
-
BTW, if you recompile any software for AxRuntime and would like to host it "centrally", let me know. I'll host it on axrt.org. |
Beta Was this translation helpful? Give feedback.
-
Two days ago I read up on MorphOS having an ObjectiveC API since 3.10.
Produces:
@Deadw00D Any idea why this fails? I assume marrying two runtimes like this won't work out of the box? HelloApp.m source code: #import <ObjFW/ObjFW.h>
#import <ObjFW/OFLocale.h>
#import <ObjFW/OFString.h>
#import <sys/utsname.h>
struct utsname buffer;
@interface HelloApp: OFObject <OFApplicationDelegate>
-(void) print;
@end
OF_APPLICATION_DELEGATE(HelloApp)
@implementation HelloApp
- (void)applicationDidFinishLaunching: (OFNotification *)notification
{
uname(&buffer);
[OFStdOut writeLine: @"Hello World!"];
[OFStdOut writeLine: OFApplication.programName];
[OFStdOut writeLine: OFLocale.languageCode];
OFString *stringFromUTFString = [[OFString alloc] initWithUTF8String: buffer.version];
[OFStdOut writeLine: stringFromUTFString];
[self print];
[OFApplication terminate];
}
- (void)print
{
OFLog (@"Hello Print");
}
@end |
Beta Was this translation helpful? Give feedback.
-
@Deadw00D May I have access to the IntuitionWM source? |
Beta Was this translation helpful? Give feedback.
-
Not really related to the window management inside AxRuntime Intuition but I just found this and thought it might be interesting (if only for its historical value): |
Beta Was this translation helpful? Give feedback.
-
New release of AxRuntime is available. It is a small, bugfixing release and preparation for first beta of Intuition Window Manager. More information here: https://github.com/deadw00d/AROS/releases/tag/AxRT_41.5
Beta Was this translation helpful? Give feedback.
All reactions