Page 28 of 32

Re: Addons

Posted: Wed Jan 04, 2017 5:31 pm
by mamabunny3
Idrinth wrote:
mamabunny3 wrote:does anyone know where i can find Asshat?
I don't recall that, what was it meant to do?
its for healers to let us remember jerks who complain about heals.. you put their name into asshat and it sends us a reminder that no matter how hard we heal they still complain and if we choose not to, we dont heal them until they change their attitudes

Re: Addons

Posted: Wed Jan 04, 2017 5:33 pm
by mamabunny3
Asshat is a simple addon that will allow you to make a custom 12 character note that attaches to the Friendly or Hostile target frame. The basic idea is that if someone is being an Asshat, you can create a permanent or temporary note about that player.

Re: Addons

Posted: Mon Feb 13, 2017 6:30 pm
by cheatandgo
hi all, long time ago, when i played on official servers i had an addon which changing Witch Elf icon from dagger to tits :)
anyone know what it was?

Re: Addons

Posted: Mon Feb 13, 2017 6:42 pm
by saupreusse
cheatandgo wrote:hi all, long time ago, when i played on official servers i had an addon which changing Witch Elf icon from dagger to tits :)
anyone know what it was?
I do not - but legend says if you eqip face eaters mask while nekkid you'll get what you are looking for ...

Re: Addons

Posted: Mon Feb 13, 2017 6:51 pm
by sullemunk
It's called Bigg'uns and should be on the essential addon list :P

Re: Addons

Posted: Mon Feb 13, 2017 7:00 pm
by cheatandgo
sullemunk wrote:It's called Bigg'uns and should be on the essential addon list :P
yep, TY :D

Re: Addons

Posted: Sat Apr 01, 2017 12:41 pm
by Idrinth
The site and any related service is currently suffering an outtage because of the certificate authority not being trusted anymore. I am working on getting the certificate replaced.

Re: Addons

Posted: Tue Apr 04, 2017 12:00 pm
by Idrinth
Just wondering, does my addon-client still work after the certificate has been replaced? I'm currently on vacation and can't properly test that.

Re: Addons

Posted: Sun Jun 25, 2017 6:47 pm
by Idrinth
(I believe I )Fixed the client, hope it now works for everyone again: https://github.com/Idrinth/WARAddonClie ... /tag/1.3.1

Re: Addons

Posted: Fri Jun 30, 2017 4:52 pm
by Idrinth
Just wondering if UI-Authors would be fine with a schema like that?
Spoiler:

Code: Select all

{
  "$schema": "http://json-schema.org/draft-03/schema#",
  "id": "idrinth-war-addon-settings",
  "properties": {
    "name": {
      "type": "string",
      "required": true,
      "description": "The name of the UI, used for storage purposes as well"
    },
    "version": {
      "type": "string",
      "required": true,
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$",
      "desription": "May be used for automatic updates in the future"
    },
    "description": {
      "type": "string",
      "required": false,
      "description": "Will be displayed when loaded by the client"
    },
    "authors": {
      "type": "array",
      "required": false,
      "description": "Will be shown as authors",
      "items": {
        "type": "object",
        "properties": {
          "website": {
            "type": "string",
            "description": "An author's website url",
            "format": "uri"
          },
          "name": {
            "type": "string",
            "description": "An author's (nick-)name",
            "required": true
          },
          "contact": {
            "type": "string",
            "description": "An author's email",
            "format": "email"
          }
        }
      }
    },
    "website": {
      "type": "string",
      "required": false,
      "description": "The UI's website or forum thread",
      "format": "uri"
    },
    "download": {
      "type": "string",
      "required": false,
      "description": "A download link for automatic updating",
      "format": "uri"
    },
    "config": {
      "type": "object",
      "required": true,
      "properties": {
        "local": {
          "type": "string",
          "description": "base 64 encoded, zipped character-specific configuration",
          "required": true
        },
        "global": {
          "type": "string",
          "description": "base 64 encoded, zipped global configuration",
          "required": true
        }
      }
    },
    "addons": {
      "type": "array",
      "description": "A list of addons to download",
      "required": true,
      "items": {
        "type": "string",
        "description": "the url-part of an addon from tools.idrinth.de"
      }
    }
  }
}
Result looks similar to:
Spoiler:

Code: Select all

{
  "name": "My UI",
  "authors": [
    {
      "name": "Idrinth",
      "website": "http://idrinth.de",
      "contact": "[email protected]"
    }
  ],
  "website": "https://idrinth.de/ui/",
  "download": "https://idrinth.de/ui.json",
  "version": "1.0.0",
  "description": "abc...",
  "config": {
    "local": "base64 encoded zipped data blob here",
    "global": "base64 encoded zipped data blob here"
  },
  "addons": [
    "a1",
    "b2"
  ]
}