[INACTIVE][ADMN/INFO] BukkitUpdater v0.2.7.57 - Shows outdated plugins and more [1060]

Discussion in 'Inactive/Unsupported Plugins' started by zauberstuhl y33, Jul 19, 2011.

  1. Offline

    zauberstuhl y33

    wassilij and BadgerLove like this.
  2. Offline

    noahwhygodwhy

    perfect, except for one small bug,
    i typed /u2d and this came up
    [​IMG]
    notice the repeated plugin names, and the giant plugin is supposed to be Giant Trees
     
  3. People, read what zauberstuhl y33 writes. He's the developper of this plugin and a few posts before he answers your questions. -.-

    But here again: At this moment this plugin supports on the server side only itself and Stargate. That's because the server has to parse this forum for plugin updates and the algorhitmus for that is still in an early development state. But he will make a webformular for willing plugin developpers to update their links in the database manually (I hope he makes a security door before this, I don't want kiddies send in fake updates pointing to stupid java exploits... But that's another story xD).
    And at the moment there is a token system, I didn't read about that because I can wait for the development to go future so you have to search the infos for yourself (Hint: The first page describes the plugin and this forum has a search function, too).
     
  4. Okay thanks, But im the server owner and i do all the updates myself so i keep track of it, and so far it seems to work fine!

    Thanks for a great addon! <3
     
  5. Offline

    zauberstuhl y33

    Thanks. it should be fixed with the new threading!
    The Problem with the Name is a regex bug i'll fix it
     
  6. Offline

    noahwhygodwhy

    k, thanks
     
  7. Offline

    Nitnelave

    Possibility to warn about new recommended build? Apart from that, sounds great!
     
  8. Offline

    zauberstuhl y33

    difficulty... but i added to the feature request :)

    Server update:
    From now on the server will also add static links(global) automatically to the database.
    Every plugin-page on bukkit which has following regex-syntax:
    Code:
    /(htt[ps|p]:\/\/[\w\d\/\.\-\_\s]*?\/$plugin\.jar)/ig
    e.g:
    have fun
     
  9. A little report here:

    Your plugin reports GiantTrees v0.3.3 to be outdated, but if i go to the Plugin here all seem to be uptodate oO

    Giant Trees
     
  10. Offline

    zauberstuhl y33

    yes right ... at the moment (26/7 22:13) the script found 90 static links btw. ;)

    i'll discover it tomorrow
    cheers
     
  11. SignClock version installed: 1.5
    Newest version: 1.5 (in this forum and in the plugin.yml)

    But he says there is a new version. :(

    //EDIT:
    [​IMG]
     
  12. Offline

    zauberstuhl y33

    ups i found a big bug in the update script i'll fix it :S

    EDIT:

    I think i fixed the server bug:
    Code:
    my ($ref_version_length, $version_length) = (length($ref_version), length($version));
    if ($ref_version_length > $version_length) {
      $ref_version = substr $ref_version, $version_length;
        if ($ref_version < $version)
          #override it
    
    e.g. database version is 1.4.9 and the newer one is 1.5.
    the script will substring 1.4.9 to 1.4 and check then against 1.5 !!
     
  13. So it realizes a jump from 1.4.9 to 1.5 now? that's fine. Is it the same for 1.3 to 2 or 1.4.32 to 1.5 or 1.4.9 to 1.4.10 [EDIT]or 1.2.2 to 2? or 1.7.3.6.3.2 to 1.7.4? :D[/EDIT]

    //EDIT²: If not: I think you will need a few arrays and loops in your php script? ;)

    Also this seems to be unrelated to my bug reported, because it checks if 1.5 != 1.5 but interprets the result as true. :(
     
  14. Offline

    Oscarius

    Hi, I noticed a bunch of our plugins were unsupported by BukkitUpdater. I know many of them have direct .jar links, would you like me to put them in a list here so you can add support for them?
     
  15. Offline

    Hamad

    Plugins request:
    Mob Disguise
    Citizens
    WorldGuard
    WorldEdit
    FalseBook
    ZombieAcolopyse
    Residence
    StickyHelp

    More to come....
     
  16. Offline

    zauberstuhl y33

    I found a better way. I'll compare the versions now with the perl module Perl::Version.
    This way will fix the version bug completely:
    Code:
    sub version_comparision {
    my $v1 = Perl::Version->new( shift );
    my $v2 = Perl::Version->new( shift );
    if ($v1->vcmp( $v2 ) > 0) {
    return 1;
    }
    return 0;
    }
    It is easier and nicer ;)

    After the release from 0.2.6 the fix will be also available for the lower versions.

    @Oscarius and @Hamad i'm working on it thanks.
     
  17. Offline

    r3xx0n

    Some Plugin Requests:
    - bLift
    - MagicCarpet
    - WorldEdit
    - AutoMessage
    - RedstoneChips
    - SimpleSave
    - Minequery
    - LogBlockQuestioner
    - ChestShop
    - WorldGuard
    - iConomy
    - p2Aliases
    - EssentialsChat
    - BasicCircuits
    - SensorLibary
    - EssentialsSpawn
     
  18. Offline

    Hamad

    don't forget simplehelp :) and theres another version of vampire made by 3 ppl, I guess
     
  19. Fine, I didn't work with perl and didn't read you're code snipped, so I thought it was PHP (because of the $ in front of the variables). :D

    P.S. I sended you a PN asking another question. Could you please have a look? :)
     
  20. This is what i get using the command /u2d (ingame or console, same result)

    Code:
    2011-08-01 18:20:25 [SEVERE] java.util.NoSuchElementException
    2011-08-01 18:20:25 [SEVERE]     at java.util.Scanner.throwFor(Unknown Source)
    2011-08-01 18:20:25 [SEVERE]     at java.util.Scanner.next(Unknown Source)
    2011-08-01 18:20:25 [SEVERE]     at zauberstuhl.BukkitUpdater.ThreadHelper.sendData(ThreadHelper.java:61)
    2011-08-01 18:20:25 [SEVERE]     at zauberstuhl.BukkitUpdater.Async.Overview.u2d(Overview.java:91)
    2011-08-01 18:20:25 [SEVERE]     at zauberstuhl.BukkitUpdater.Async.Overview.run(Overview.java:53)
    2011-08-01 18:20:25 [SEVERE]     at org.bukkit.craftbukkit.scheduler.CraftWorker.run(CraftWorker.java:34)
    2011-08-01 18:20:25 [SEVERE]     at java.lang.Thread.run(Unknown Source)
    Anything i did wrong?
     
  21. Offline

    zauberstuhl y33

    please retry it and write me if the problem still exists.
    there was a problem with the plugin Giant Trees. i created a workaround.. i'll fix it tomorrow completely
     
  22. Offline

    pawarm

    Plugin Requests:
    - ClothColor
    - CommandBook
    - CraftBook
    - godPowers
    - iConomyChestShop
    - Lottery
    - MinequeryPlus
    - PermissionsSql
    - WorldEdit
    - WorldGuard
     
  23. Offline

    Bigman2491

    I am getting the same problem.
     
  24. Offline

    seedorfj

    you can't use on PermissionsEx
    also, what good is it if I can only update 3 of my 20 or so plugins.
     
  25. Offline

    zauberstuhl y33

    i added this to the feature request

    something like the blacklist? this is also on the request list. you'll be able to exclude plugins from the BukkitUpdater
     
  26. Offline

    seedorfj

    Thanks, you may run into trouble though because it has a .jar called permissionsex and one called just permissions, so that is where I had trouble.
     
  27. Offline

    zauberstuhl y33

    Now the testing version has blacklist- and permissionex support BUT this version was not tested-dev yet.
    So remaining patient or risking it ;)
     
  28. I also had the above issues with 0.2.6.... So badly that after letting the server run 12 hours after update with the severe issue that it locked up the pc with 2 out of 4 cores at 100% cpu usage. I had to restart the pc. Since it was completely locked up.
     
  29. Offline

    zauberstuhl y33

    sorry i'm not sure which issue you mean.

    if there is an error output please post it to improve our BukkitUpdater
    cheers
     
  30. Offline

    riuthamus

    Player is reporting BOSEcon is saying its out of date for version 7.1 > 0.7.1

    The most recent version of BOSEcon is 0.7.1 so please update accordingly. Thanks!
     

Share This Page