Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added pre-commit and pre-push hook #10

Open
wants to merge 28 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .eslintrc.js

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules
yarn*
dist/
.idea/
.DS_Store
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 H2
Copyright (c) 2020 H2

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
31 changes: 5 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,23 @@
# H2

Inspired by the Helium app, **H2** is a minimalist browser to watch embeded videos and more in picture-in-picture mode.

# Features

:tv: Works with any Youtube URL.

:scroll: Works with PDFs links, Google Docs URLs.

:computer: Works on all platforms, thanks to electron ❤️

:art: Image editor supports contrast, brightness, hue, sepia and save as PNG.

:clock9:[WIP] Many other features coming soon.

# Example

<a href="https://s3.amazonaws.com/h2org/h2-demo.gif" target="_blank">Watch Demo</a>
Supporting light weight extensions for heavy task lifting. The extensibility of H2's core enables building extensions that can provide you with small digital luxuries! Think Picture-in-picture for live streaming, youtube, images, videos or any other media source ([where it all began](https://github.com/h2org/H2)), cross-device clipboard sharing, mini games and other cool stuff.

## Installation

- [Windows](docs/windows.md)
- [Mac](docs/mac.md)
- [Linux](docs/linux.md)

## Usage

- Copy any youtube, PDF or google docs URL and press `Ctrl/Command + Shift + V`
- [Keyboards Shortcuts](docs/shortcuts.md)

## Contributing

```bash
# Clone this repository

git clone https://github.com/h2org/H2
git clone https://github.com/h2org/h2-core

# Go into the repository

cd H2
cd h2-core

# Install dependencies

Expand All @@ -51,9 +30,9 @@ npm start

## Bug

[Known Bugs](https://github.com/h2org/H2/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
[Known Bugs](https://github.com/h2org/h2-core/issues?q=is%3Aopen+is%3Aissue+label%3Abug)


## License

[CC0-1.0](https://github.com/h2org/H2/blob/master/LICENSE.md)
[MIT](https://github.com/h2org/h2-core/blob/master/LICENSE.md)
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
6 changes: 6 additions & 0 deletions extensions/actions/pip-vimeo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class action {

public hasAccess() {
return true;
}
}
12 changes: 12 additions & 0 deletions extensions/user.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"name": "PIP Media",
"filename": "pip-media",
"author": "xx",
"actions": {
"CLIPBOARD_TEXT": [
"pip-vimeo"
]
}
}
]
Loading