Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit baf54a6

Browse files
author
anki-code
committed
Merge branch 'master' of https://github.com/xxh/xxh into 0.4.0
2 parents 4b09f9b + c1d3e3a commit baf54a6

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2222

2323
The views and conclusions contained in the software and documentation are those of the
2424
authors and should not be interpreted as representing official policies, either expressed
25-
or implied, of the stakeholders of the xonssh project or the employers of xonssh developers.
25+
or implied, of the stakeholders of the xxh project or the employers of xxh developers.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The xxh is for using the xonsh shell wherever you go through the ssh.
3131
____ __________ @ @
3232
______ / \ \__/
3333
____ / ______ \ / \ contribution
34-
_____ / / __ \ \ / _/ https://github.com/xonssh/xxh
34+
_____ / / __ \ \ / _/ https://github.com/xxh/xxh
3535
___ ( / / / \ \ /
3636
\ \___/ / / / plugins
3737
____\ /__/ / https://github.com/search?q=xxh-plugin
@@ -45,13 +45,13 @@ The xxh is for using the xonsh shell wherever you go through the ssh.
4545

4646
🔎 [Search xxh plugins on Github](https://github.com/search?q=xxh-plugin&type=Repositories) or [Bitbucket](https://bitbucket.org/repo/all?name=xxh-plugin)
4747

48-
💡 [Create xxh plugin](https://github.com/xonssh/xxh-plugin-sample)
48+
💡 [Create xxh plugin](https://github.com/xxh/xxh-plugin-xonsh-sample)
4949

50-
📌 [xxh-plugin-pipe-liner](https://github.com/xonssh/xxh-plugin-pipe-liner) — processing the lines easy with python and classic shell pipes
50+
📌 [xxh-plugin-xonsh-pipe-liner](https://github.com/xxh/xxh-plugin-xonsh-pipe-liner) — processing the lines easy with python and classic shell pipes
5151

52-
📌 [xxh-plugin-theme-bar](https://github.com/xonssh/xxh-plugin-theme-bar) — theme to stay focused
52+
📌 [xxh-plugin-xonsh-theme-bar](https://github.com/xxh/xxh-plugin-xonsh-theme-bar) — theme to stay focused
5353

54-
📌 [xxh-plugin-autojump](https://github.com/xonssh/xxh-plugin-autojump) — save time on moving thru directories
54+
📌 [xxh-plugin-xonsh-autojump](https://github.com/xxh/xxh-plugin-xonsh-autojump) — save time on moving thru directories
5555

5656
## Notes
5757

@@ -66,10 +66,10 @@ To install [xontribs](https://xon.sh/xontribs.html) in xxh session use `xpip ins
6666
When you run `xxh myhost` command xxh download portable xonsh and store locally to future use. Then if it needed xxh upload the portable xonsh, init scripts and plugins to the host. Finally xxh make ssh connection to the host and run portable xonsh shell without any system installs and affection on the target host.
6767

6868
## Development
69-
🛠️ In the [xxh-dev](https://github.com/xonssh/xxh-dev) repo there is full [docker](https://www.docker.com/)ised environment for development, testing and contribution. The process of testing and development is orchestrated by `xde` tool and as easy as possible.
69+
🛠️ In the [xxh-dev](https://github.com/xxh/xxh-dev) repo there is full [docker](https://www.docker.com/)ised environment for development, testing and contribution. The process of testing and development is orchestrated by `xde` tool and as easy as possible.
7070

7171
## Spread the word
72-
If you like the idea of xxh help spread the word about xxh! Click ⭐ on the repo and <a href="https://twitter.com/intent/tweet?text=Python-powered%20shell%20wherever%20you%20go%20through%20the%20ssh&url=https%3A%2F%2Fgithub.com%2Fxonssh%2Fxxh&related=" target="_blank">tweet the link</a>!
72+
If you like the idea of xxh help spread the word about xxh! Click ⭐ on the repo and <a href="https://twitter.com/intent/tweet?text=Python-powered%20shell%20wherever%20you%20go%20through%20the%20ssh&url=https%3A%2F%2Fgithub.com%2Fxxh%2Fxxh&related=" target="_blank">tweet the link</a>!
7373

7474
## Thanks
7575
* @scopatz for https://github.com/xonsh/xonsh

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
name="xonssh-xxh",
66
version=global_settings['XXH_VERSION'],
77
description="xxh is for using portable xonsh shell wherever you go through the ssh",
8-
url="https://github.com/xonssh/xxh",
8+
url="https://github.com/xxh/xxh",
99
project_urls={
10-
"Documentation": "https://github.com/xonssh/xxh/blob/master/README.md",
11-
"Code": "https://github.com/xonssh/xxh",
12-
"Issue tracker": "https://github.com/xonssh/xxh/issues",
10+
"Documentation": "https://github.com/xxh/xxh/blob/master/README.md",
11+
"Code": "https://github.com/xxh/xxh",
12+
"Issue tracker": "https://github.com/xxh/xxh/issues",
1313
},
1414
python_requires='>=3.6',
1515
install_requires=[
@@ -30,6 +30,6 @@
3030
"License :: OSI Approved :: BSD License"
3131
],
3232
license="BSD",
33-
author="xonssh",
33+
author="xxh",
3434
author_email="[email protected]"
3535
)

xonssh_xxh/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys, os
22

33
global_settings = {
4-
'XXH_VERSION': '0.3.5'
4+
'XXH_VERSION': '0.3.6'
55
}
66

77
if __name__ == "__main__":

xxh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def eeprint(*args, **kwargs):
2121
class Xxh:
2222
def __init__(self):
2323
self.package_dir_path = pf"{xonssh_xxh.__file__}".parent
24-
self.url_xxh_github = 'https://github.com/xonssh/xxh'
24+
self.url_xxh_github = 'https://github.com/xxh/xxh'
2525
self.url_xxh_plugins_search = 'https://github.com/search?q=xxh-plugin'
2626
self.local_xxh_version = global_settings['XXH_VERSION']
2727
self.local_xxh_home = '~/.xxh'

0 commit comments

Comments
 (0)