mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Include the credits file. This adds a build dependency to iconv for now, but we should consider converting the manual to utf8 completely. Also sorted the screen sizes table.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10058 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1e289413ee
commit
b074b221ec
4 changed files with 26 additions and 10 deletions
|
@ -6,6 +6,7 @@ rockbox-build.tex: rockbox.tex
|
||||||
@if [ "$(OBJDIR)" = "" ]; then echo Run make in you build diriectory!; false; fi
|
@if [ "$(OBJDIR)" = "" ]; then echo Run make in you build diriectory!; false; fi
|
||||||
@mkdir -p $(OBJDIR)
|
@mkdir -p $(OBJDIR)
|
||||||
@cp -R * $(OBJDIR)
|
@cp -R * $(OBJDIR)
|
||||||
|
@perl credits.pl < ../docs/CREDITS | iconv -f utf-8 -t iso-8859-1 > $(OBJDIR)/CREDITS.tex
|
||||||
@echo "\newcommand{\platform}{${ARCHOS}}" > $(OBJDIR)/rockbox-build.tex
|
@echo "\newcommand{\platform}{${ARCHOS}}" > $(OBJDIR)/rockbox-build.tex
|
||||||
@echo "\newcommand{\buildversion}{$(VERSION)}" >> $(OBJDIR)/rockbox-build.tex
|
@echo "\newcommand{\buildversion}{$(VERSION)}" >> $(OBJDIR)/rockbox-build.tex
|
||||||
@echo "\input{rockbox.tex}" >> $(OBJDIR)/rockbox-build.tex
|
@echo "\input{rockbox.tex}" >> $(OBJDIR)/rockbox-build.tex
|
||||||
|
|
|
@ -47,17 +47,17 @@
|
||||||
\begin{center}
|
\begin{center}
|
||||||
\begin{tabularx}{.8\textwidth}{lXX}\toprule
|
\begin{tabularx}{.8\textwidth}{lXX}\toprule
|
||||||
\textbf{Player} & \textbf{Main LCD Size} & \textbf{Remote LCD Size}\\\midrule
|
\textbf{Player} & \textbf{Main LCD Size} & \textbf{Remote LCD Size}\\\midrule
|
||||||
Iriver H1x0 & 160x128 & 128x64\\
|
|
||||||
Iriver H3x0 & 220x176 & 128x64\\
|
|
||||||
Archos Players & 11x2 characters & (none)\\
|
Archos Players & 11x2 characters & (none)\\
|
||||||
Archos Recorders & 112x64 & (none)\\
|
Archos Recorders & 112x64 & (none)\\
|
||||||
Archos Ondio & 112x64 & (none)\\
|
Archos Ondio & 112x64 & (none)\\
|
||||||
Ipod Nano & 176x132 & (none)\\
|
Iaudio X5 & 160x128 & 128x96\\
|
||||||
Ipod 4G Gray & 160x128 & (none)\\
|
Ipod 4G Gray & 160x128 & (none)\\
|
||||||
Ipod 4G Color & 220x176 & (none)\\
|
Ipod 4G Color & 220x176 & (none)\\
|
||||||
Ipod 5G Video & 320x240 & (none)\\
|
Ipod 5G Video & 320x240 & (none)\\
|
||||||
Iaudio X5 & 160x128 & 128x96\\
|
Ipod Mini &138x110 & (none) \\
|
||||||
Ipod Mini &138x110 & (none) \\\bottomrule
|
Ipod Nano & 176x132 & (none)\\
|
||||||
|
Iriver H1x0 & 160x128 & 128x64\\
|
||||||
|
Iriver H3x0 & 220x176 & 128x64\\\bottomrule
|
||||||
\end{tabularx}
|
\end{tabularx}
|
||||||
\end{center}
|
\end{center}
|
||||||
|
|
||||||
|
@ -170,10 +170,11 @@ The recording hardware (the MAS) does not allow us to do this
|
||||||
Changes in version 2.5
|
Changes in version 2.5
|
||||||
|
|
||||||
\chapter{Credits}
|
\chapter{Credits}
|
||||||
People that have contributed to the project, one way or another.Friends!
|
People that have contributed to the project, one way or another. Friends!
|
||||||
\begin{verbatim}
|
%
|
||||||
/* Include the CREDITS file */
|
\begin{multicols}{2}
|
||||||
\end{verbatim}
|
\noindent\textsc{\small{\input{CREDITS.tex}}}
|
||||||
|
\end{multicols}
|
||||||
|
|
||||||
\chapter{GNU Free Documentation Licence}
|
\chapter{GNU Free Documentation Licence}
|
||||||
\input{appendix/fdl.tex}
|
\input{appendix/fdl.tex}
|
||||||
|
|
14
manual/credits.pl
Normal file
14
manual/credits.pl
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# __________ __ ___.
|
||||||
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||||
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||||
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||||
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||||
|
# \/ \/ \/ \/ \/
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
while (<STDIN>) {
|
||||||
|
if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
|
||||||
|
print "\\Forward{} $1\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
\documentclass[a4paper,11pt]{scrreprt}
|
\documentclass[a4paper,11pt]{scrreprt}
|
||||||
\usepackage[latin1]{inputenc}
|
\usepackage[latin1]{inputenc}
|
||||||
\usepackage{palatino}
|
\usepackage{palatino}
|
||||||
%\renewcommand{\familydefault}{\sfdefault}
|
|
||||||
|
|
||||||
\usepackage{tabularx}
|
\usepackage{tabularx}
|
||||||
\usepackage{multirow}
|
\usepackage{multirow}
|
||||||
|
\usepackage{multicol}
|
||||||
|
|
||||||
\usepackage{float}
|
\usepackage{float}
|
||||||
\floatstyle{ruled}
|
\floatstyle{ruled}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue