<feed xmlns='http://www.w3.org/2005/Atom'>
<title>fancontrol.git</title>
<subtitle>+exponent patch for Fan Control
</subtitle>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/'/>
<entry>
<title>Change packagemaker invocation</title>
<updated>2010-03-10T15:30:00Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2010-03-10T15:30:00Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=cc14e3b13e5f38ff4df962bdfc5ac0efec63734c'/>
<id>cc14e3b13e5f38ff4df962bdfc5ac0efec63734c</id>
<content type='text'>
A known bug in packagemaker requires an explicit --id to be provided.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A known bug in packagemaker requires an explicit --id to be provided.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix option parsing</title>
<updated>2010-03-10T15:11:25Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2010-03-10T15:11:25Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=7e9d10ae748fca781902785ddf600819b55a694c'/>
<id>7e9d10ae748fca781902785ddf600819b55a694c</id>
<content type='text'>
AFAICS it was overrunning the argv buffer; no idea how it ever worked.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
AFAICS it was overrunning the argv buffer; no idea how it ever worked.
</pre>
</div>
</content>
</entry>
<entry>
<title>Create smc target</title>
<updated>2010-03-08T16:32:08Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2010-03-08T16:32:08Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=b66712b4202dcbd368696cf9c3c69a5e125a03ab'/>
<id>b66712b4202dcbd368696cf9c3c69a5e125a03ab</id>
<content type='text'>
Restore the original functionality of the "smc" tool (with appropriate
preprocessor symbols).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Restore the original functionality of the "smc" tool (with appropriate
preprocessor symbols).
</pre>
</div>
</content>
</entry>
<entry>
<title>Make 64-bit compatible</title>
<updated>2010-03-08T16:29:01Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2010-03-08T16:29:01Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=a70caf6b109118267af91ff93dc0f341de957c88'/>
<id>a70caf6b109118267af91ff93dc0f341de957c88</id>
<content type='text'>
Upgrade smc according to the 64-bit transition guide.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Upgrade smc according to the 64-bit transition guide.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add installer</title>
<updated>2009-01-02T04:06:58Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2009-01-02T04:06:58Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=d530a04ceea1bdfbf78c46d9c3f4f9e30c51020d'/>
<id>d530a04ceea1bdfbf78c46d9c3f4f9e30c51020d</id>
<content type='text'>
Add a packagemaker document and the glue in xcode to build a .pkg
target.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a packagemaker document and the glue in xcode to build a .pkg
target.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update .gitignore</title>
<updated>2008-12-31T12:06:34Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2008-12-31T12:06:34Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=d7e08400c84c35daafd02b1ecda6bb6110e5847c'/>
<id>d7e08400c84c35daafd02b1ecda6bb6110e5847c</id>
<content type='text'>
Add *.mode1 ignore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add *.mode1 ignore.
</pre>
</div>
</content>
</entry>
<entry>
<title>Exponent scaling</title>
<updated>2008-12-31T11:33:37Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2008-12-31T11:33:37Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=2ee796139d57497e4f92a35466a3b81b75b8ae61'/>
<id>2ee796139d57497e4f92a35466a3b81b75b8ae61</id>
<content type='text'>
Add an "exponent": a positive real that is used to scale the
fan-speed response curve according to a power-law instead of
just linear interpolation.

The increased complexity of the calculation for the target speed
warranted it being factored into a new target() function,
defined in target.m, used by both the chart and the daemon.

Lower the minimum upper threshold from 70C to 60C.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add an "exponent": a positive real that is used to scale the
fan-speed response curve according to a power-law instead of
just linear interpolation.

The increased complexity of the calculation for the target speed
warranted it being factored into a new target() function,
defined in target.m, used by both the chart and the daemon.

Lower the minimum upper threshold from 70C to 60C.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add git metadata</title>
<updated>2008-12-31T11:28:28Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2008-12-31T11:28:28Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=75596f178ae3c5989b12c891fcdee76bdd0cb874'/>
<id>75596f178ae3c5989b12c891fcdee76bdd0cb874</id>
<content type='text'>
Add .gitattributes and .gitignore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add .gitattributes and .gitignore.
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial commit</title>
<updated>2008-12-31T11:08:34Z</updated>
<author>
<name>Dean Scarff</name>
</author>
<published>2008-12-31T11:08:34Z</published>
<link rel='alternate' type='text/html' href='http://www.scarff.id.au/cgit/fancontrol.git/commit/?id=cb9c9c2bd93b306530b2c9b2e52414227ba956b2'/>
<id>cb9c9c2bd93b306530b2c9b2e52414227ba956b2</id>
<content type='text'>
Import from "Source Code.zip" as distributed by Lobotomo in
"Fan Control 1.2.dmg".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Import from "Source Code.zip" as distributed by Lobotomo in
"Fan Control 1.2.dmg".
</pre>
</div>
</content>
</entry>
</feed>

