view DOCS/tech/release-howto.txt @ 10743:3d1eab0d9c5a

* Add multi device support. For the moment up to 16 cards are supported. More can be added easily by changing 2 defines. This makes 90% of the patch (mostly stupid s/$var/card->$var/) The different devices can be accessed by different minor numbers (0-15): mknod /dev/mga_vid0 c 178 0 mknod /dev/mga_vid1 c 178 1 mknod /dev/mga_vid2 c 178 2 mknod /dev/mga_vid3 c 178 3 ... ln -s mga_vid /dev/mga_vid * Change the devfs code to let the kernel assign us a major and a minor number (what is the sense behind using devfs anyways if we dont do that ?) Subdevices for the different cards are created. mga_vid uses the first card (for compatibility) * Fix a possible error when mmap() is called before the card is configured by a ioctl().
author attila
date Sun, 31 Aug 2003 20:57:34 +0000
parents 5e2cc92a4170
children a12a9e749438
line wrap: on
line source

how to make an mplayer release
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

preparations:
- ask the DOCS maintainers to commit their final changes, check if
  all docs is uptodate etc
- verify manpage, remove obsolete options, mention new ones
- ask translation maintainers to update their help_mp*.h file
- update teh ChangeLog file (according to cvs log), ask other developers
  to verify their parts etc. ask Diego to spellcheck it.
- consult at -dev-eng about unstable codes which should be disabled for release

create the release tree:
- cvs checkout the mplayer src tree
- if releasing from 'main', checkout libavcodec from ffmpeg cvs
- remove teh CVS subdirs: 
    find 0_90 -name CVS -exec rm -rf {} \;
- remove the .cvsignore files:
    find 0_90 -name .cvsignore -exec rm {} \;
- remove obsolete DOCS translations, help files
- replace version.sh with this (change version number too...):
============
#!/bin/sh
echo "#define VERSION \"0.90rc5-$1 \"" >version.h
============

release the tree:
    cd ..
    mv main MPlayer-0.90rc5
    tar -cf MPlayer-0.90rc5.tar MPlayer-0.90rc5
    bzip2 -9 MPlayer-0.90rc5.tar

test it (download to your local machine, extract, compile, run)

copy to ftp:
    cp MPlayer-0.90rc5.tar.bz2 /home/ftp/MPlayer/releases/

move the older (pre)release(s) (except the last one before the current one)
to ../old-stuff/ dir

somehow get Gabu to write a news entry for the release, and update the
source file of dload.html and commit it. test it, it's sometimes buggy
(broken links etc).

done.