-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from OSTraining/updater
Adapts to the new installer
- Loading branch information
Showing
10 changed files
with
71 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,6 @@ nb-configuration.xml | |
# misc other files # | ||
#################### | ||
_notes/ | ||
|
||
build.properties | ||
*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
@@ -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> |