Skip to content

Commit

Permalink
docs: update repo owner (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
yeshan333 authored Apr 3, 2024
1 parent ea47d3c commit 446c199
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- name: add vfox-erlang & vfox-elixir plugin
run: |
vfox add --source https://github.com/yeshan333/vfox-erlang/archive/refs/heads/main.zip erlang
vfox add --source https://github.com/yeshan333/vfox-elixir/archive/refs/heads/main.zip elixir
vfox add --source https://github.com/version-fox/vfox-erlang/archive/refs/heads/main.zip erlang
vfox add --source https://github.com/version-fox/vfox-elixir/archive/refs/heads/main.zip elixir
- name: install Erlang/OTP by vfox-erlang plugin (Linux)
if: runner.os == 'Linux'
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Elixir [vfox](https://github.com/version-fox) plugin. Use the vfox to manage mul

```shell
# install plugin
vfox add --source https://github.com/yeshan333/vfox-elixir/archive/refs/heads/main.zip elixir
vfox add --source https://github.com/version-fox/vfox-elixir/archive/refs/heads/main.zip elixir

# install an available version
vofx search elixir
Expand All @@ -18,7 +18,7 @@ vfox install elixir@1.16.2

vfox-elixir plugin would install Elixir through the [Elixir](https://elixir-lang.org/install.html#compiling-from-source) source code compilation. So you must have the utilities mentioned in the document -> [Compiling from source](https://elixir-lang.org/install.html#compiling-from-source).

The installation of Elixir relies on Erlang/OTP. You can use the [vfox-erlang](https://github.com/yeshan333/vfox-erlang) plugin to manage your Erlang/OTP versions.
The installation of Elixir relies on Erlang/OTP. You can use the [vfox-erlang](https://github.com/version-fox/vfox-erlang) plugin to manage your Erlang/OTP versions.

Ensure that Elixir and Erlang/OTP versions are compatible -> [Elixir and Erlang/OTP compatibility](https://hexdocs.pm/elixir/1.16.2/compatibility-and-deprecations.html#between-elixir-and-erlang-otp).

Expand All @@ -31,17 +31,17 @@ Here are two examples of installing on Ubuntu 20.04 and MacOS 13.
sudo apt-get -y install build-essential autoconf m4 libncurses5-dev libwxgtk3.0-gtk3-dev libwxgtk-webview3.0-gtk3-dev libgl1-mesa-dev libglu1-mesa-dev libpng-dev libssh-dev unixodbc-dev xsltproc fop libxml2-utils libncurses-dev openjdk-11-jdk

# install Erlang/OTP
vfox add --source https://github.com/yeshan333/vfox-erlang/archive/refs/heads/main.zip erlang
vfox add --source https://github.com/version-fox/vfox-erlang/archive/refs/heads/main.zip erlang
vfox install erlang@26.2.3
vfox use -g erlang@26.2.3

# install Elixir
vfox add --source https://github.com/yeshan333/vfox-elixir/archive/refs/heads/main.zip elixir
vfox add --source https://github.com/version-fox/vfox-elixir/archive/refs/heads/main.zip elixir
vfox install elixir@1.16.2
vfox use -g elixir@1.16.2
```

You can reference the E2E test in Ubuntu 20.04: [https://github.com/yeshan333/vfox-elixir/actions/workflows/e2e_test.yaml](https://github.com/yeshan333/vfox-elixir/actions/workflows/e2e_test.yaml)
You can reference the E2E test in Ubuntu 20.04: [https://github.com/version-fox/vfox-elixir/actions/workflows/e2e_test.yaml](https://github.com/version-fox/vfox-elixir/actions/workflows/e2e_test.yaml)

### install in Darwin (MacOS 13)

Expand All @@ -50,14 +50,14 @@ You can reference the E2E test in Ubuntu 20.04: [https://github.com/yeshan333/vf
brew install autoconf libxslt fop wxwidgets openssl

# install Erlang/OTP
vfox add --source https://github.com/yeshan333/vfox-erlang/archive/refs/heads/main.zip erlang
vfox add --source https://github.com/version-fox/vfox-erlang/archive/refs/heads/main.zip erlang
vfox install erlang@26.2.3
vfox use -g erlang@26.2.3

# install Elixir
vfox add --source https://github.com/yeshan333/vfox-elixir/archive/refs/heads/main.zip elixir
vfox add --source https://github.com/version-fox/vfox-elixir/archive/refs/heads/main.zip elixir
vfox install elixir@1.16.2
vfox use -g elixir@1.16.2
```

You can reference the E2E test in MacOS 13: [https://github.com/yeshan333/vfox-elixir/actions/workflows/e2e_test.yaml](https://github.com/yeshan333/vfox-elixir/actions/workflows/e2e_test.yaml)
You can reference the E2E test in MacOS 13: [https://github.com/version-fox/vfox-elixir/actions/workflows/e2e_test.yaml](https://github.com/version-fox/vfox-elixir/actions/workflows/e2e_test.yaml)
2 changes: 1 addition & 1 deletion lib/elixir_utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ end

function elixir_utils.get_elixir_release_verions()
local resp, err = http.get({
url = "https://fastly.jsdelivr.net/gh/yeshan333/vfox-elixir@main/assets/versions.txt"
url = "https://fastly.jsdelivr.net/gh/version-fox/vfox-elixir@main/assets/versions.txt"
})
local result = {}
for version in string.gmatch(resp.body, '([^\n]+)') do
Expand Down
2 changes: 1 addition & 1 deletion metadata.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ NOTE:
you can set this address to the manifest file address, so that the plugin can be updated automatically.
--]]
PLUGIN.manifestUrl = "https://github.com/yeshan333/vfox-elixir/releases/download/manifest/manifest.json"
PLUGIN.manifestUrl = "https://github.com/version-fox/vfox-elixir/releases/download/manifest/manifest.json"
-- Some things that need user to be attention!
PLUGIN.notes = {
"",
Expand Down

0 comments on commit 446c199

Please sign in to comment.