Development :  K-Meleon Web Browser Forum
K-Meleon development related discussions. 

Pages: Previous12345...LastNext
Current Page: 2 of 19
Results 31 - 60 of 570
20 years ago
asmpgmr
MonkeeSage, Has to be something in the registry code, quicksearch gets the URL from the default unnamed entry under HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\<nickname> I assume you meant favorites.dll not bookmarks.dll
Forum: General
20 years ago
asmpgmr
MonkeeSage, Try building the updated ie_utils.cpp code, the main program code is fine since it's exactly the same as the bookmarks lookup code. The registry syntax is: @="http://kmeleonbrowser.org/forum/read.php?f=%s" The updated code reflects this even though it's basically the same.
Forum: General
20 years ago
asmpgmr
MonkeeSage, The building the updated ie_utils.cpp code, the main program code is fine since it's exactly the same as the bookmarks lookup code. The registry syntax is: @="http://kmeleonbrowser.org/forum/read.php?f=%s" The updated code reflects this even though it's basically the same.
Forum: General
20 years ago
asmpgmr
MonkeeSage, Here's a minor change to the code, the three lines which add the findnick function remain the same. #include <wininet.h> ... void findNick(char *nick, char *url) { HKEY hKey; DWORD dwSize; char regkey[128] = "Software\\Microsoft\\Internet Explorer\\SearchUrl\\"; *url = 0; strncat(regkey, nick, 80); if (RegOpenKey(HKEY_CURRENT_USER, regkey, &
Forum: General
20 years ago
asmpgmr
jsnj, You would also have to download an updated k-meleon.exe for the favorites nickname search to work. IE itself doesn't have a nickname facility, it's all implemented via the quicksearch add-on which uses the registry HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl\<nickname> The default key for any nickname is the URL which can have a %s in it for substitut
Forum: General
20 years ago
asmpgmr
MonkeeSage, That's too bad, there should definitely be a way to build K-Meleon (or any Gecko browser) without having to download and build all (or most) of Mozilla. There is a win32 Gecko SDK on the ftp site which has a bunch of .lib files but it doesn't have the needed header files which makes somewhat it useless.
Forum: Development
20 years ago
asmpgmr
MonkeeSage, I see that your page now lists my favorites quicksearch update, I take it you were able to test it and it worked as expected ? I can't test it since I don't have ie on my system, I removed it from my system as well as a lot of other M$ junk.
Forum: General
20 years ago
asmpgmr
MonkeeSage, Maybe you should consider also posting the Mozilla include files and libraries (xpcom.lib baseembed_s.lib nspr4.lib plc4_s.lib) for both 1.2.1 and 1.4b so that downloading and building all of Mozilla isn't required. By the way did you get a chance to test my favorites quicksearch lookup update yet ?
Forum: Development
21 years ago
asmpgmr
StefanTroll Why can't you just stop ? As I've said before I really don't care what browser you use but if you're a fan of another one then it's quite stupid to come here just to troll. If you don't like K-Meleon then that's fine, I really couldn't care less but then stop posting on a K-Meleon forum. Also stop trying to turn stuff around, when a dumbass lik
Forum: Development
21 years ago
asmpgmr
joe, - Generally stuff from mozdev won't work in K-Meleon. - If by searching from the address bar you are referring to bookmark keywords then that's in the unofficial build of K-Meleon at http://gratisdei.com/KM.htm - Which right click options are better ? - You can already change the useragent string - Preferences->Privacy->Browser Identification
Forum: General
21 years ago
asmpgmr
Currently K-Meleon adds an identifier saying it created the bookmarks file whenever it writes the file out and checks for it when it's read in. The message is displayed if the identifier isn't found. Open an RFE against bookmarks in the bugs tracking system regarding this issue.
Forum: General
21 years ago
asmpgmr
jsnj, Sorry I can't help you there, layers and the loader are the two things in K-Meleon I've never looked at, no interest. It would be useful to know if this also happens normally (no layers) with many windows open to determine whether it's a core problem or a problem within the layers plugin. I remember MonkeeSage saying that memory usage is improved by later versions of the Moz
Forum: General
21 years ago
asmpgmr
jsnj, Is the memory leak layer-specific ? Can you narrow it down to any specific thing to help in debugging it ?
Forum: General
21 years ago
asmpgmr
Here's a macro which will restore the current URL on the URL bar, bind it to a key (like Alt-D) and you can always get back the current URL get_url { $var = getclipboard(); setclipboard($URL); id(ID_SELECT_URL); id(ID_EDIT_PASTE); setclipboard($var); }
Forum: Bugs
21 years ago
asmpgmr
StefanTroll Basically your problem is that you don't like the fact that I'm not a Mozilla or phoenix/firebird fan. TOO BAD. You're just like some stupid religious fanatic who gets upset because everyone doesn't share their viewpoint. All you can do is troll here waiting for me or someone else to say something that isn't supportive of Mozilla or phoenix/firebird. You igno
Forum: Development
21 years ago
asmpgmr
I've posted this in the past but here it is again, this regedit script will make K-Meleon the default browser and remove the DDE keys which can cause problems. If K-Meleon wasn't installed in the default location then the paths have to be changed. REGEDIT4 @="K-Meleon.HTML" "Content Type"="text/html" @="K-Meleon.HTML" "Content Type"
Forum: General
21 years ago
asmpgmr
StefanTroll, Listen you stupid bastard I did most of the coding for the updates on his and MonkeeSage will confirm that. If that isn't enough anyone who frequents these forums knows bloody well that I post a LOT of code updates. You are just a stupid jealous little dumbass troll. Your inane crap is quite tiring so unless you have anything useful to contribute here then SHUT UP AND GO AWAY !
Forum: Development
21 years ago
asmpgmr
This should fix the problem, in ns_bookmarks_edit.cpp routine EditProc change: if (feof(bmFile)) { delete gBookmarkRoot.child; delete gBookmarkRoot.next; gBookmarkRoot.child = NULL; gBookmarkRoot.next = NULL; strtok(bmFileBuffer, "\n"); ParseBookmarks(bmFileBuffer, gBookmarkRoot); } to: (add Rebu
Forum: General
21 years ago
asmpgmr
The feof probably isn't the problem. It looks like between ns_bookmarks_edit.cpp 1.17 and 1.18 (see CVS) the IDCANCEL code in EditProc was changed signifcantly. Restoring the 1.17 IDCANCEL code should fix it for now: case IDCANCEL: UnhookWindowsHookEx(hHook); if (hWndFront) PostMessage(hWndFront, WM_COMMAND, wm_deferbring
Forum: General
21 years ago
asmpgmr
MonkeeSage, The other thread was getting too long (and wide) so I started a new one. About the bookmarks problem could you try the following - in ns_bookmarks\ns_bookmarks_edit.cpp, routine EditProc, in case IDCANCEL remove if (feof(bmFile)) { and the corresponding closing } but leave the code within intact, the feof isn't needed and may be the cause of the problem. --- Implement favorit
Forum: General
21 years ago
asmpgmr
MonkeeSage, About the bookmarks problem could you try the following - in ns_bookmarks\ns_bookmarks_edit.cpp, routine EditProc, in case IDCANCEL remove if (feof(bmFile)) { and the corresponding closing } but leave the code within intact, the feof isn't needed and may be the cause of the problem.
Forum: General
21 years ago
asmpgmr
K-Meleon does have support for a bookmarks toolbar. I don't know much about since I don't use it but it's there. Bring up the bookmarks editor and right click, there's a selection to make a toolbar folder. I've posted a .reg file in the past which will make K-Meleon the default browser, search the forums for it. Popup control (and control of other Javascript elements) c
Forum: General
21 years ago
asmpgmr
Minor change: Add findnick to ie_favorites\ie_plugin.cpp: else if (stricmp(subject, "AddLink") == 0) { addLink((char *)data1, (char *)data2); } else if (stricmp(subject, "FindNick") == 0) { findNick((char *)data1, (char *)data2); } else return 0; Add findnick to ie_favorites\ie_utils.cpp: #include <wininet.h> #define
Forum: General
21 years ago
asmpgmr
MonkeeSage, Implement favorites nicknames by reading the quicksearch registry branch HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl Add findnick to ie_favorites\ie_plugin.cpp: else if (stricmp(subject, "AddLink") == 0) { addLink((char *)data1, (char *)data2); } else if (stricmp(subject, "FindNick") == 0) { findNick((cha
Forum: General
21 years ago
asmpgmr
StefanTroll I'm actually making useful contributions to K-Meleon. You are just are stupid ass troll who only posts here whenever someone mentions phoenix. Clearly you have nothing even remotely useful to contribute or say in regards to K-Meleon so posting here. It should be obvious to even a stupid dimwit like yourself that on a K-Meleon forum the majority of people here are interested in K
Forum: Development
21 years ago
asmpgmr
Another way this can happen is if you edit the URL bar then decide to go back or forward.
Forum: Bugs
21 years ago
asmpgmr
This is happening to prevent the URL bar from being overwritten with the current URL while typing if a page is being loaded. This should probably be changed because of the stated problem which is more likely to occur than someone typing in the URL bar while a page is loading. MonkeeSage if you're reading this, the fix is in BrowserFrm.h: Change: inline SetCurrentURL(LPCTSTR pUrl) {
Forum: Bugs
21 years ago
asmpgmr
I can confirm this, I'll look into it and see if I can figure out what's going on.
Forum: Bugs
21 years ago
asmpgmr
jsnj, The bookmarks plugin has nothing to do with those entries. Anyway I still have the check marks for all the view toolbar items. I did find the following bug - If a URL is opened from the bookmarks editor (via enter or right click menu), the message handler in ns_bookmarks_utils.cpp seems to stop receiving messages and the bookmarks menu (Alt- becomes unusable. The status bar is no longer
Forum: General
21 years ago
asmpgmr
jsnj, The backups are created even if you just opened the bookmarks editor and exited without doing anything. I couldn't patch it out fast enough. You can disable the prefs backups as well (this is a general Mozilla pref) user_pref("backups.number_of_prefs_copies", 0);
Forum: General
Pages: Previous12345...LastNext
Current Page: 2 of 19

Search Messages:


Search Authors:


Forums:


Options:
   
K-Meleon forum is powered by Phorum.