From 8be63558ddcd4c6acdff9c3f3f9b48948df81fce Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Mon, 8 Apr 2013 18:15:41 -0600 Subject: [PATCH] document new directory structure and bump version --- Makefile | 2 +- README.md | 15 +++++++++++++++ src/com/dogcows/VimCoder.java | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 18f8c17..602b108 100644 --- 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) diff --git a/README.md b/README.md index fff2d03..0c560a1 100644 --- 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 diff --git a/src/com/dogcows/VimCoder.java b/src/com/dogcows/VimCoder.java index 04300fc..5841a42 100644 --- a/src/com/dogcows/VimCoder.java +++ b/src/com/dogcows/VimCoder.java @@ -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. -- 2.43.0