Crise
Management-
Content count
3008 -
Joined
-
Last visited
Everything posted by Crise
-
I already told how to prevent this from happening while UAC is on in my post :)
-
for me it works correctly: [16:32:38] *** User [420]hojo - Sharing 20027 forbidden files including 01 A Place Nobody Can Find.mp3, comment: none [16:33:04] *** User [Apex-VIP]TheJackal - Sharing 32171 forbidden files including 14 - KoRn - Tearjerker.mp3, comment: none Note: I used adl whch marks every file as forbidden to test this... if you are using language xml (read: translation) then check that it has no errors.
-
Greg, it is possible... by enabling the autocomplete for search :)
-
is not ope source either :)
-
[Feature Add] HubFrame/PrivateFrame Chat Message Resizing
Crise replied to dmvn's topic in Feature Requests
We already have this, see max resize lines (under advanced -> experts only) the difference to yours being that it only resizes when it is needed -
Well yes and no, it is labeled as stable yes, but it had some issues which should have been fixed in it, but weren't (as you should know) so I choose to disable it as well. Consodering the only differences between 1.0.0 and 1.0.1 are fixes.
-
The plugin api is still in itäs infant stage, I'll gladly take any suggestions (or patches... ) about improving it. Regarding the documentation, it is just as incomplete as the plugin api, but it is there, I guess forum permissions are incorrect somewhere.... Edit: the link you mentioned should work now :(
-
Feel free to submit your changes as .patch file (other formats are fine too though), because as far as committing goes... I am the only one who is doing that, pretty much.
-
This is a bug.
-
Well if you only have one account, that account has admin privileges, as if the account Apex is run on is regular user account, what you experience does not happen :(
-
Yes, don't use your administrator account as your primary account for daily use :(
-
That should be in SDC and Apex already... might not be the exact same one though, but something similar anyways ps: the filtering work fine for me (1.0.1), on NMDC hubs, ADC is a different story though :)
-
it does so once only anyways so it really doesn't matter though :)
-
a simple one, beta version versus final...
-
About remembering settings state, mine does it just fine...
-
Heh, the plugin api in 1.0.1 is very strictly C++ only... and it has other limitations as well, because we pass std::strings to dll, which is only safe when the build environment for the dll is the same as the exe's (I plan on getting rid of the need to pass strings soon though)
-
Queue.xml might prove useful in this case...
-
Nope we'll bundle few fixes and put 1.0.1 out :thumbsup:
-
1. I assume you mean the behavior of /switch here... it has been removed. 2. Explain this better please, as for advanced being collapsed that is intentional.
-
the ip issues have been resolved...
-
The userlist resizing has been fixed...
-
SSE perhaps, but what about other optimizations...
-
Same place as before afaik :rolleyes:
-
Excuse for commenting here directly, but that solution is not good at all... here is why it doesn't work and what should be done to preserve same optimized code and functionality that in 32bit (because those asm blocks that fail for 64bit are optimized for performance). When targeting x64 platforms in Visual Studio 2005 or later, programmers are no longer able to use inline assembly code as they did for 32-bit code. This forces the programmer to either rely on C/C++ code using intrinsics, or to tediously create a 64-bit MASM (.asm) version of the function.