Author: kielabokkie
Date: 2010-02-03 14:06:34 +0100 (Wed, 03 Feb 2010)
New Revision: 27491
Modified:
plugins/wpLastFmPlugin/trunk/README
plugins/wpLastFmPlugin/trunk/package.xml
Log:
Made the plugin available for Symfony 1.3/1.4 and added some extra installation
instructions to the README
Modified: plugins/wpLastFmPlugin/trunk/README
===================================================================
--- plugins/wpLastFmPlugin/trunk/README 2010-02-03 12:52:05 UTC (rev 27490)
+++ plugins/wpLastFmPlugin/trunk/README 2010-02-03 13:06:34 UTC (rev 27491)
@@ -11,6 +11,20 @@
$ ./symfony plugin:install wpLastFmPlugin
+ * Activate the plugin in the `config/ProjectConfiguration.class.php`
+
+ [php]
+ class ProjectConfiguration extends sfProjectConfiguration
+ {
+ public function setup()
+ {
+ $this->enablePlugins(array(
+ 'wpLastFmPlugin',
+ '...'
+ ));
+ }
+ }
+
* Next you have to change both the API key that you received from last.fm
and your last.fm username in the `app.yml` of the plugin:
[yml]
@@ -25,7 +39,7 @@
[php]
all:
- enabled_modules: [default, …, wpLastFm]
+ enabled_modules: [default, ..., wpLastFm]
* Clear you cache
Modified: plugins/wpLastFmPlugin/trunk/package.xml
===================================================================
--- plugins/wpLastFmPlugin/trunk/package.xml 2010-02-03 12:52:05 UTC (rev
27490)
+++ plugins/wpLastFmPlugin/trunk/package.xml 2010-02-03 13:06:34 UTC (rev
27491)
@@ -12,8 +12,8 @@
</lead>
<date>2010-02-03</date>
<version>
- <release>0.0.1</release>
- <api>0.0.1</api>
+ <release>0.0.2</release>
+ <api>0.0.2</api>
</version>
<stability>
<release>beta</release>
@@ -35,8 +35,8 @@
<name>symfony</name>
<channel>pear.symfony-project.com</channel>
<min>1.1.0</min>
- <max>1.3.0</max>
- <exclude>1.3.0</exclude>
+ <max>1.5.0</max>
+ <exclude>1.5.0</exclude>
</package>
</required>
</dependencies>
@@ -45,5 +45,21 @@
</phprelease>
<changelog>
-
<release><version><release>=0.0.1</release><api>=0.0.1</api></version><stability><release>=beta</release><api>=beta</api></stability><license
uri="http://www.symfony-project.com/license">MIT</license><date>2010-02-03</date><notes>=First
beta release</notes></release></changelog>
+ <release>
+ <version>
+ <release>0.0.2</release>
+ <api>0.0.2</api>
+ </version>
+ <stability>
+ <release>beta</release>
+ <api>beta</api>
+ </stability>
+ <license uri="http://www.symfony-project.com/license">MIT license</license>
+ <date>2010-02-03</date>
+ <notes>
+ * Made the plugin available for Symfony 1.3/1.4
+ </notes>
+ </release>
+ </changelog>
+
</package>
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.