Gildas Cuisinier
a6ad42b6a9
Prepare 0.5.4
5 years ago
Gildas Cuisinier
9548d9f36c
Refresh plugin on update
5 years ago
Gildas Cuisinier
5232b23438
Merge pull request #307 from roryokane/patch-3
...
Fix wrong paths in Fish install instructions
5 years ago
Rory O’Kane
64d418ccdc
Fix wrong paths in Fish install instructions
...
source of the information that it should be `functions` and not `function`: https://fishshell.com/docs/current/index.html#autoloading-functions
5 years ago
Gildas Cuisinier
2a1c379187
Merge pull request #306 from voronaam/master
...
Fix the custom alias functionality
5 years ago
Lex Vorona
eee620d1ad
Fix the custom alias functionality
5 years ago
Gildas Cuisinier
0d8ffacf0a
Merge pull request #287 from pthariensflame/fix/sapmachine-15-ea
...
Account for changed capitalization in newest SapMachine 15 EA
6 years ago
Alexander Ronald Altman
1778fc27b6
Account for changed capitalization in newest SapMachine 15 EA
6 years ago
Gildas Cuisinier
78dbd7f9a5
Fixes #188 Add fish hook for prompt
6 years ago
Gildas Cuisinier
bca5d51c5d
Delete on-release.yml
6 years ago
Gildas Cuisinier
5249cc0608
Add GH actions for release
6 years ago
Gildas Cuisinier
aec2eb345d
Add Github action for release
6 years ago
Gildas Cuisinier
0e48ce75a1
0.5.3
6 years ago
Niklas Herder
e832a08a69
Add fish hook for prompt
...
Ensures that JAVA_HOME is set properly and that prompts get correct info on current java version.
From https://github.com/jenv/jenv/issues/188#issuecomment-605761423
Fixes #188
6 years ago
Gildas Cuisinier
3f3e517630
Merge pull request #280 from pthariensflame/patch-1
...
Fix SapMachine detection for new output style.
6 years ago
Alexander Ronald Altman
097090d57f
Fix SapMachine detection for new output style.
6 years ago
Gildas Cuisinier
2b100b0bc2
Merge pull request #249 from clintropolis/patch-1
...
fix graalvm JAVA_PROVIDER detection for jenv-add
6 years ago
Gildas Cuisinier
7eb4b33e9a
Merge pull request #255 from JenoDK/patch-1
...
Update README.md for fish shell
6 years ago
Gildas Cuisinier
db58a91e48
Merge pull request #262 from danovia/danovia-readme-patch
...
Update README.md
6 years ago
Gildas Cuisinier
5c4a0e3dd0
Merge pull request #241 from claui/fix-regression-in-jenv-add
...
Fix regression in `jenv add` introduced in 0617e57
6 years ago
Gildas Cuisinier
6b9dab07fa
Merge pull request #271 from emcrisostomo/use-precmd-hook-in-zsh-export
...
Use the precmd hook instead of the chpwd hook
6 years ago
Gildas Cuisinier
37a9d87aca
Merge pull request #270 from tomasaschan/patch-1
...
Add --verbose flag to docs
6 years ago
Enrico M. Crisostomo
f417d46f17
Use the precmd hook instead of the chpwd hook
6 years ago
Tomas Aschan
f7327e058d
Add --verbose flag to docs
6 years ago
Gildas Cuisinier
dcbfd483b1
Merge pull request #265 from pengisgood/master
...
Fix the warn msg
6 years ago
Hongwei Peng
bc018f7097
fix the warn msg
6 years ago
Dan Zugman
aacdb61b4e
Update README.md
...
Seems there is no option to download the JDK from Oracle's site.
Changed the README.md to show the installation process using AdoptOpenJDK.
See: https://stackoverflow.com/questions/24342886/how-to-install-java-8-on-mac
6 years ago
Gildas Cuisinier
5a20be6733
Merge pull request #244 from pmairif/master
...
add shortest version
6 years ago
Gildas Cuisinier
11a74767b7
Merge pull request #256 from smarkwell/patch-1
...
Correcting `jenv help` Github link to the correct Github README.md
6 years ago
Gildas Cuisinier
2064141378
Merge pull request #257 from bric3/fix-zsh-completions-adds-space
...
Fixes #193 ZSH completion do not add the space anymore
6 years ago
Brice Dutheil
6b9ff9cbea
Fixes #193 ZSH completion do not add the space anymore
...
The trick is done by configuring compctl to suffix the completion with nothing (`-S ""`).
http://zsh.sourceforge.net/Doc/Release/Completion-Using-compctl.html#Control-Flags
6 years ago
Scott Markwell
8fef669900
Correcting Github link to current README.md
...
Not sure if the front page, the readme file in master, or the JENV website is the best place to update the link to, but I believe this is the best option.
7 years ago
JenoDK
9a177da4c1
Update README.md for fish shell
7 years ago
Gildas Cuisinier
d8ffd5bdf5
Merge pull request #245 from mcsnolte/include_add_command_in_help
...
Add the add command to help
7 years ago
Gildas Cuisinier
ca8accbe5a
Merge pull request #243 from juliodias/typo
...
Fix typo in documenation
7 years ago
Clint Wylie
2bcddc7ad4
Update jenv-add
7 years ago
Clint Wylie
5e21be9bdc
Update jenv-add
7 years ago
Clint Wylie
483f2ce972
fix graalvm JAVA_PROVIDER detection for jenv-add
...
`GraalVM` includes `OpenJDK` in it's `java -version` output:
```
openjdk version "1.8.0_212"
OpenJDK Runtime Environment (build 1.8.0_212-20190420112649.buildslave.jdk8u-src-tar--b03)
OpenJDK GraalVM CE 19.0.0 (build 25.212-b03-jvmci-19-b01, mixed mode)
```
so it needs to be an earlier check to get picked up correctly so it isn't incorrectly set to `openjdk`.
Additionally, added detection for Amazon Corretto which outputs `java -version` as:
```
openjdk version "1.8.0_212"
OpenJDK Runtime Environment Corretto-8.212.04.2 (build 1.8.0_212-b04)
OpenJDK 64-Bit Server VM Corretto-8.212.04.2 (build 25.212-b04, mixed mode)
```
7 years ago
Steve Nolte
78a5460b37
Add the add command to help
7 years ago
Patrick Mairif
f9d94144b5
add shortest version
...
add an alias 12 for 12.0
improved regex to match dots
7 years ago
Julio Dias
9fb8d3fb6d
Fix typo
7 years ago
Claudia
6d2b564237
Fix regression in `jenv add` introduced in 0617e57
...
An issue regarding `JAVA_TOOL_OPTIONS` [1], which was already fixed
with a823349 [2], was recently re-introduced with 0617e57 . [3] This
commit fixes that regression.
[1]: https://github.com/jenv/jenv/issues/118
[2]: a823349576
[3]: 0617e57fd7 (diff-d470885dc7f9c809eacff6b6dc7dce36R87)
7 years ago
Gildas Cuisinier
af89d7800f
Merge pull request #236 from rstein66/master
...
Correct Java install command (brew -> brew cask)
7 years ago
Rachel Stein
c6dc6d75ef
Correct Java install command (brew -> brew cask)
...
Additional minor README changes:
- Add link to "Trouble Shooting" Wiki page (at the end of § 1.1).
- Fix spelling and Markdown typos.
7 years ago
Gildas Cuisinier
6ec3376880
jenv doctor detect missconfigured plugin ( #232 )
7 years ago
Gildas Cuisinier
4b45437171
Merge pull request #235 from bric3/patch-1
...
Fixes #234 : install the hook within a local function
7 years ago
Brice Dutheil
54cf885daa
Fixes #234 : install the hook within a local function
...
The previous code started a _new_ emulation, which had the side effect
of resetting some options like auto_cd
> If the -R switch is given, all settable options are reset to their default value corresponding to the specified emulation mode, except for certain options describing the interactive environment; **otherwise, only those options likely to cause portability problems in scripts and functions are altered.**
Source : http://zsh.sourceforge.net/Doc/Release/Shell-Builtin-Commands.html#Shell-Builtin-Commands
7 years ago
Gildas Cuisinier
33e367b1c2
Avoid call on java-macos-home by default
...
Should be the default behaviour for every user
If they want to create plist, they should call explicitly jenv
macos-home
7 years ago
Louis Bergelson
eb07943895
Fix #230 - jenv global regression
...
Replace a hardcoded call to `$HOME/.jenv/bin/jenv` with a call to the version of jenv that is in the `$PATH`.
7 years ago
Gildas Cuisinier
8d22928558
Prepare futur of jEnv organization
7 years ago