]> Dogcows Code - chaz/vimcoder/commitdiff
document new directory structure and bump version v0.3.5
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Tue, 9 Apr 2013 00:15:41 +0000 (18:15 -0600)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Tue, 9 Apr 2013 00:15:41 +0000 (18:15 -0600)
Makefile
README.md
src/com/dogcows/VimCoder.java

index 18f8c17a5f5ad32db56b49ba4f813a0e29eaf36b..602b108a838562a402eb7647053a2f31b82b3a23 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 # Supported targets: all clean distclean dist fetch jar
 
 project                = VimCoder
-version                = 0.3.4
+version                = 0.3.5
 
 sources                = $(wildcard src/com/dogcows/*.java)
 classes                = $(sources:src/%.java=%.class)
index fff2d036598a7aa61b5adee3336f94ecbb956884..0c560a1290874f3b2fc54234cd53b29f800b04bb 100644 (file)
--- a/README.md
+++ b/README.md
@@ -87,6 +87,21 @@ use.  If you have already saved some problems to the previous storage
 directory, you may also want to actually move the directory to the new
 location so that VimCoder can find the work you've already done.
 
+Beginning with VimCoder 1.3.5, there is a new option for an alternative
+directory structure.  It is not enabled by default, but it may be in the
+future.  Rather than having directories named after problem identifiers, the
+new structure uses two levels of directories.  On the first level, directories
+are named after the contest associated with the problem (e.g. SRM-144-DIV-1),
+and on the second level, directories are named after the problem's point value
+(e.g. 300).  This directory structure may be preferable if you ever want to
+browse your repository since the contest name and point values are more easily
+identifiable than the problem identifier.
+
+If this new directory structure is enabled, it will only apply to new
+problems.  VimCoder will not try to reorganize your current repository, though
+you are welcome to do it manually yourself if you would like to switch to the
+new directory structure.
+
 ##### Vim Command
 
 By default, VimCoder tries to invoke Vim using the `gvim` command (or
index 04300fc4a4e857327610655ea34ef005e80ec710..5841a42e7772fe6847d02793dded2e2a06b86831 100644 (file)
@@ -27,7 +27,7 @@ public class VimCoder
        /**
         * The name and version of this plugin.
         */
-       public final static String version = "VimCoder 0.3.4";
+       public final static String version = "VimCoder 0.3.5";
 
        /**
         * The website of the plugin project.
This page took 0.033769 seconds and 4 git commands to generate.