From 41cfa7a3e3ec68be7cd350aa48f782e9232cd180 Mon Sep 17 00:00:00 2001 From: Brian Haberer Date: Tue, 10 Feb 2015 13:54:12 -0800 Subject: [PATCH] v1.0.10 - dates, removing timer for now. --- lib/cinch/plugins/pax-timer.rb | 12 +++++------- lib/cinch/plugins/pax-timer/version.rb | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/lib/cinch/plugins/pax-timer.rb b/lib/cinch/plugins/pax-timer.rb index 9f6dec5..78f0f42 100644 --- a/lib/cinch/plugins/pax-timer.rb +++ b/lib/cinch/plugins/pax-timer.rb @@ -9,9 +9,7 @@ module Plugins # Cinch Cooldown for PAX countdowns class PaxTimer include Cinch::Plugin - - enforce_cooldown - + self.help = 'Use .pax for the next pax or .east, .prime, .south or ' \ '.aus for the time to a specific pax.' @@ -24,16 +22,16 @@ def next_pax(m) PAXES = [ { type: 'aus', name: 'PAX Australia', - date: Time.parse('2014-10-31 08:00:00 +11:00'), + date: Time.parse('2015-10-30 08:00:00 +11:00'), estimated: false }, { type: 'prime', name: 'PAX Prime', - date: Time.parse('2014-08-29 08:00:00 -08:00'), + date: Time.parse('2015-08-28 08:00:00 -08:00'), estimated: false }, { type: 'south', name: 'PAX South', - date: Time.parse('2015-01-23 08:00:00 -06:00'), - estimated: false }, + date: Time.parse('2016-01-15 08:00:00 -06:00'), + estimated: true }, { type: 'east', name: 'PAX East', date: Time.parse('2015-03-06 08:00:00 -05:00'), diff --git a/lib/cinch/plugins/pax-timer/version.rb b/lib/cinch/plugins/pax-timer/version.rb index 3ecc110..592a9bf 100644 --- a/lib/cinch/plugins/pax-timer/version.rb +++ b/lib/cinch/plugins/pax-timer/version.rb @@ -3,7 +3,7 @@ module Cinch module Plugins # Versioning info class PaxTimer - VERSION = '1.0.9' + VERSION = '1.0.10' end end end