<nephele[m]>
I think my code isn't strictly correct :)
<nephele[x]>
I mean, the text fits, but with no margain it looks a bit bad
<jessicah>
it looks bigger too
<nephele[x]>
Yes, it is bigger
<jessicah>
and we really need to make the resize handle dynamically sized, it irks me that it doesn't fill the whole square
<nephele[x]>
Well... most of my work in that direction was fixing apps scrollbars before that, by now we are in pretty good shape there, so go ahead :P
<nephele[x]>
StyledEdit, ShowImage Webkit etc. now have correct scrollbar sizes
Babaj has joined #haiku
<nephele[x]>
I have an inline void function in the shared kit that i try to use with StyledEdit, If i change it jam does not recompile it, is that a bug? how can i force it to recompile it?
<PulkoMandy>
that should work unless you modified a jamfile (the jamfiles themselves are not tracked as dependencies)
<nephele[x]>
A bug then :/
<nephele[x]>
Hmm, i suppose i have to add it to libshared.a
<nephele[x]>
wierd that it worked beforehand though
<jessicah>
oh, I need to also figure out why processcontroller doesn't center it's dialog properly
<nephele[x]>
I want to pass the BView object to my inline function, i have class StatusView : public BView, so BView should be the "SuperClass" of StatusView, how can i pass this to a function? I have tried Function((BView)this) but that didn't quite work :)
<jmairboeck>
nephele[x]: this is a pointer in C++, so you need BView* in the function signature
<nephele[x]>
I have inline void AdoptScrollBarFontSize(BView* view) as my signature
<jmairboeck>
I think you can just remove the cast then
<jessicah>
Function(this) should work
<jessicah>
assuming you're not in a static member function
<nephele[x]>
Ah, yes, it does... I forgot to change the signature in the header
<nephele[x]>
I am a bit lost... why this function does not get called though, apperntly, even if i set the font size to 3.0F there the apparent font size is unchanged .-.
<PulkoMandy>
jessicah, the process controller thing is because BAlert tries to center itself on top of the parent window rather than on the center of the screen, I think
<PulkoMandy>
usually works, but not well for ProcessController where the parent window is DeskBar
<PulkoMandy>
the only way to override this is to manually move the alert somewhere. The problem is, you cannot use CenterOnScreen, because before calling this function, the alert is not sized correctly
<Begasus>
jessicah yeah, saw that, thanks!
<nephele[x]>
How far is your patch for ansi terminal colors? I can't see red on my black background... :(
<nephele[x]>
This is what i am stuck on now, the function seems to have no effect when called, no matter what i put into it: https://termbin.com/w1zp
<PulkoMandy>
you're missing the \n for your print so they will be buffered until the app exits or something else prints a newline
<PulkoMandy>
also you shouldn't set the view font size at every loop, you can use font->GetHeight to get the font metrics directly from the font
<nephele[x]>
Ah, you are correct. I removed the body of that function and only put view->SetFontSize(3.0F); or 22.0F into it with no result, so i'm missing something else
<PulkoMandy>
and set the view font only when you found the right one
<nephele[x]>
This is just the code commited to Renga for now, Trying to figure out why it has no effect, but i'll adjust it for using font->GetHeight
<PulkoMandy>
also you need a fontSize++ somewhere?
<PulkoMandy>
otherwise this is just an infinite loop and the compiler may decide to optimize it out
<PulkoMandy>
ah, no, it's there in the middle
<nephele[x]>
fontSize = fontSize +1; is there, and the code works in Renga anyhow?
<PulkoMandy>
this loop is too complicated for me to understand, incrementing the loop index in the middle, three possible exit conditions, ...
<nephele[x]>
I can rewrite it a bit, anyway, if i put
<nephele[x]>
printf("Getting size..."); as only statement in the body of the function, or one statement to set the font size this has no effect :)
<nephele[x]>
I think i have something wrong with how i am pulling this code into Styledit or so?
<PulkoMandy>
your options are: you didn't recompile your code, you didn't run the thing that you just compiled
<PulkoMandy>
the code itself is looking fine
<PulkoMandy>
(well, putting "inline" in the function definition is useless since it can't be inlined from one C++ file to another)
<Not-5835>
[haiku/website] kallisti5 pushed 1 commit to master [+0/-0/±1] https://git.io/J4C2Y
<Not-5835>
[haikuports/haikuports] Begasus pushed 1 commit to master [+2/-3/±0] https://git.io/J4luY
<Not-5835>
[haikuports/haikuports] Begasus 88a51c4 - osl, bump version (#6097)
<PulkoMandy>
Coldfirex, yes, reopened and moved to beta4
<Coldfirex>
PulkoMandy: thanks!
<Begasus>
extrowerk, do you know what the stats on Blender is atm?
<Begasus>
I know Gerbera is broken (checked here) but didn't check Blender
vezhlys has quit [Quit: Leaving]
<nielx[m]>
PulkoMandy: thank you for assuming the worst and aggressively teaching me a lesson, it worked!
<Begasus>
k, seems that OSL still needs to gcc2 patch ...
<PulkoMandy>
nielx[m], well, tojoko said that my latest changes did not fix his problem in the ticket, I asked for a syslog and got no reply, but that doesn't mean the issue is gone
<nielx[m]>
Yeah, but I did not appreciate the tone of the response, you could have asked 'are you sure you meant to close this' rather than aggressively teaching me a lesson. I have been around longer than this and I am not some punk wreaking havoc on the ticket system
<PulkoMandy>
ok, you're right about that, sorry
<nielx[m]>
np :-)
<Coldfirex>
weird. I just got a KDL on RC1 doing nothing
<PulkoMandy>
(bad excuse: currently being frustrated by the layout system not wanting to size my BView as I want it to...)
<nielx[m]>
(I understand that pain!)
<nielx[m]>
Sometimes I also feel like the layout system is a battle
<Not-5835>
[haiku/website] kallisti5 pushed 1 commit to master [+0/-0/±1] https://git.io/J48Nx
<Not-5835>
[haiku/website] kallisti5 e237c63 - r1beta3: More language cleanup, add minisig links
<jeremyf[m]>
waddlesplash: Can you close my ticket #17064 because it's the same than #10162?
<Coldfirex>
I am guessing the logging levels have already been turned down on RC1 image?
<nephele[x]>
jeremyf: done
<jeremyf[m]>
thanks :)
<nephele[x]>
You can also comment on the ticket asking for it to be closed, it's easier than asking specific devs on irc :)
<jeremyf[m]>
it was also to see if he answer here, I wanted to discuss about the issue
<PulkoMandy>
Coldfirex, yes, the release images have some extra checks in the kernel disabled, which means crashes will not be caught as fast as in nightlies and will be harder to investigate
<jeremyf[m]>
My wifi connected automatically at boot twice, but now it's not working anymore... :(
<nephele[x]>
jeremyf: if you have more info it's nice to include in the other ticket aswell, it's also possible that there are severall issues at play here
<nephele[x]>
for me for instance my laptop connects to specific wifi AP every time with a specific SSID, but for other users it never seems to work
<Coldfirex>
PulkoMandy: thats what I thought, thanks
Maturion has joined #haiku
<jeremyf[m]>
nephele[x]: I don't have a precise idea of what happened. It usualy doesn't connect, but sometimes it seemes that it connects.
<jeremyf[m]>
can't find a reason for that
beaglejoe has quit [Quit: Leaving]
Maturion has quit [Ping timeout: 480 seconds]
freakazoid343 has joined #haiku
shaka444[m] has joined #haiku
<shaka444[m]>
NIce work on the Webkit fellas, youtube working very nicely in x64!
freakazoid333 has quit [Ping timeout: 480 seconds]
freakazoid12345 has joined #haiku
<nephele[x]>
shaka444: that was a haiku fix actually :P
<nephele[x]>
jeremyf: could be something like a race condition, or it could be a specific issue, perhaps we can add some logging to the nightlies to debug this issue
freakazoid343 has quit [Ping timeout: 480 seconds]
<jeremyf[m]>
nephele[x]: why not
freakazoid333 has joined #haiku
freakazoid12345 has quit [Ping timeout: 480 seconds]
B2IA has quit [Quit: Vision[0.10.3]: i've been blurred!]
B2IA has joined #haiku
Begasus_32 has quit [Quit: Vision[0.10.3]: Gone to the dogs!]
AlaskanEmily has joined #haiku
Begasus_32 has joined #haiku
freakazoid343 has joined #haiku
<Not-5835>
[haikuports/haikuports] Begasus pushed 1 commit to master [+1/-0/±1] https://git.io/J4RRE
<Not-5835>
[haikuports/haikuports] Begasus 82050fb - krita, revbump for OCIO (#6099)
floof58_ has quit []
floof58 has joined #haiku
freakazoid333 has quit [Ping timeout: 480 seconds]
mmu_man has joined #haiku
<Not-5835>
[haikuports/haikuports] Begasus pushed 1 commit to master [+0/-1/±1] https://git.io/J4RoH
<Not-5835>
[haikuports/haikuports] Begasus 2f8c996 - osl, disable partio for now (#6100)
<nephele[x]>
wanted to link you to a ticket, but the timeline is not cooperating with me
<nephele[x]>
there is a ticket for reusing downloads which fails, one issue pulkomandy found in my log was that it would ignore HTTP errors and attach their body to downloaded packages :)
<Begasus>
yeah saw it
<nephele[x]>
what's still missing is that if it for some reason considers packages in states as partial, or otherwise unusable, that it should skip those for consideration
<nephele[x]>
that is still a todo... don't know if we have a precise ticket for that
Maturion has quit [Ping timeout: 480 seconds]
<Begasus>
needs some looking into, rebuilding curl_x86 atm local
<Begasus>
k, managed, mv'd curl pugixml out of the way, update done now, thanks!
Begasus_32 has quit [Quit: Vision[0.10.3]: Gone to the dogs!]
<Begasus>
If nothing pups up on buildmaster I think I'm done for these weeks :)
Vidrep_64 has joined #haiku
<Vidrep_64>
Hi
<Vidrep_64>
PulkoMandy, HaikuWebKit 1.8.2 WebKit 612.1.25 is working pretty well so far
<jeremyf[m]>
Hi
<Begasus>
hi Vidrep_64
<Vidrep_64>
Hi Begasus, jeremyf[m]
<Vidrep_64>
Are these small bug fixes that have been made the last couple of days going to make it into the Beta 3 release?
<Coldfirex>
I thought rc1 was 612.1.21?
<Begasus>
There has been reports on the forum Vidrep_64 , looks like you missed out on some things :)
dcatt has joined #haiku
<nephele[x]>
coldfirex: we don't have any rcs for haikuwebkit?
<nephele[x]>
you mean the rc for beta3?
<Coldfirex>
yes
<Vidrep_64>
Coldfirex, PulkoMandy pushed a more proper fix for the missing text bug in master. 612.1.21 still has the hack, which was done so as to not hold up the release any further.
<Begasus>
heading down here, will check later/tomorrow/sometime this week :)
<Coldfirex>
do the small videos on espn.com not play for others? I never tried before todya
tuaris has joined #haiku
<cocobean>
Vidrep_64: Safari proves we can use Webkit for a modern browser tasks... even with Google maps.
<cocobean>
Can even build it on RISCV now.
<cocobean>
Don't think we need QtWebEngine for most things...maybe
<nephele[x]>
chromium lite with more qt
<dcatt>
too bad Opera wont open source Presto
<dcatt>
relying on a single rendering/javascript engine is not a good thing
<PulkoMandy>
we still have 3 of them: webkit, firefox and blink/chromium
<waddlesplash>
yes, at this point blink is diverged so sharply from webkit that they are definitely not the same
<dcatt>
PulkoMandy, but isn't Gecko sort of DIW on Haiku currently?
<PulkoMandy>
ah, if you mean on haiku, yes, it's only webkit
<PulkoMandy>
not sure if it's worth splitting our time in chasing multiple engines instead of focusing on one
<dcatt>
yeah, I was mostly thinking about Haiku concenring relying on a single rnedering/javascript engine though I'm not blaming Haiku for that
<dcatt>
I fear the return of an IE6 like WWW
<nephele[x]>
as long as apple uses webkit i don't think we are in any danger there :g
<nephele[x]>
netsurf has pretty good compatibility with html+css though
moldybred has joined #haiku
<moldybred>
Hi. I just had a kernel page fault on r1beta2-hrev54154_111-x86_64 over KVM. I was wondering if someone could help me submit a proper bug report?
<waddlesplash>
screenshot/picture, please?
<waddlesplash>
beta2 is now a little old, we are on the cusp of beta3, and it's possible it is already fixed or at least tracked
<moldybred>
I have one. Not sure how to upload to this web client....
<moldybred>
I'll login with a proper client....
moldybred_ has joined #haiku
moldybred has left #haiku [#haiku]
moldybred_ is now known as moldybred
<jeremyf[m]>
Anyone knows which engine is used by DuckDuckGo Browser?
<jeremyf[m]>
Maybe Webkit/iOS and Chrome/Androïd?
<moldybred>
Who should I send the kernel screenshot to?
<jeremyf[m]>
waddlesplash:
bbjimmy has quit [Quit: Vision[0.10.3]: i've been blurred!]
<moldybred>
Thanks. I'll switch to a recent nightly and see if I still have an issue.