Commit 66e51961 authored by Jakob P's avatar Jakob P
Browse files

Issue #2400915 by DamienMcKenna, japerry: Hardcode the last released CTools...

Issue #2400915 by DamienMcKenna, japerry: Hardcode the last released CTools version in the info file
parent 151002db
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3,3 +3,5 @@ description = Performs bulk exporting of data objects known about by Chaos tools
core = 7.x
dependencies[] = ctools
package = Chaos tool suite
version = CTOOLS_MODULE_VERSION
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@ name = Chaos tools
description = A library of helpful tools by Merlin of Chaos.
core = 7.x
package = Chaos tool suite
version = CTOOLS_MODULE_VERSION
files[] = includes/context.inc
files[] = includes/css-cache.inc
files[] = includes/math-expr.inc
+14 −0
Original line number Diff line number Diff line
@@ -11,6 +11,20 @@

define('CTOOLS_API_VERSION', '2.0.8');

/**
 * The current working ctools version.
 *
 * In a release, it should be 7.x-1.x, which should match what drush make will
 * create. In a dev format, it should be 7.x-1.(x+1)-dev, which will allow
 * modules depending on new features in ctools to depend on ctools > 7.x-1.x.
 *
 * To define a specific version of CTools as a dependency for another module,
 * simply include a dependency line in that module's info file, e.g.:
 *   ; Requires CTools v7.x-1.4 or newer.
 *   dependencies[] = ctools (>=1.4)
 */
define('CTOOLS_MODULE_VERSION', '7.x-1.6-dev');

/**
 * Test the CTools API version.
 *
+1 −0
Original line number Diff line number Diff line
@@ -2,4 +2,5 @@ name = Custom rulesets
description = Create custom, exportable, reusable access rulesets for applications like Panels.
core = 7.x
package = Chaos tool suite
version = CTOOLS_MODULE_VERSION
dependencies[] = ctools
+1 −0
Original line number Diff line number Diff line
name = Chaos Tools (CTools) AJAX Example
description = Shows how to use the power of Chaos AJAX.
package = Chaos tool suite
version = CTOOLS_MODULE_VERSION
dependencies[] = ctools
core = 7.x
Loading