Skip to content

Commit

Permalink
Merge pull request #9 from OSTraining/updater
Browse files Browse the repository at this point in the history
Adapts to the new installer
  • Loading branch information
Anderson Grüdtner Martins committed Feb 12, 2015
2 parents 5bdc80f + 8fd7b4c commit 38f9940
Show file tree
Hide file tree
Showing 10 changed files with 71 additions and 151 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,6 @@ nb-configuration.xml
# misc other files #
####################
_notes/

build.properties
*.zip
5 changes: 5 additions & 0 deletions build.properties.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
builder.path=/path/to/AllediaBuilder

project.AllediaFramework.path=/path/to/AllediaFramework
project.AllediaInstaller.path=/path/to/AllediaInstaller
project.OSSystem.path=/path/to/OSSystem
16 changes: 16 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="Alledia Extension Builder" default="">
<if>
<available file="./build.properties" type="file" />
<then>
<property file="./build.properties" />
</then>
<else>
<fail message="Missed build.properties file on the project root folder. Duplicate the build.properties.dist file and customize with your settings" />
</else>
</if>

<fail unless="builder.path" message="Missed builder.path property" />

<import file="${builder.path}/src/build.xml"/>
</project>
23 changes: 23 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name" : "OSTraining/Breeze",
"description" : "OSTraining Breeze",
"minimum-stability": "stable",
"license" : "GPL-2+",
"type" : "joomla.template",
"extra" : {
"element" : "tpl_breeze",
"element-short" : "breeze",
"name" : "Breeze",
"client" : "site",
"package-license": "free"
},
"authors" : [
{
"name" : "OSTraining.com",
"email": "[email protected]"
}
],
"require" : {
"php" : ">= 5.3"
}
}
1 change: 1 addition & 0 deletions packages/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.
1 change: 0 additions & 1 deletion phing/.gitignore

This file was deleted.

146 changes: 0 additions & 146 deletions phing/build.xml

This file was deleted.

2 changes: 0 additions & 2 deletions phing/packages/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion phing/version.txt

This file was deleted.

24 changes: 23 additions & 1 deletion src/templateDetails.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,28 @@
<license>GPL v3</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>http://www.ostraining.com</authorUrl>
<version>2.3.2</version>
<version>2.3.3</version>
<description><![CDATA[<p>OSTraining Breeze. A beautiful and easy-to-use-template from OSTraining<br/><img src="../templates/ostrainingbreeze/template_thumbnail.png" alt="OSTraining" /></p>]]></description>

<alledia>
<element>ostrainingbreeze</element>
<namespace>Breeze</namespace>
<license>free</license>
<relatedExtensions>
<extension
type="library"
element="allediaframework"
>AllediaFramework</extension>
<extension
type="plugin"
group="system"
element="ossystem"
publish="true"
ordering="first"
>OSSystem</extension>
</relatedExtensions>
</alledia>

<files>
<filename>index.php</filename>
<filename>favicon.ico</filename>
Expand Down Expand Up @@ -109,4 +128,7 @@
</fieldset>
</fields>
</config>
<updateservers>
<server type="extension" priority="1" name="Breeze Updates"><![CDATA[http://deploy.ostraining.com/client/update/free/stable/tpl_breeze]]></server>
</updateservers>
</extension>

0 comments on commit 38f9940

Please sign in to comment.