Skip to content

Commit

Permalink
releasing v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
w2ak committed Jan 26, 2017
2 parents 226432c + c240b4f commit 0858f80
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## 2.2

### 2.2.1

* corrected bug due to empty subtitle
* added a few ideas
* changed implementation of the second logo

### 2.2.0-beta

* Possibility to add the image (logo and name) of another company
Expand Down
2 changes: 1 addition & 1 deletion makeversion
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ compareversions () {
}

makechangelog () {
echo -e "\n# Enter here the informations about changes in your program in version %s." "$newv" > release/changelog
printf "\n# Enter here the informations about changes in your program in version %s.\n" "$newv" > release/changelog
tag=$(git describe --tags --abbrev=0);
git log --oneline "$tag"..HEAD | sed 's/^/# /' >> release/changelog
vim -c 'set ft=gitcommit | set tw=80 | set cc=+1 | startinsert' release/changelog
Expand Down
14 changes: 9 additions & 5 deletions source/beamerx.sty
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{beamerx}[2017/01/19 v2.2.0-beta, standard scientific slideshows layout for Ecole polytechnique (Palaiseau,France).]
\ProvidesPackage{beamerx}[2017/01/26 v2.2.1, standard scientific slideshows layout for Ecole polytechnique (Palaiseau,France).]

%=======================================================================
% Declaration des options
Expand Down Expand Up @@ -382,13 +382,17 @@
\newcommand{\nologo}[1]{%
\renewcommand{\includebeamerxlogo}{\color{white}\includegraphics[height=0.25\paperheight,keepaspectratio]{beamerxlogo}}
}
\newlength\logoheight
\setlength\logoheight{.25\paperheight}
\nologo{}
\def\logo{}
\renewcommand{\logo}[1]{%
\renewcommand{\logo}[2][1]{%
\renewcommand{\includebeamerxlogo}{%
\begin{minipage}{0.18377693\paperheight}\color{white}\centering%
\includegraphics[width=\textwidth,keepaspectratio]{beamerxlogo}\\[0.01250\paperwidth]
\includegraphics[width=\textwidth,keepaspectratio]{#1}
\begin{minipage}{.25\paperwidth}\flushleft%
\includegraphics[height=.25\paperheight,keepaspectratio]{beamerxlogo}\\[0.01250\paperwidth]
\setlength\logoheight{#1\logoheight}%
\includegraphics[height=\logoheight,keepaspectratio]{#2}
\setlength\logoheight{.25\paperheight}
\end{minipage}
}%
}
Expand Down
4 changes: 4 additions & 0 deletions todo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ x integration of another logo : stack with horizontal logo of the school

x integration of a company name : with ÉCOLE POLYTECHNIQUE - COMPANY - ...
o aspectratio=43 version
o thank you frame ?
o study more the colors in picframes
o switch to beamer theme ?
o switch to class ?

0 comments on commit 0858f80

Please sign in to comment.