source: extensions/simple_themes/simple/newversion.sh @ 21179

Last change on this file since 21179 was 13554, checked in by plg, 12 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
4if [ $# -eq 0 ]; then
5    echo "Usage: $0 version"
6    exit 1
7fi
8
9version="$1"
10
11sed -i "s/Version: .*/Version: $version/" themeconf.inc.php
12git ci -m "new version $version" themeconf.inc.php
13
14echo "New tag for version $version"
15git tag $version
16
17echo "Pushing to github"
18git push
19git push --tags
20
21git archive --format=zip --prefix=simple/ HEAD > ../simple-$version.zip
22echo "zip archive available: ../simple-$version.zip"
Note: See TracBrowser for help on using the repository browser.