-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ram Lmn
committed
Jun 12, 2017
0 parents
commit 15c98ae
Showing
26 changed files
with
3,828 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"extends": "google", | ||
"plugins":[ | ||
"html" | ||
], | ||
"env": { | ||
"browser": true | ||
}, | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2017, | ||
"ecmaFeatures": { | ||
"modules": true | ||
} | ||
}, | ||
"rules": { | ||
"max-len": [2, 100, { | ||
"ignoreComments": true, | ||
"ignoreUrls": true, | ||
"tabWidth": 2 | ||
}], | ||
"no-implicit-coercion": [2, { | ||
"boolean": false, | ||
"number": true, | ||
"string": true | ||
}], | ||
"no-unused-expressions": [2, { | ||
"allowShortCircuit": true, | ||
"allowTernary": false | ||
}], | ||
"no-unused-vars": [2, { | ||
"vars": "all", | ||
"args": "after-used", | ||
"argsIgnorePattern": "(^reject$|^_$)", | ||
"varsIgnorePattern": "(^_$)" | ||
}], | ||
"quotes": [2, "single"], | ||
"require-jsdoc": 0, | ||
"valid-jsdoc": 0, | ||
"arrow-parens": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
dist | ||
npm-debug.log | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) Ram Lmn <ramlmn@outlook.com> | ||
|
||
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: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Clippy | ||
A clipboard manager built on [electron](https://github.com/electron/electron/), using [WebComponents](https://developer.mozilla.org/en-US/docs/Web/Web_Components) | ||
|
||
## Installation | ||
> **Note:** Pre-built [binaries](releases) are available for Windows only | ||
Clone the repo and install dependencies | ||
``` | ||
$ git clone https://github.com/ramlmn/clippy.git | ||
$ cd clippy | ||
$ npm i | ||
``` | ||
|
||
For running the application from console: | ||
``` | ||
$ npm start | ||
``` | ||
|
||
For building a binary: | ||
``` | ||
$ npm run build | ||
``` | ||
The binary(for your platform) would be available in `dist` directory | ||
|
||
## Usage | ||
The app is still in beta and doesn't have a feature to customize anything. | ||
The app would be running in the system tray and can be accessed by the keyboard shortcut: `Ctrl+Shift+V` or `Cmd+Shift+V` | ||
|
||
## Acknowledgements | ||
* UI inspired from [Alfred app](https://www.alfredapp.com/) | ||
* Custom elements source inspired from [Polymer](https://github.com/Polymer/polymer) | ||
* Installer icon inspired from icon made by [Roundicons](http://www.flaticon.com/authors/roundicons) from [www.flaticon.com](http://www.flaticon.com) is licensed by [CC 3.0 BY](https://creativecommons.org/licenses/by/3.0/) (_modified_) | ||
|
||
## Screenshots | ||
![Clippy screenshot snippet](media/clippy-snap1.png) | ||
![Clippy screenshot image](media/clippy-snap2.png) | ||
|
||
## License | ||
[MIT](LICENSE) |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.