Skip to content

Commit

Permalink
Change ownership
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Oct 29, 2023
1 parent f617ec2 commit 2842174
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 26 deletions.
24 changes: 11 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,36 @@ This program is meant to be paired with a code editor with integrated terminal l
# Prerequisites

1. [Python](https://www.Python.org/downloads) (3.10+ required)
* Make sure to install Python to your `PATH`.
- Make sure to install Python to your `PATH`.
1. [VapourSynth](https://github.com/vapoursynth/vapoursynth/releases) (R60+ required)

# Installation

Install latest stable via pypi:

```bash
pip install vspreview
```


Install latest git:

```bash
pip install -U git+https://github.com/Irrational-Encoding-Wizardry/vs-preview.git
pip install -U git+https://github.com/Setsugennoao/vs-preview.git
```

# Usage

It can be used by running `vspreview script.vpy` or your preferred way in [your IDE](#ide-integration).

[Keyboard Shortcuts](https://github.com/Irrational-Encoding-Wizardry/vs-preview/blob/master/docs/accessibility/keybinds.rst)
[Keyboard Shortcuts](https://github.com/Setsugennoao/vs-preview/blob/master/docs/accessibility/keybinds.rst)

[Saved Frame Filename Variables](https://github.com/Irrational-Encoding-Wizardry/vs-preview/tree/master/docs/save_frame_placeholders.md)
[Saved Frame Filename Variables](https://github.com/Setsugennoao/vs-preview/tree/master/docs/save_frame_placeholders.md)

# IDE Integration

* [Visual Studio Code](https://github.com/Irrational-Encoding-Wizardry/vs-preview/tree/master/docs/installation/install_vscode.rst)
* [Vim](https://github.com/Irrational-Encoding-Wizardry/vs-preview/tree/master/docs/installation/install_vim.rst)
* [Notepad++](https://github.com/Irrational-Encoding-Wizardry/vs-preview/tree/master/docs/installation/install_notepad++.rst)

- [Visual Studio Code](https://github.com/Setsugennoao/vs-preview/tree/master/docs/installation/install_vscode.rst)
- [Vim](https://github.com/Setsugennoao/vs-preview/tree/master/docs/installation/install_vim.rst)
- [Notepad++](https://github.com/Setsugennoao/vs-preview/tree/master/docs/installation/install_notepad++.rst)

# Plugins

Expand All @@ -46,8 +46,6 @@ You can install external plugins by using the following command:
vspreview install [plugin-name]
```

A list of plugins can be found in [this repo](https://github.com/Irrational-Encoding-Wizardry/vs-preview-plugins).
`plugin-name` is the name of the plugin directory in the repo.
A list of plugins can be found in [this repo](https://github.com/Setsugennoao/vs-preview-plugins). `plugin-name` is the name of the plugin directory in the repo.

To develop new plugins or manually install them, create a .ppy file inside the global plugins directory. You can find the path to that in the storage file.
You can add additional search paths by adding them to a .pth file inside the global plugins directory, just like you can with python path and site-packages.
To develop new plugins or manually install them, create a .ppy file inside the global plugins directory. You can find the path to that in the storage file. You can add additional search paths by adding them to a .pth file inside the global plugins directory, just like you can with python path and site-packages.
2 changes: 1 addition & 1 deletion docs/changelogs/changelogs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Changelogs
----------

This page may be outdated,
but the `releases page <https://github.com/Irrational-Encoding-Wizardry/vs-preview/releases>`_
but the `releases page <https://github.com/Setsugennoao/vs-preview/releases>`_
on Github
should always be up-to-date.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ and much, much more!
Special Credits
---------------
| A special thanks to everyone who has contributed to ``vs-preview``.
| `A comprehensive list of contributors can be found here. <https://github.com/Irrational-Encoding-Wizardry/vs-preview/graphs/contributors>`_
| `A comprehensive list of contributors can be found here. <https://github.com/Setsugennoao/vs-preview/graphs/contributors>`_

.. toctree::
Expand Down
4 changes: 2 additions & 2 deletions docs/installation/install_vspreview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Note that these may be unstable!

.. code-block:: bash
pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-preview.git -U
pip install git+https://github.com/Setsugennoao/vs-preview.git -U
Updating
^^^^^^^^
Expand All @@ -44,4 +44,4 @@ Or this command for the nightly build:

.. code-block:: bash
pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-preview.git -U --force-reinstall
pip install git+https://github.com/Setsugennoao/vs-preview.git -U --force-reinstall
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@
long_description_content_type='text/markdown',
zip_safe=False,
project_urls={
'Source Code': 'https://github.com/Irrational-Encoding-Wizardry/vs-preview',
'Documentation': 'https://vspreview.encode.moe/en/latest/',
'Tracker': 'https://github.com/Irrational-Encoding-Wizardry/vs-preview/issues',
'Contact': 'https://discord.gg/qxTxVJGtst'
'Source Code': 'https://github.com/Setsugennoao/vs-preview',
'Contact': 'https://discord.gg/setsugen'
},
install_requires=requirements,
python_requires='>=3.11',
Expand Down
8 changes: 4 additions & 4 deletions vspreview/_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

__version__ = '0.7.1'

__author__ = 'Endilll <>'
__maintainer__ = 'Setsugen no ao <[email protected]>'
__author_name__, __author_email__ = 'Endilll', ''
__maintainer_name__, __maintainer_email__ = 'Setsugen no ao', '[email protected]'

__author_name__, __author_email__ = [x[:-1] for x in __author__.split('<')]
__maintainer_name__, __maintainer_email__ = [x[:-1] for x in __maintainer__.split('<')]
__author__ = f'{__author_name__} <{__author_email__}>'
__maintainer__ = __author__

if __name__ == '__github__':
print(__version__)
2 changes: 1 addition & 1 deletion vspreview/plugins/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from ..main import MainWindow

BASE_URL = 'https://api.github.com/repos'
PLUGINS_PATH = 'Irrational-Encoding-Wizardry/vs-preview-plugins'
PLUGINS_PATH = 'Setsugennoao/vs-preview-plugins'
BRANCH = 'master'

CONTENT_URL = f'https://raw.githubusercontent.com/{PLUGINS_PATH}/{BRANCH}/{{path}}'
Expand Down

0 comments on commit 2842174

Please sign in to comment.