<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Contribution</title><link>https://sourceforge.net/p/jboardchess/wiki/Contribution/</link><description>Recent changes to Contribution</description><atom:link href="https://sourceforge.net/p/jboardchess/wiki/Contribution/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 01 Sep 2014 08:16:33 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/jboardchess/wiki/Contribution/feed" rel="self" type="application/rss+xml"/><item><title>Contribution modified by Asher Stern</title><link>https://sourceforge.net/p/jboardchess/wiki/Contribution/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -26,7 +26,7 @@
     + the jboard.properties file should contain the English strings.
     + If you don't know the string for some other languages, add an English string for each of their properties files, and open a ticket about it.
 + Write small classes and small methods. If you find yourself writing large classes/methods, then it probably indicates a bad design. Try to break the methods and write classes which concentrate on more specific aspects.
-+ In this project, checked exceptions should not be used. Throw only runtime-exceptions. In case you use a method which does throw a checked exception, wrap it with try...catch.
++ In this project, checked exceptions should not be used. Throw only runtime-exceptions. In case you use a method which does throw a checked exception, wrap it with try...catch, and throw a runtime exception from within the catch block. That runtime exception should contain the original exception as the "cause" (set as a parameter in the constructor of the new exception).
 + Do not use any external library. Use only J2SE libraries (libraries in the JDK).

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Asher Stern</dc:creator><pubDate>Mon, 01 Sep 2014 08:16:33 -0000</pubDate><guid>https://sourceforge.netfd3761a14d868562e609d2dc191dfc36b1c40386</guid></item><item><title>Contribution modified by Asher Stern</title><link>https://sourceforge.net/p/jboardchess/wiki/Contribution/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -24,7 +24,7 @@
 + Strings presented to the user should not be hard-coded. Instead, they should be written in the properties files, and referred to with the localized() method in org.jboard.jboard.utilities.StringUtils class.
     + The properties files are under the "resource" directory.
     + the jboard.properties file should contain the English strings.
-    + If you don't know the string for other languages, add and English string for each of the other properties files, and open a ticket about it.
+    + If you don't know the string for some other languages, add an English string for each of their properties files, and open a ticket about it.
 + Write small classes and small methods. If you find yourself writing large classes/methods, then it probably indicates a bad design. Try to break the methods and write classes which concentrate on more specific aspects.
 + In this project, checked exceptions should not be used. Throw only runtime-exceptions. In case you use a method which does throw a checked exception, wrap it with try...catch.
 + Do not use any external library. Use only J2SE libraries (libraries in the JDK).
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Asher Stern</dc:creator><pubDate>Sun, 31 Aug 2014 10:33:29 -0000</pubDate><guid>https://sourceforge.net1dcb67f8aa7ddf6529d2fcc51d8c2e25aaeb8bc9</guid></item><item><title>Contribution modified by Asher Stern</title><link>https://sourceforge.net/p/jboardchess/wiki/Contribution/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -44,5 +44,5 @@
 + Improve error handling.
 + Build an installer (to install jboard on the user's computer).
     + It should be a multi-platform installer.
-    + It should be designed for user who are not familiar with Java
-    + It can then be added into the "downloads" page of this project.
+    + It should be designed for users who are not familiar with Java
+    + It can then be added into the "Files" page of this project.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Asher Stern</dc:creator><pubDate>Sun, 31 Aug 2014 10:31:16 -0000</pubDate><guid>https://sourceforge.net5cf3b4fd4688f6acfb533d53da865564658ddbbc</guid></item><item><title>Contribution modified by Asher Stern</title><link>https://sourceforge.net/p/jboardchess/wiki/Contribution/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -42,3 +42,7 @@
 + Support user input of mouse and touch screen events
     + Currently only keyboard events are supported to make moves on the board.
 + Improve error handling.
++ Build an installer (to install jboard on the user's computer).
+    + It should be a multi-platform installer.
+    + It should be designed for user who are not familiar with Java
+    + It can then be added into the "downloads" page of this project.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Asher Stern</dc:creator><pubDate>Sun, 31 Aug 2014 10:30:39 -0000</pubDate><guid>https://sourceforge.netcf84163732275ec927dd8a301009b74fb20ca891</guid></item><item><title>Contribution modified by Asher Stern</title><link>https://sourceforge.net/p/jboardchess/wiki/Contribution/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,25 +1,44 @@
 How to join and contribute
 --------------------------
+
+Welcome every body who wants to contribute this project.
+
+Below are few guidelines for successful contribution.

 [TOC]

-Welcome every body who wants to contribute this project.
+### General guidelines

-# General guidelines

-Below are few guidelines for successful contribution.

 1. Please contact the project owner and let him know about the changes you are intending to make.
 + Go to the project's GitHub, fork the repository, make the changes and ask for a pull request.
 + Please avoid, as much as you can, modifying existing code. Add your own new classes. Eventually you will have to make some small changes in the existing classes, such that your new classes will take effect, but make these changes as small and local as you can.

-# Coding guidelines
+### Coding guidelines

-1. Give a documentation for every class with a main comment. Each public method should be documented as well.
-+ Constant values should not be hard coded, but added to the Constants class
-+ Strings presented to the user should not be hard-coded. Instead, they should be written in the properties files, and referred with the localized() method in org.jboard.jboard.utilities.StringUtils class.
+1. Write a documentation for every class as its a main comment. Each public method should be documented as well.
++ Constant values should not be hard coded, but added to the org.jboard.jboard.Constants class.
++ Strings presented to the user should not be hard-coded. Instead, they should be written in the properties files, and referred to with the localized() method in org.jboard.jboard.utilities.StringUtils class.
+    + The properties files are under the "resource" directory.
+    + the jboard.properties file should contain the English strings.
+    + If you don't know the string for other languages, add and English string for each of the other properties files, and open a ticket about it.
 + Write small classes and small methods. If you find yourself writing large classes/methods, then it probably indicates a bad design. Try to break the methods and write classes which concentrate on more specific aspects.
 + In this project, checked exceptions should not be used. Throw only runtime-exceptions. In case you use a method which does throw a checked exception, wrap it with try...catch.
 + Do not use any external library. Use only J2SE libraries (libraries in the JDK).
+
+
+### Issues to develop
+
+This is a list of issues proposed for improving the project.
+
+1. Display list of moves.
++ Add the option to save and load PGN files.
++ Support also SAN notation.
+    + Chess engines like SJeng use SAN notation, so they are currently not supported.
+    + Currently only coordinate notation is supported.
++ Support user input of mouse and touch screen events
+    + Currently only keyboard events are supported to make moves on the board.
++ Improve error handling.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Asher Stern</dc:creator><pubDate>Sun, 31 Aug 2014 10:26:19 -0000</pubDate><guid>https://sourceforge.neta2828f18297b718d3a937fd75a3abbb0ceb00b26</guid></item><item><title>Contribution modified by Asher Stern</title><link>https://sourceforge.net/p/jboardchess/wiki/Contribution/</link><description>&lt;div class="markdown_content"&gt;&lt;h2 id="how-to-join-and-contribute"&gt;How to join and contribute&lt;/h2&gt;
&lt;div class="toc"&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#how-to-join-and-contribute"&gt;How to join and contribute&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;&lt;a href="#general-guidelines"&gt;General guidelines&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#coding-guidelines"&gt;Coding guidelines&lt;/a&gt;&lt;/li&gt;
&lt;/div&gt;
&lt;p&gt;Welcome every body who wants to contribute this project.&lt;/p&gt;
&lt;h1 id="general-guidelines"&gt;General guidelines&lt;/h1&gt;
&lt;p&gt;Below are few guidelines for successful contribution.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Please contact the project owner and let him know about the changes you are intending to make.&lt;/li&gt;
&lt;li&gt;Go to the project's GitHub, fork the repository, make the changes and ask for a pull request.&lt;/li&gt;
&lt;li&gt;Please avoid, as much as you can, modifying existing code. Add your own new classes. Eventually you will have to make some small changes in the existing classes, such that your new classes will take effect, but make these changes as small and local as you can.&lt;/li&gt;
&lt;/ol&gt;
&lt;h1 id="coding-guidelines"&gt;Coding guidelines&lt;/h1&gt;
&lt;ol&gt;
&lt;li&gt;Give a documentation for every class with a main comment. Each public method should be documented as well.&lt;/li&gt;
&lt;li&gt;Constant values should not be hard coded, but added to the Constants class&lt;/li&gt;
&lt;li&gt;Strings presented to the user should not be hard-coded. Instead, they should be written in the properties files, and referred with the localized() method in org.jboard.jboard.utilities.StringUtils class.&lt;/li&gt;
&lt;li&gt;Write small classes and small methods. If you find yourself writing large classes/methods, then it probably indicates a bad design. Try to break the methods and write classes which concentrate on more specific aspects.&lt;/li&gt;
&lt;li&gt;In this project, checked exceptions should not be used. Throw only runtime-exceptions. In case you use a method which does throw a checked exception, wrap it with try...catch.&lt;/li&gt;
&lt;li&gt;Do not use any external library. Use only J2SE libraries (libraries in the JDK).&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Asher Stern</dc:creator><pubDate>Sun, 31 Aug 2014 10:14:22 -0000</pubDate><guid>https://sourceforge.net62e1f3d37349de1b633b2cd459c4af762590244b</guid></item></channel></rss>