Skip to content
This repository has been archived by the owner on Dec 28, 2021. It is now read-only.

Usefull loaded chunks in timings #14

Open
wants to merge 30 commits into
base: master
Choose a base branch
from

Commits on Jul 30, 2014

  1. POM Changes

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    a4b61cc View commit details
    Browse the repository at this point in the history
  2. Spigot Timings

    Adds performance tracking timings all around the Minecraft Server, and improves the usability of the /timings command
    
    Plugins can track their own timings with CustomTimingsHandler
    aikar authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    ed13cc8 View commit details
    Browse the repository at this point in the history
  3. Add PlayerItemDamageEvent

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    d03c056 View commit details
    Browse the repository at this point in the history
  4. BungeeCord Support

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    27c287b View commit details
    Browse the repository at this point in the history
  5. Add Arrow API

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    c7f688c View commit details
    Browse the repository at this point in the history
  6. Add Particle API

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    d6d8311 View commit details
    Browse the repository at this point in the history
  7. Define EntitySpawnEvent and SpawnerSpawnEvent

    Defines EntitySpawnEvent and SpawnerSpawnEvent. Adds BUKKIT-267 and BUKKIT-1559
    ams2990 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    3f5ec07 View commit details
    Browse the repository at this point in the history
  8. Entity Mount and Dismount Events

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    bd06b74 View commit details
    Browse the repository at this point in the history
  9. Update Depends

    - All of these changes have been reviewed to be binary compatible and in general contract compatible with previous versions of the libraries.
    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    bc1667a View commit details
    Browse the repository at this point in the history
  10. InventoryClickEvent getClickedInventory

    Add InventoryClickEvent.getClickedInventory. Adds BUKKIT-4495
    Plugins currently have to do the logic themselves on the raw slot ID
    in order to determine the inventory clicked. This provides the logic for plugins to
    readily identify which inventory was clicked.
    aikar authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    1e9a6be View commit details
    Browse the repository at this point in the history
  11. Added getAllSessionData() to the Conversation API.

    Alex Bennett authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    7d0f86a View commit details
    Browse the repository at this point in the history
  12. Catch Conversation API Errors

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    dd9483b View commit details
    Browse the repository at this point in the history
  13. Player Collision API

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    4a68dc0 View commit details
    Browse the repository at this point in the history
  14. Expand Boolean Prompt Values

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    a7d7357 View commit details
    Browse the repository at this point in the history
  15. Add Getter for Entity Invulnerability

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    1a0fa23 View commit details
    Browse the repository at this point in the history
  16. Add respawn API.

    ninja- authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    8b2546f View commit details
    Browse the repository at this point in the history
  17. Fix Plugin Message API Disconnects

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    0d5e70c View commit details
    Browse the repository at this point in the history
  18. Fix Tab Completion for Some Commands

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    7677d9e View commit details
    Browse the repository at this point in the history
  19. Add Spigot Links

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    15b7016 View commit details
    Browse the repository at this point in the history
  20. Implement Locale Getter for Players

    Smove authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    892f708 View commit details
    Browse the repository at this point in the history
  21. Add support for fetching hidden players

    minecrafter authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    db2459f View commit details
    Browse the repository at this point in the history
  22. Silenceable Lightning API

    mcy authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    2e53a3f View commit details
    Browse the repository at this point in the history
  23. Remove deprecation on some player lookup methods

    Most of these methods still have plenty of use given that only one player with each name can exist at a time. Deprecating these methods renders even basic functionality such as /msg <name> impossible without causing compiler warnings. We will maintain this API and it should be considered safe and appropriate for most use cases.
    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    892ce3a View commit details
    Browse the repository at this point in the history
  24. Expand team API to allow arbitrary strings.

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    23f1953 View commit details
    Browse the repository at this point in the history
  25. Add Score.isScoreSet()Z API.

    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    b6cddde View commit details
    Browse the repository at this point in the history
  26. Add PlayerSpawnLocationEvent.

    ninja authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    a9c9f2f View commit details
    Browse the repository at this point in the history
  27. Ease ClassLoader Deadlocks Where Possible

    When on Java 7 we can register the classloader as parallel capable to prevent deadlocks caused by certain scenarios. Due to the nature of PluginClassLoader this isn't completely safe, but we can make it safer by switching to concurrency focused collections. Either way this is far better than crashing the server.
    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    57f5c65 View commit details
    Browse the repository at this point in the history
  28. Fix slow tab complete for some commands.

    Use online players instead of offline players, which is very slow.
    md-5 authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    f78e555 View commit details
    Browse the repository at this point in the history
  29. Undeprecate Player#updateInventory()V

    mcy authored and SpigotMC committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    5891e6f View commit details
    Browse the repository at this point in the history
  30. Usefull loaded chunks in timings

    Adds total loading chunks to timings (in comments)
    Maxim Van de Wynckel committed Jul 30, 2014
    Configuration menu
    Copy the full SHA
    168f37a View commit details
    Browse the repository at this point in the history