Skip to content

Commit

Permalink
Merge pull request #342 from ralphtheninja/master
Browse files Browse the repository at this point in the history
misc maintenance
  • Loading branch information
ralphtheninja authored Feb 5, 2017
2 parents 63ca144 + 7c62090 commit f92a1bc
Show file tree
Hide file tree
Showing 20 changed files with 23 additions and 31 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)
=====================

Copyright (c) 2016 Rod Vagg
Copyright (c) 2017 Rod Vagg
---------------------------

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Expand Down
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,25 +323,17 @@ A large portion of the Windows support comes from code by [Krzysztof Kowalczyk](
Prebuilt binaries
-----------------

LevelDOWN uses `prebuild` to support prebuilt binaries. See [this list](https://github.com/Level/leveldown/releases) of supported prebuilt platform binaries. When installing LevelDOWN `prebuild --download` will download prebuilt binaries from GitHub if they exist and fallback to a compile step if they don't.
LevelDOWN uses `prebuild` and `prebuild-install` for handling prebuilt binaries. See [this list](https://github.com/Level/leveldown/releases) of supported prebuilt platform binaries. When installing LevelDOWN `prebuild-install` will install prebuilt binaries from GitHub if they exist and fallback to a compile step if they don't.

If you are working on LevelDOWN and want to compile the C++ code you can do:
If you are working on LevelDOWN and want to re-compile the C++ code it's enough to do `npm install`.

```
$ npm run rebuild [--debug] [--verbose]
```

or

```
$ npm i --build-from-source [--debug] [--verbose]
```
If you don't want to use the `prebuild` for the platform you are installing on, specify the `--build-from-source` flag when you install.

<a name="license"></a>
License &amp; copyright
-------------------

Copyright &copy; 2012-2016 **LevelDOWN** [contributors](https://github.com/level/community#contributors).
Copyright &copy; 2012-2017 **LevelDOWN** [contributors](https://github.com/level/community#contributors).

**LevelDOWN** is licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included `LICENSE.md` file for more details.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"abstract-leveldown": "~2.6.1",
"bindings": "~1.2.1",
"fast-future": "~1.0.2",
"nan": "~2.4.0",
"nan": "~2.5.1",
"prebuild-install": "^2.1.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/async.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/batch_async.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/batch_async.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/common.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/database.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/database.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/database_async.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/database_async.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/iterator.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/iterator.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/iterator_async.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/iterator_async.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/leveldown.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/leveldown.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/leveldown_async.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/leveldown_async.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelDOWN contributors
/* Copyright (c) 2012-2017 LevelDOWN contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down
2 changes: 1 addition & 1 deletion test/compression-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (c) 2012-2016 LevelUP contributors
/* Copyright (c) 2012-2017 LevelUP contributors
* See list at <https://github.com/level/leveldown#contributing>
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
*/
Expand Down

0 comments on commit f92a1bc

Please sign in to comment.