Last change
on this file since 21050 was
13554,
checked in by plg, 13 years ago
|
import theme Simple version 2.4.3
- add a #Tags id for tags list, for the user tags plugin
- use inline-block instead of float left for thumbnails ans categories
- print css: re-enable it in the header + improve it
- update README + add debugging mode in themeconf
- language strings
- new script to tag a new version and generate a zip archive
|
-
Property svn:executable set to
*
|
File size:
457 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # -*- coding: utf-8 -*- |
---|
3 | |
---|
4 | if [ $# -eq 0 ]; then |
---|
5 | echo "Usage: $0 version" |
---|
6 | exit 1 |
---|
7 | fi |
---|
8 | |
---|
9 | version="$1" |
---|
10 | |
---|
11 | sed -i "s/Version: .*/Version: $version/" themeconf.inc.php |
---|
12 | git ci -m "new version $version" themeconf.inc.php |
---|
13 | |
---|
14 | echo "New tag for version $version" |
---|
15 | git tag $version |
---|
16 | |
---|
17 | echo "Pushing to github" |
---|
18 | git push |
---|
19 | git push --tags |
---|
20 | |
---|
21 | git archive --format=zip --prefix=simple/ HEAD > ../simple-$version.zip |
---|
22 | echo "zip archive available: ../simple-$version.zip" |
---|
Note: See
TracBrowser
for help on using the repository browser.