blob: 54b21e891f9c607e1637d04da96015cb0ee3efc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
how to anonymously get the current source
=========================================
git clone git://projects.vdr-developer.org/vdr-plugin-imonlcd.git imonlcd
how to make a new release
=========================
adapt version in imonlcd.c and HISTORY
set date in HISTORY
git commit
git status # must be clean
git tag -a -m'new release' '1.0.0'
git push --tags
cd
cd tmp
rm -rf imonlcd-1.0.0
git clone git://projects.vdr-developer.org/vdr-plugin-imonlcd.git imonlcd-1.0.0
cd imonlcd-1.0.0
git checkout 1.0.0
rm -rf .git*
cd ..
tar cfz vdr-imonlcd-1.0.0.tgz imonlcd-1.0.0
in the project configuration, add new version 1.0.0
upload vdr-imonlcd-1.0.0.tgz
announce new version at vdr@linuxtv.org
|