Skip to content
Thomas E Enebo edited this page Jan 5, 2014 · 14 revisions

About releases

You can go to Purugin's files page to get the latest release.

0.7.0 (command syntax language) - built against Bukkit 1.7.2-R0.2

This release has added a new Command syntax release. It also includes a smattering of more convenience methods. Hopefully from this point on I will keep a better history of what has changed from release to release.

The versions below use an old versioning scheme and this record is being kept for posterity

1.5.2-R1.0 (Nameless) jar

Update Purugin to 1.5.2 including new event support for: BlockExpEvent, EntityPortalEvent, EntityPortalExitEvent, HangingBreakByEntityEvent, HangingBreakEvent, HangingEvent, HangingPlaceEvent, FurnaceExtractEvent, InventoryCreativeEvent, InventoryDragEvent, InventoryInteractEvent, InventoryMoveItemEvent, InventoryPickupItemEvent, PlayerEditBookEvent, PlayerItemConsumeEvent.

  • new item_stack method: item_stack(:iron_ingot), item_stack(:iron_ingot, 10))
  • new shaped_recipe method: server.add_recipe shaped_recipe(item_stack(:sand, 10), "xy\nyx\n", x: :wood, y: :gravel))

1.2.5.1 (purogo a go go)

  1. Use EntityType instead of LivingEntity since it was deprecated
  2. Addition of massive logo-like turtle graphics purugin (see Purogo/Introduction).

1.2.4.1 (doh...24 hour release)

  1. Updated bits.yml to use DEVELOPMENT build of 1.2.4 of craftbukkit.jar

1.2.3.1 (annotation land)

  1. Based on latest promoted beta API build of craftbukkit (see bits.yml for which ones if you manually install)
  2. Add new support for services (see PluginDependencies).
  3. Massive fixes for new Bukkit API changes

1.1.0.1 (no codeword to see here)

  1. New kind method for entity (an_entity.kind -> :cow)
  2. New name method for entity (an_entity.name -> 'Cow')
  3. Any material can ask if it is solid (stone_block.solid? -> true)
  4. Sync'd entities with 1.1 (new lava_slime and snow_man)
  5. Metaprogramming magic to define all event listeners (was manually sync'd -- and was a little out of date)

1.0.0.1 (a long time coming)

  1. Uses first recommended build of Craftbukkit known to work with Minecraft 1.0.0
  2. Permissions removed from install (manually install permission plugin of choice)
  3. Data directories lazily created when/if accessed
  4. Add new Purugin::Tasks module (sync_task, async_task)
  5. New predicates for World (e.g. world.nether?, world.normal?, etc...)
  6. New generic World.is? :my_custom_world
  7. Fix #7: Purugin fails to start (paths with spaces or other special chars)
  8. Lots of new Entity predicate (e.g. entity.cow? + generic entity.is? :cow)
  9. Action now has predicates: clicked_air? and clicked_block?
  10. Added Marv Cool tunnel generator (examples/generators/tunnel.rb)
  11. Add block.rotate(face, direction) by Marv Cool
  12. Add block.break!(drop_it, replace_it_with) by Marv Cool
  13. Add HumanEntity.mode(:creative) for switching modes
  14. Added Thomas Dervan game_mode plugin (examples/game_mode.rb)
  15. Bouncer now reads bouncer.material config for setting bounce material by Chaazd
  16. Every Event type which has enums also have predicates (PlayerFishEvent.fishing?)

1.8.1.3 (we need 1.0)

  1. Purugins can be put into another directory instead of plugins by setting 'path' in Purugin's config.yml (thanks aumgn)
  2. Improve unloading of constants on dynamic reloads of purugins
  3. ports.rb example: colorize sign text
  4. new &0...&9 + &a..&f shorter colorization values (see minepedia and colors)
  5. Add block? and item? methods to PlayerInteractionEvent
  6. Material data no longer hardcoded in Purugin source files
  7. Event mappings to Bukkit equivalents no longer hardcoded in Purugin source files
  8. [BUG] Prevent ClassCastException with PluginEvent because of ServerListener (thanks aumgn)

1.8.1.2 (flying wombat)

This release does two things:

  1. Bad loading on Ubuntu (possibly other envs)

This fix addresses a problem reported on Ubuntu where the bootstrapping logic for Purugin.jar was not working using relative paths (which does work on Solaris, Windows, and MacOS). If you get an error similiar to:

09:32:38 [SEVERE] LoadError: no such file to load -- bukkit
  require at org/jruby/RubyKernel.java:1038 (root) at /purugin.rb:5

Then upgrading (re-running bin/install) will fix this.

  1. Magical loading/reloading of purugins in your plugins directory based on mtime changes

The second thing added to this release is experimental loading and reloading of purugins. So if you copy a purugin into your plugins directly, then your minecraft server should detect this and automatically load the purugin. If you edit a plugin already installed, then once you save you should get your purugin automatically reloaded! Beware: This is a new feature and there was some ugly-ish code to make this happen, so always be sure to make frequent backups of your world. Also please open issues as you find them.

1.8.1.1 (rubyconf)

This was a baseline release for the rubyconf talk I was giving on modding Minecraft.