Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
99 user(s) are online (59 user(s) are browsing Forums)

Members: 1
Guests: 98

FlynnTheAvatar, more...

Headlines

 
  Register To Post  

« 1 2 3 (4) 5 6 »
Re: Help Joerg
Just can't stay away
Just can't stay away


See User information
@spotUP

Since glib doesn't deal with graphics, I don't think it is relying on amicygnix. I use glib for Qt, and I can run qt console programs from Shell without amicygnix being even started. I think you should take a look at it.

Oh and by the way, I have just myself compiled a .so version, that you are free to use

Go to top
Re: Help Joerg
Home away from home
Home away from home


See User information
@kas1e

Joerg pointed out to me that, if you want a fully featured desktop browser, then you're better off porting a fully featured desktop browser (such as Firefox or Chrome). This would be much less work than turning OWB into a fully featured desktop browser. OWB was designed to be a minimalist browser for mobile devices (i.e, devices with small screens). I can understand his point of view, even though I'd still like to see a basic download manager.

Joerg has chosen to focus on improving OWB instead of expanding it, and that's fine. I think that it works better as a consequence of that focus (faster, more reliable, etc.).

No-one is stopping anyone here from adding a feature or two themselves. Isn't that what this thread is about, helping out? Let Joerg focus on what he's doing; someone else can have a look at adding a few extras (without turning OWB into a heavy slow browser).

Hans

http://hdrlab.org.nz/ - Amiga OS 4 projects, programming articles and more.
https://keasigmadelta.com/ - more of my work
Go to top
Re: Help Joerg
Home away from home
Home away from home


See User information
@Hans
Btw, did joerg commit his latest changes to SVN ? If so, then someone can try to add download manager window with progress bar and 2 buttons - stop/resume. That should be enough. Not sure thorgh, that Joerg will not skip that code at all for the next builds :))

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Help Joerg
Just can't stay away
Just can't stay away


See User information
@porthan

Quote:
Erm, you obviously use endian aware macros when accessing endian depending memory.
Of course you don't do that in AmigaOS software, it's not required since it only runs on big-endian CPUs.

(And I wouldn't use macros but inline functions, or maybe #ifdef BIG_ENDIAN /* normal AmigaOS code */ #elif defined(LITTLE_ENDIAN) /* AROS workaround */ #else #error PDP_ENDIAN and other weird CPUs are not supported #endif)

Quote:
Preferably one doesnt try to parse font data on the disk directly at all... but that is another story.
It doesn't have anything to do with strange things like that, it's just that rendering the pixels of the glyphs using something like *glyphARGBBuffer = (AA << 24) |?(RR << 16) | (GG < 8) | BB; doesn't work correctly on little endian CPUs since they store them in the wrong order (BGRA instead of ARGB) and you'd have to add AROS-only workarounds which are completely useless for AmigaOS and MorphOS.

Go to top
Re: Help Joerg
Just popping in
Just popping in


See User information
@joerg

Quote:

Of course you don't do that in AmigaOS software, it's not required since it only runs on big-endian CPUs.


For now it only runs on BE but who knows what there is in the future?

Go to top
Re: Help Joerg
Just popping in
Just popping in


See User information
@Daniel

Quote:

Always found MUI programs to be the least stable. For example, the Voyager browser was always problematic. Then there's the various MUI libs and making sure you have the latest or most stable for the various MUI programs you use, which is thankfully very few these days.


Really a bad example with Voyager, though: the toolkit doesn't automagically fix application-specific bugs.

And about the eternal mcc argument, well, there would be this problem as well if Reaction had a large 3rd-party class development. But good MUI applications avoid using all the exotic mcc classes, and also avoid enforcing the very latest version of a mcc just for the sake of it, when they use them.


Edited by Fab on 2010/7/21 15:26:09
Go to top
Re: Help Joerg
Just popping in
Just popping in


See User information
Quote:

porthan wrote:
@joerg

Quote:

Of course you don't do that in AmigaOS software, it's not required since it only runs on big-endian CPUs.


For now it only runs on BE but who knows what there is in the future?


This goes through the entire OS - all code used in OS4 assumes big-endian CPU, it's a requirement since all 68k programs also are big-endian, and OS4 is supposed to let 68k and PowerPC programs share data and memory. Porting OS4 to a little-endian architecture would require major rewriting of the entire OS. It will not happen.

And the same also applies for MorphOS.

-- kolla
Go to top
Re: Help Joerg
Just can't stay away
Just can't stay away


See User information
@Hans

Quote:
OWB is more of a library

I think Sand-lab website even says it should be easy to turn OWB into a library (if I remember). Could somebody turn OWB into shared library or datatypes class ? That way anybody could build their own browser around it. Or use even Multiview.

Is the latest changes in the repository as well ?

Rock lobster bit me - so I'm here forever
X1000 + AmigaOS 4.1 FE
"Anyone can build a fast CPU. The trick is to build a fast system." - Seymour Cray
Go to top
Re: Help Joerg
Just can't stay away
Just can't stay away


See User information
@nexus

Quote:
Why does it make no sense to implement a desktop browser around OWB?
It would be much more work than porting a browser like Firefox, or Chromium if you prefer WebKit (or even just something like Arora if you only want a simple one), and you'd never get a browser with all of the features of browsers like Firefox or Opera anyway, not even if several AmigaOS developers would work full time on it.

Quote:
Maybe I don't understand the term "desktop browser" in the right way ..
OWB is a browser for CE devices ( http://www.sand-labs.org/owb#WhatisOWB ), not a browser for desktop computers.

Quote:
but if OWB shouldn't be used as a desktop browser then OWB on AOS4 makes no sense in its current state, too?
It doesn't, it's just better than having nothing at all on AmigaOS for browsing web pages which depend on CSS and Javascript
It's still the same it always was: A temporary solution until the port of a complete web browser like Firefox is done.

Go to top
Re: Help Joerg
Just popping in
Just popping in


See User information
@afxgroup

Quote:

afxgroup wrote:
@Daniel

Quote:

Could GUI parts be taken from AWeb, which is open source and has a Reaction GUI?


Maybe you don't understand that he doesn't want to add useless GUI to OWB


Was only a suggestion, no need to be sarcastic. I am well aware that improving OWB's GUI is a low priority. There may well be elements of AWeb's GUI that may be very useful additions to OWB without bloating the program.

Go to top
Re: Help Joerg
Home away from home
Home away from home


See User information
@joerg
Why you ignore that question all the time: "Is the latest changes in the repository as well ?" ? :) Already 3 or more mans feels yourself brave enough to add download manager to (imho).

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Help Joerg
Home away from home
Home away from home


See User information
@Daniel

Are you sure that the AWeb GUI could be a better solution in comparison of the current OWB UI ?

Perhaps it is more complete as options but is too much old as style and general functionalities.

Go to top
Re: Help Joerg
Just can't stay away
Just can't stay away


See User information
@kas1e

Quote:
Why you ignore that question all the time: "Is the latest changes in the repository as well ?" ? :)
No idea why the same question gets repeated several times, but I don't see any reason the repeat the answer to it as well

You can't simply commit changes to the OWB SVN. To add changes to the OWB SVN you have to create a patch with the included scripts, add it to the OWB trac and let someone else review your changes, if there is no problem the reviewer commits them to the SVN.
Since the scripts don't work on AmigaOS and I have to transfer the sources to a Linux box for running them, and I'm, or at least was until now, the only one working on the AmigaOS 4.x port of OWB I don't update them often. If someone wants the sources of OWB 3.29 (a SVN diff to revision 1466, about 500 KB) send me an E-Mail.

Go to top
Re: Help port GStreamer
Just popping in
Just popping in


See User information
i have only one thing to say, please dont stop the work on owb for os4 - i am very happy that there are still people who do software for the amiga. thank you very much for owb on os4!!!!

Go to top
Re: Help port GStreamer
Home away from home
Home away from home


See User information
@joerg
Quote:

You can't simply commit changes to the OWB SVN. To add changes to the OWB SVN you have to create a patch with the included scripts, add it to the OWB trac and let someone else review your changes, if there is no problem the reviewer commits them to the SVN.
Since the scripts don't work on AmigaOS and I have to transfer the sources to a Linux box for running them, and I'm, or at least was until now, the only one working on the AmigaOS 4.x port of OWB I don't update them often. If someone wants the sources of OWB 3.29 (a SVN diff to revision 1466, about 500 KB) send me an E-Mail.


Yep, cool. Thanks, now everything looks clear.

@Trixie
Did you read that thread ? Maybe you will be in interest in cooperate with me (or anyone else) create a reaction based GUI for simply/primitive download manager ?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Help port GStreamer
Just can't stay away
Just can't stay away


See User information
@kas1e

I have code already for a simple progress bar window. But I don't know how one will integrate it with OWB's download code.

Rock lobster bit me - so I'm here forever
X1000 + AmigaOS 4.1 FE
"Anyone can build a fast CPU. The trick is to build a fast system." - Seymour Cray
Go to top
Re: Help port GStreamer
Quite a regular
Quite a regular


See User information
@all

just in case not seen: FFmpeg 0.6.0

Release Notes
==========
* 0.6 "Works with HTML5" June, 2010

General notes
-------------
This release features a lot of improvements that are relevant for HTML5 video.
The H.264 and Theora decoders are now significantly faster, the vorbis decoder has seen important updates and this release supports Google's newly released libvpx library for the VP8 codec and WEBM container.


and FFplay and FFmpeg have been ported by MickJT recently....

A1200+Mediator+VooDoo3+060/50+96mo+IIYAMA 17"+CD,CDRW,ZIP SCSI-KIT
SAM440EP on Mapower 3000+AOS4.1

Amiga Docs Disk Preservation Project
Go to top
Re: Help port GStreamer
Home away from home
Home away from home


See User information
@TSK
Maybe just email that code to Joerg ?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Help port GStreamer
Just can't stay away
Just can't stay away


See User information
@kas1e

Where can I find Joerg's email adress which he reads ?

Rock lobster bit me - so I'm here forever
X1000 + AmigaOS 4.1 FE
"Anyone can build a fast CPU. The trick is to build a fast system." - Seymour Cray
Go to top
Re: Help port GStreamer
Home away from home
Home away from home


See User information
@TSK

Back in times i talk with Joerg in PMs, but maybe he can give the mail adress for us now :)

@Joerg
Give us plz your current/working mail :)

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top

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

 




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




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project