-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Will now construct the pdf in resources/latex_temp, then copy to the output location.
- Loading branch information
eric
authored and
eric
committed
May 20, 2013
1 parent
4fdc5e7
commit 307877d
Showing
9 changed files
with
1,514 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
This is a character generator designed for the Rolemaster Universal (RMU) role-playing system. Direct downloads of pyCharGen can be found at https://sourceforge.net/projects/pychargen/files/, which contain stand-alone executables for both Windows and Linux. | ||
This is a character generator designed for the Rolemaster Universal (RMU) role-playing system. Direct downloads of pyCharGen can be found at https://sourceforge.net/projects/pychargen/files/ which contain stand-alone executables for both Windows and Linux. | ||
|
||
Features | ||
---------------- | ||
- Create and modify characters for use in RMU. | ||
- Add items, whcih contribute bonuses to stats and skills. | ||
- Save and load characters in a human-readable format. | ||
- Export characters to pdf format | ||
|
||
|
||
pyCharGen is written in python 2.7, and requires the following external packages to be run from source. Again, no external programs are needed when running from the packaged binaries, only when running from source. | ||
- pygtk ("sudo apt-get install python-gtk2" in linux or http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24/pygtk-all-in-one-2.24.2.win32-py2.7.msi for ubuntu) | ||
- pyinstaller (http://pyinstaller.org) | ||
- pywin32 (http://sourceforge.net/projects/pywin32/) | ||
Note: Only pygtk. | ||
If you wish to use the provided executables or to run from source, it is not needed. | ||
- pygtk ("sudo apt-get install python-gtk2" in linux or http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24/pygtk-all-in-one-2.24.2.win32-py2.7.msi for Windows) | ||
- pdftex.exe for Windows, or pdflatex for Linux (Needed for pdf output of character) | ||
- pyinstaller (http://pyinstaller.org) (Needed only for packaging standalone executable) | ||
- pywin32 (http://sourceforge.net/projects/pywin32/) (Needed only for packaging standalone executable) |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
%% | ||
%% This is file `fullpage.sty', | ||
%% generated with the docstrip utility. | ||
%% | ||
%% The original source files were: | ||
%% | ||
%% fullpage.dtx (with options: `package') | ||
%% ============================================= | ||
%% IMPORTANT NOTICE: | ||
%% | ||
%% This program can be redistributed and/or modified under the terms | ||
%% of the LaTeX Project Public License Distributed from CTAN | ||
%% archives in directory macros/latex/base/lppl.txt; either | ||
%% version 1 of the License, or any later version. | ||
%% | ||
%% This is a generated file. | ||
%% It may not be distributed without the original source file fullpage.dtx. | ||
%% | ||
%% Full documentation can be obtained by LaTeXing that original file. | ||
%% Only a few abbreviated comments remain here to describe the usage. | ||
%% ============================================= | ||
%% Copyright 1994-1999 Patrick W Daly | ||
%% Max-Planck-Institut f\"ur Aeronomie | ||
%% Max-Planck-Str. 2 | ||
%% D-37191 Katlenburg-Lindau | ||
%% Germany | ||
%% E-mail: [email protected] | ||
\NeedsTeXFormat{LaTeX2e}[1994/06/01] | ||
\ProvidesPackage{fullpage} | ||
[1999/02/23 1.1 (PWD)] | ||
% Sets all 4 margins to be either 1 inch or 1.5 cm, and specifies | ||
% the page style | ||
% Call as \usepackage[options]{fullpage} | ||
% Options = in (default) for 1 inch | ||
% cm for 1.5 cm | ||
% plain (default) sets \pagestyle{plain} | ||
% empty sets \pagestyle{empty} | ||
% headings sets \pagestyle{headings} | ||
% myheadings sets \pagestyle{myheadings} | ||
%----------------------------------------------------------- | ||
\newlength{\FP@margin} | ||
\DeclareOption{in}{\setlength{\FP@margin}{1in}} | ||
\DeclareOption{cm}{\setlength{\FP@margin}{1.5cm}} | ||
\newif\ifFP@plain | ||
\newif\ifFP@empty | ||
\DeclareOption{plain}{\FP@plaintrue \FP@emptyfalse | ||
\pagestyle{plain}} | ||
\DeclareOption{empty}{\FP@plaintrue \FP@emptytrue | ||
\pagestyle{empty}} | ||
\DeclareOption{headings}{\FP@plainfalse \FP@emptyfalse | ||
\pagestyle{headings}} | ||
\DeclareOption{myheadings}{\FP@plainfalse \FP@emptyfalse | ||
\pagestyle{myheadings}} | ||
\ExecuteOptions{in,plain} | ||
\ProcessOptions* | ||
\ifFP@plain | ||
\setlength{\headheight}{0pt} | ||
\setlength{\headsep}{0pt} | ||
\fi | ||
\ifFP@empty | ||
\setlength{\footskip}{0pt} | ||
\fi | ||
\setlength{\textwidth}{\paperwidth} | ||
\addtolength{\textwidth}{-2\FP@margin} | ||
\setlength{\oddsidemargin}{\FP@margin} | ||
\addtolength{\oddsidemargin}{-1in} | ||
\setlength{\evensidemargin}{\oddsidemargin} | ||
\setlength{\textheight}{\paperheight} | ||
\addtolength{\textheight}{-\headheight} | ||
\addtolength{\textheight}{-\headsep} | ||
\addtolength{\textheight}{-\footskip} | ||
\addtolength{\textheight}{-2\FP@margin} | ||
\setlength{\topmargin}{\FP@margin} | ||
\addtolength{\topmargin}{-1in} | ||
%% | ||
%% <<<<< End of generated file <<<<<< | ||
%% | ||
%% End of file `fullpage.sty'. |
Oops, something went wrong.