Commit 4d3c67cd authored by Paul Asmuth's avatar Paul Asmuth
Browse files

synchronized version numbers

parent 843bc486
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -7,7 +7,12 @@ Todo
  → fnordmetric-enterprise: admin interface
  → fnordmetric-enterprise: csv export
  → fnordmetric-ui: sum & avg in client
  → fnordmetric-doc: enterprise deployment (init script, puppet, heroku, etc)
  → fnordmetric-doc: enterprise deployment (init script, puppet)


Next
====

  → fnordmetric-enterprise: http interface
  → fnordmetric-doc: enterprise http api
  → fnordmetric-classic: timeseries-widget: cardinal on/off should be flick-switch
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ import scala.collection.mutable.HashMap

object FnordMetric {

  val VERSION = "v0.0.7"
  val VERSION = "v1.2.8"

  val CONFIG  = HashMap[Symbol,String]()

+9 −0
Original line number Diff line number Diff line
// FnordMetric UI
//   (c) 2011-2013 Paul Asmuth <paul@paulasmuth.com>
//
// Licensed under the MIT License (the "License"); you may not use this
// file except in compliance with the License. You may obtain a copy of
// the License at: http://opensource.org/licenses/MIT

var FnordMetric = (function(pre){

  var version = "1.2.8";

  var wsAddress, socket, currentNamespace,
     continuations = {},
     continuation = false,
+7 −0
Original line number Diff line number Diff line
// FnordMetric UI
//   (c) 2011-2013 Paul Asmuth <paul@paulasmuth.com>
//
// Licensed under the MIT License (the "License"); you may not use this
// file except in compliance with the License. You may obtain a copy of
// the License at: http://opensource.org/licenses/MIT

if (typeof FnordMetric == 'undefined')
  FnordMetric = {};

+7 −0
Original line number Diff line number Diff line
// FnordMetric UI
//   (c) 2011-2013 Paul Asmuth <paul@paulasmuth.com>
//
// Licensed under the MIT License (the "License"); you may not use this
// file except in compliance with the License. You may obtain a copy of
// the License at: http://opensource.org/licenses/MIT

if (typeof FnordMetric == 'undefined')
  FnordMetric = {};

Loading