Jump to content

Jonnyboy

Members
  • Posts

    538
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by Jonnyboy

  1. @johnnyboy

    thanks for implementing my request.

    however when I run your software I get an IE script error at line 736 char 2: syntax error.

    I try to continue running the script but nothing happens, just 4 gradient-blue rectangles with no text in them and no window title just "document.title".

    Send me the logs.

  2. Hi Jonny Boy,

    I am sorry that i couldn't send you the log file before because i was very busy. Thank you for the new version. I saw that you added plugin for Foxit Reader. I have a question about the process.

    Shall I first setup Foxit Reader, then set up ff. 3.07, and finally ff. Addon Maker v0.601?

    Or shall i first set up ff. 3.07, then Addon Maker v0.601, and finally set up Foxit Reader? Which sequence is the correct one?

    Thank you very much for your help.

    Foxit Reader must be installed before the plugin will work. The plugin only allows you to read a pdf inside of firefox. The order in which you set things up, should not matter.

  3. I think that I may have found another thing that may be causing the problem. If your extensions are currently not Global and your create the installer with them as Global ( or vice versa) and you choose to keep the extensions current status, then the path to the extensions will be wrong and Firefox will not load them on startup. I will see about editing the file in that case.

    *EDIT*

    edit the file will only be possible if you are installing Firefox and the profile to the system drive. The future system drive ( to be installed into ) must also be the same as the current system drive. I will have to create a series of checks to determine this and invalidate if necessary.

    Unfortunately, I am out of time for this session. I will get back to it as soon as I can.

  4. I have problem with Ayakawa 3.0.8pre. "Silent" was without extensions, gm_scripts and user.js. Log attached.

    Ayakawa 3.1b4pre just the opposite, is full and perfect.

    logfile.rar

    I think that you have done a no no. You can not choose to locate the New Profile Path in the default location. If that is the location that you want it in, leave that blank. I am checking this now. Please try deleting the profile after you have installed the addon and then start Firefox. If all is well, then that was the problem.

    The log shows that everything copied properly.

    I will add script that will check this a invalidate if it entered as the choice.

  5. Update Posted

    *Forgot to add*

    Changelog

    v0.601 - 03-21-09

    -fixed issue where when returning from help screen, the window would refresh improperly

    -added option to keep extensions.ini and extension.rdf. These files store the status (disabled or not) of each extension. If these files are not present, they are regenerated, automatically.

    -fixed issue where when leaving Firefox Addon Maker to Main with the title was incorrect

  6. i'm glad you managed to get that foxit plugin worked out. hope it wasnt TOO much trouble :P

    Nope. Foxit wouldn't install into my system until I installed Firefox in the default location. So, I couldn't get the plugin until figured that one out.

  7. update posted

    Changelog

    v0.60 - 03-20-09

    -added plugin for Foxit Reader

    -updated plugins: Flash v.10.0.22.87, Shockwave v.11.0.472, WGA v1.9.0009.1, OGA v.1.7.0111.00, QuickTime v.7.60.92.0, RealPlayer v.6.0.12.69 and Live Connect v.6.0.12.69

    -added status bar

    -re-written to all text localizeable

    -aaded off-line mode to allow for building installer from your current installation

    -added script to attempt to locate your current installation folders

    -removed all tooltips and replaced with "?" help screens

    -fixed issues wuth 3.1.x Optimized versions

    -fixed issue with 3.1.x versions branding not being removed

  8. I found that the "make addon for x64 Windows" ain't there no mo'. Also,

    1- The latest Tete build doesn't get re-branded

    2- Latest Ayakawa crashes in x64 (may be an issue with the build itself, not with your maker, though)

    3- Plugin versions are outdated. Can you put some AI into the addon maker to just copy the DLLs in the Plugins folder if they are newer?

    4- Can you please also include the latest Foxit PDF plugin?

    I'm 90% done with an update and I hope all of these issues will be taken care of.

    Thanks

  9. @jonnyboy

    I have a suggestion: can you make it possible to work in offline mode (copy files from local FF installation for PCs without internet connection) ?

    I will look into it. It is easy enough. I am currently modifying the tool, I may be able to add that option without much difficulty.

    Excellent tool!

    Tnk a lot :D

    Thanks

  10. I am working on a tool that will combine my Firefox Addon Maker, Inf Assistant and Thunderbird Addon Maker into one tool. This will make it easier for me to add additional tools, in the future. Also, everything is being redone so to make the addition of localized strings easier. Currently, it is being created with English and French.

    I am looking for ideas for any options and additions that are not currently in my tools and any bugs that were in my tools that had not been corrected.

  11. Hi Jonnyboy,

    After several tests, I understood that there was no problem between v0.517 and f.f 3.06. The problem was because of my system. You're right! :thumbsup_anim:

    However after creating f.f 3.06 with v0.517, I tested f.f I saw that there was an unneeded folder in C:\Documents and Settings... and the folder name is "$Admin$". If you are interested, i can send you log file and folder name in details.

    PS: I used nLite, and I created another administrator account (named "admin") in $OEM$ folder. Can this have anything to the with the subject?

    Thank you so much.

    Yes, send me the logs.

    thx

  12. I did not have these problems with the version 0.515 in Turkish version of Windows. I think you used robocopy in v0.515.

    No, I have been using xcopy since moving to the hta as front-end. If it workied properly in other versions, then there must be another reason why it is not working on your system.

    Have you tried using a shorter path? After some initial testing, I do not believe that to be the problem. So, the next version will remove xcopy and use vbscript to copy files. Just more work to get it working.

  13. This will do the checking and start if necessary. It is better that you set the as a scheduled task instead of looping every 20 minutes. But, I have included a timer loop.

    Option Explicit
    Dim objWMIService, objProcess, colProcess
    Dim strComputer, strList, Running

    strComputer = "."

    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" _
    & strComputer & "\root\cimv2")

    Set colProcess = objWMIService.ExecQuery _
    ("Select * from Win32_Process")

    Do
    For Each objProcess in colProcess
    Running = ""
    If objProcess.Name = "cleanmgr.exe" Then Exit For
    Running = "False"
    Next
    If Running = "False" Then Run "C:\program files\cleanmgr\cleanmgr.exe"
    wscript.sleep 120000000
    Loop

    Sub Run(ByVal sFile)
    Dim shell

    Set shell = CreateObject("WScript.Shell")
    shell.Run Chr(34) & sFile & Chr(34), 1, false
    Set shell = Nothing
    End Sub

    Hope this helps.

    PS - Don't forget to edit the path to the program to run.

    ~Jonnyboy

  14. Hi Jonnyboy,

    I tested your new fixed ff addon maker v0.517, and i have important problems! I have added the below extensions to Firefox 3.06 standart version:

    - Flashgot

    - Locationbar

    - linkification

    - Flagfox

    - Extended Copy Menu

    - URL Fixer

    - BugMeNot

    - SpeedDial

    - Distrust

    I started the setup after selecting silent installer type. v517 completed without any error. However, firefox came with the default theme, and above ff extensions did not exist! Would you please fix v0.517, so that it will not have problems with extensions and themes when we use ff 3.06 standart version?

    Thanks a lot...

    Please send me the log file and I will look at it.

  15. Yo JB!

    Awesome as usual! Found a bug in 517, though. It doesn't remove the "Minefiled" branding from Tete's 3.06.

    Please let me know how I can help.

    :thumbsup_anim: With each new version, they keep adding new names. I missed this one. Thanks for pointing it out. I will fix in the next update.

    ~Jonnyboy

  16. Hi Jonnyboy, I've seen the text for translation and I wanted to translate the text in macedonian language, but, the words or the sentances in macedonian language are much longer. Will that effect in cutting parts of the words, sentances?

    The same occurs with some of the French strings. Do the translation and I will make changes as necessary to accommodate the longer strings.

    Thanks

  17. I will post an update as soon as possible.

    Thanks

    ***EDIT***

    tete has followed the example of Ayakawa and removed\discontinued the posting of 2.0.0.x versions of Firefox.

    pigfoot has also discontinued creating 2.0.0.x versions of Firefox.

    I will post a quick update today, but I will be reworking this to remove the 2.0.0.x versions of the optimized Firefox and leave only the Vanilla of the 2.0.0.x version.

    Also, I need to add links for the current 3.1b version of Vanilla Firefox.

×
×
  • Create New...