Merge "todos: Partial implementation of "New List""
diff --git a/CONTRIBUTING b/CONTRIBUTING
new file mode 100644
index 0000000..799bc50
--- /dev/null
+++ b/CONTRIBUTING
@@ -0,0 +1,25 @@
+# Contributing to Vanadium
+
+Vanadium is an open source project.
+
+It is the work of many contributors. We appreciate your help!
+
+
+## Filing issues
+
+We use a single GitHub repository for
+[tracking all issues](https://github.com/vanadium/issues/issues)
+across all Vanadium repositories.
+
+
+## Contributing code
+
+Please read the
+[Contribution Guidelines](https://github.com/vanadium/docs/blob/master/community/contributing.md)
+before sending patches.
+
+**We do not accept GitHub pull requests**
+(we use [Gerrit](https://www.gerritcodereview.com/) instead for code review).
+
+Unless otherwise noted, the Vanadium source files are distributed under
+the BSD-style license found in the LICENSE file.
diff --git a/Makefile b/Makefile
index 5389ac2..3b01572 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,7 @@
 SHELL := /bin/bash -euo pipefail
-export PATH := node_modules/.bin:$(V23_ROOT)/release/go/bin:$(V23_ROOT)/third_party/cout/node/bin:$(PATH)
+# Add $V23_ROOT/devtools/bin to PATH in case the user hasn't done so in their
+# ~/.bashrc.
+export PATH := node_modules/.bin:$(V23_ROOT)/devtools/bin:$(V23_ROOT)/release/go/bin:$(V23_ROOT)/third_party/cout/node/bin:$(PATH)
 
 # Default browserify options: use sourcemaps.
 BROWSERIFY_OPTS := --debug
diff --git a/VERSION b/VERSION
index 6d6ff85..603150b 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-v23-0.1
+jiri-0.1
diff --git a/android/app/src/androidTest/java/io/v/android/apps/todos/ApplicationTest.java b/android/app/src/androidTest/java/io/v/android/apps/todos/ApplicationTest.java
index ed3a83b..2c03f8f 100644
--- a/android/app/src/androidTest/java/io/v/android/apps/todos/ApplicationTest.java
+++ b/android/app/src/androidTest/java/io/v/android/apps/todos/ApplicationTest.java
@@ -1,3 +1,7 @@
+// Copyright 2015 The Vanadium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
 package io.v.android.apps.todos;
 
 import android.app.Application;
diff --git a/android/app/src/main/java/io/v/android/apps/todos/NavigationDrawerFragment.java b/android/app/src/main/java/io/v/android/apps/todos/NavigationDrawerFragment.java
index a7d829f..6b68836 100644
--- a/android/app/src/main/java/io/v/android/apps/todos/NavigationDrawerFragment.java
+++ b/android/app/src/main/java/io/v/android/apps/todos/NavigationDrawerFragment.java
@@ -1,3 +1,7 @@
+// Copyright 2015 The Vanadium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
 package io.v.android.apps.todos;
 
 import android.content.DialogInterface;
diff --git a/android/app/src/main/java/io/v/android/apps/todos/PickListActivity.java b/android/app/src/main/java/io/v/android/apps/todos/PickListActivity.java
index a64e51f..a598213 100644
--- a/android/app/src/main/java/io/v/android/apps/todos/PickListActivity.java
+++ b/android/app/src/main/java/io/v/android/apps/todos/PickListActivity.java
@@ -1,3 +1,7 @@
+// Copyright 2015 The Vanadium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
 package io.v.android.apps.todos;
 
 import android.app.Activity;