blob: 0dc6982794a9bd9cbb611a001b5edf3ccb059ed4 (
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-muggle.git muggle
how to make a new release
=========================
adapt version in muggle.c and HISTORY
set date in HISTORY
git commit
git status # must be clean
git tag -a -m'new release' '0.2.3'
git push --tags
cd
cd tmp
rm -rf muggle-0.2.3
git clone git://projects.vdr-developer.org/vdr-plugin-muggle.git muggle-0.2.3
cd muggle-0.2.3
git checkout 0.2.3-BETA
rm -rf .git*
cd ..
tar cfz vdr-muggle-0.2.3.tgz muggle-0.2.3
in the project configuration, add new version 0.2.3
upload vdr-muggle-0.2.3.tgz
announce new version at vdr@linuxtv.org
|