<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to patches</title><link href="https://sourceforge.net/p/pauker/patches/" rel="alternate"/><link href="https://sourceforge.net/p/pauker/patches/feed.atom" rel="self"/><id>https://sourceforge.net/p/pauker/patches/</id><updated>2012-07-06T21:00:57Z</updated><subtitle>Recent changes to patches</subtitle><entry><title>Add Randomness</title><link href="https://sourceforge.net/p/pauker/patches/3/" rel="alternate"/><published>2012-07-06T21:00:57Z</published><updated>2012-07-06T21:00:57Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net542c388891632d6818f2e978072a756360bd9056</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;h1 id="index-srcpaukerprogramcardjava"&gt;Index: src/pauker/program/Card.java&lt;/h1&gt;
&lt;p&gt;RCS file: /cvsroot/pauker/project/src/pauker/program/Card.java,v&lt;br /&gt;
retrieving revision 1.14&lt;br /&gt;
diff -r1.14 Card.java&lt;br /&gt;
135c135,145&lt;br /&gt;
&amp;lt;         frontSide.setLearnedTimestamp(System.currentTimeMillis());&lt;br /&gt;
---&lt;br /&gt;
&amp;gt;         // Math.random gives us numbers from 0.0 to 1.0&lt;br /&gt;
&amp;gt;         // want random time shift depending on batch number:&lt;br /&gt;
&amp;gt;         // - in batch 1: maximum a few hours&lt;br /&gt;
&amp;gt;         // - in batch n: maximum n / m days&lt;br /&gt;
&amp;gt;         // - what about batch * 6 hours?&lt;br /&gt;
&amp;gt;         // - and +-, so we multiply random by 2 and shift it by -1 to get&lt;br /&gt;
&amp;gt;         //   numbers from -1.0 to 1.0&lt;br /&gt;
&amp;gt;         double random = Math.random() * 2.0 - 1.0;&lt;br /&gt;
&amp;gt;         long maxShift = 1000 * getLongTermBatchNumber() * 6 * 60 * 60;&lt;br /&gt;
&amp;gt;         long shift = Math.round(random * maxShift);&lt;br /&gt;
&amp;gt;         frontSide.setLearnedTimestamp(System.currentTimeMillis() + &lt;br /&gt;
shift);&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>support check-by-typing when load files</title><link href="https://sourceforge.net/p/pauker/patches/1/" rel="alternate"/><published>2002-12-04T02:02:13Z</published><updated>2002-12-04T02:02:13Z</updated><author><name>Daniel McEnnis</name><uri>https://sourceforge.net/u/mcennis/</uri></author><id>https://sourceforge.net1c06a8bf17e64ab0a547b0120986f6c8bac8c380</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Added support for setting check-by-typing boolean on&lt;br /&gt;
new cards when added from text files.&lt;br /&gt;
If a second deliminator exists on any given line,&lt;br /&gt;
check-by-typing is enabled for that card.&lt;br /&gt;
By default, check-by-typing is disabled.&lt;br /&gt;
Should be backwards compatible with exisiting lists.&lt;/p&gt;
&lt;p&gt;Patch is for pauker/Pauker.java&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>