UpdateChecker

Moved

Total Downloads: 21,402 - First Release: Oct 24, 2014 - Last Update: Feb 1, 2018

5/5, 48 likes
  1. Anyone know if anyone is working on this just wondering. It would be nice to have this working for sure.
     
  2. I am working on a workaround for the ssl issue.
     
  3. Thanks man you are the best!!!!!!
     
  4. Noticed this file inside my plugin folder.
    Same Date site was Updated

    [12-01-2018 19:34:44] [Info] Update session started.
    [12-01-2018 19:34:44] [Error] @ GetCookies | The request was aborted: Could not create SSL/TLS secure channel.
     
  5. Code:
    using System;
    using System.Net;
    using System.Text.RegularExpressions;
    namespace test
    {
        class Program
        {
            static void Main(string[] args)
            {
                using (WebClient client = new WebClient())
                {
                    string htmlCode = client.DownloadString(“https://oxidemod.org/plugins/681/“);
                    Match version = new Regex(@"<h3>Version (\d{1,7}(\.\d{1,7})+?)<\/h3>").Match(htmlCode);
                    Console.WriteLine(version.Value);
                }
                Console.ReadLine();
            }
        }
    }
     
    Last edited by a moderator: Jan 17, 2018
  6. What is this why did you just put in code with no details?
     
  7. Wulf

    Wulf Community Admin

    It doesn't have anything to do with this plugin, it appears to just be a little, standalone program that handles a single plugin check. Obviously would need to be compiled though, but that isn't really a topic for this thread as this is the support thread for this plugin, not standalone tools.
     
  8. :| It was not supposed to be sent.. sorry. Thought i closed the site. Was testing how to get the version because i saw it failed when getting the version and the above code using the WebClient worked. BUT i decided not to send it because i might be totally wrong. And now its awkward. System.Net is not even allowed but it would have been a solution.
     
    Last edited by a moderator: Jan 17, 2018
  9. Getting "Couldn't get the latest version of plugin xx" for all plugins everytime it checks for updates.
    Is it just me or is there something broken? Also how would I fix it if it's just me?
     
  10. Please read above ^
     
  11. the site itself is blocking the checker from connecting.We all waiting on a fix.
     
  12. Wulf

    Wulf Community Admin

    The site itself isn't blocking anything, the host upgraded the site to SSL, but the SSL certificate is too new for Mono (what Oxide uses for web requests) to connect to the site.
     
  13. I am working on a fix.
     
  14. Any updates yet?
     
  15. My bad, didn't go back a site.
     
  16. LaserHydra updated UpdateChecker with a new update entry:

    2.2.0

     
  17. Thank u very much LaserHydra - Not sure how u done it but it works fine now.

    check this - nothing major

    > oxide.reload UpdateChecker
    UpdateChecker was compiled successfully in 1901ms
    Unloaded plugin UpdateChecker v2.2.0 by LaserHydra
    Missing plugin name prefix 'updatechecker.' for permission 'updater.check' (by plugin 'UpdateChecker')
    Loaded plugin UpdateChecker v2.2.0 by LaserHydra
    [UpdateChecker] Following plugins are outdated:
    # Automatic Build Grades | Installed: 0.0.22 - Latest: 1.0.45 | BGrade
    # Better Chat | Installed: 5.0.15 - Latest: 5.0.16 | BetterChat
    # DiscordMessages | Installed: 1.6.6 - Latest: 1.7.1 | DiscordMessages
    # HitIcon | Installed: 1.5.6 - Latest: 1.5.7 | HitIcon
    # Sign Artist | Installed: 1.0.0 - Latest: 1.1.2 | Sign Artist
    # GUIShop | Installed: 1.4.4 - Latest: 1.4.5 | GUI Shop

    what is the missing plugin name Prefix ??
     
  18. I'll fix that, thanks.
     
  19. thank you for the update, great work as always @LaserHydra
     
  20. Awesome work, thank you so much!