Skip to content

Commit

Permalink
Merge tag '0.54-1' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
sebshader committed Dec 29, 2023
2 parents 4d16981 + 0259d00 commit d7d5f4e
Show file tree
Hide file tree
Showing 93 changed files with 2,920 additions and 1,993 deletions.
6 changes: 6 additions & 0 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ script settings on the commandline:
# build Pd using a system installed PortAudio
./configure --without-local-portaudio

If you need to run Pd through a debugger (like gdb), you can
build Pd with debugging symbols using the "--enable-debug" flag.

# build Pd with debugging information
./configure --enable-debug

An important configure option for some platforms is --enable-universal which
allows you to specify the desired architecture(s) when building Pd. For Intel
and AMD processors, 32 bit is called "i386" and 64 bit is "x86_64". By default,
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##### Prelude #####

AC_PREREQ(2.59)
AC_INIT([pd], [0.54.0])
AC_INIT([pd], [0.54.1])
AC_CONFIG_SRCDIR(src/m_pd.c)
AC_CONFIG_AUX_DIR([m4/config])
AC_CONFIG_MACRO_DIR([m4/generated])
Expand Down
50 changes: 25 additions & 25 deletions doc/1.manual/pdmanual.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,61 +7,61 @@
font-weight: 400;
}

BODY {
BODY {
background: #ffffff;;
color: #000000;
font-family: Georgia, serif; /*Georgia, serif; */ /*Helevetica, sans-serif;*/
font-size: 12.7pt; /* this is because there were many <p> missing. We can change this value to 7pt to easily detect missing <p> */
line-height: 1.6;

}

#corpus {

width: 6.5in;
#corpus {

width: 8.5in;
margin-left: 0.8in;
}

H1 {
font-size: 32.7pt;
text-align: center;
font-weight: normal;


}
H2 {
font-size: 22.7pt;
text-align: center;
font-weight: normal;

}
H3 {
font-size: 14.7pt;
text-align: left;

}
H4 {
font-size: 12.7pt;
text-align: left;

}
H5 {
font-size: 10.7pt;
text-align: left;

}
H6 {
font-size: 10.7pt;
text-align: left;

}

H1, H2, H3, H4, H5, H6, ol, ul, mark, PRE {
H1, H2, H3, H4, H5, H6, ol, ul, mark, PRE {
color: #3E4349;

}

PRE {
PRE {
font-size: 80%;
background-color:#f0f0f0;
text-align: left;
Expand All @@ -83,7 +83,7 @@ table {

tr:nth-child(even) {background-color: #f0f0f0;}

CODE {
CODE {
background-color:#f0f0f0;
font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
}
Expand Down Expand Up @@ -147,12 +147,12 @@ a.green:link {
text-decoration: none;
display: inline-block;
font-size: 80%;

}

a.green:hover {
text-decoration: none;
background-color: #4CAF50;
background-color: #4CAF50;
}

a.green:visited {
Expand All @@ -175,7 +175,7 @@ a.green:visited {
/* standard images */

IMG {

display: block;
margin: 0 auto;
width: auto;
Expand All @@ -197,7 +197,7 @@ div.butt {
left: 0;
}

blockquote {
blockquote {
padding: 0;
margin-right:0px;
}
Expand All @@ -211,8 +211,8 @@ blockquote p {

@media screen and (max-device-width: 700px) {
#corpus {
padding: 10px;
width: auto;
padding: 10px;
width: auto;
margin-left: 6px;
}
H1 {font-size: 25pt;}
Expand All @@ -223,9 +223,9 @@ blockquote p {

@media screen and (max-width: 700px) {
#corpus {
padding: 10px;
width: auto;
margin-left: 6px;
padding: 10px;
width: auto;
margin-left: 6px;
}
H1 {font-size: 25pt;}
IMG {max-width: 100%;}
Expand Down
Loading

0 comments on commit d7d5f4e

Please sign in to comment.