From e4e6b46241653c6bea22f5a0365f3669b9e87e14 Mon Sep 17 00:00:00 2001 From: GHTaarn <62629455+GHTaarn@users.noreply.github.com> Date: Tue, 5 Mar 2024 21:23:55 +0100 Subject: [PATCH 1/7] Updated installation intructions in README.md (cherry picked from commit b22691ea42dac25746e0fea008ec2af6cef06141) --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 614db1f..e398cdb 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,13 @@ Julia REPL if the [Unicode codepoint](https://codepoints.net) is known. In the Julia REPL type: ```julia import Pkg -Pkg.add("https://github.com/GHTaarn/UnicodeREPL.jl") +Pkg.add("UnicodeREPL") ``` +(Because `UnicodeREPL.jl` uses non-public Julia interface components, +the official version is only compatible with stable Julia versions. +You can bypass this check with +`Pkg.add("https://github.com/GHTaarn/UnicodeREPL.jl#nocompat")` if you are +using an unstable version of Julia) ## Use From 8c285c6bedb51a80dc1af170d1617688f518cd58 Mon Sep 17 00:00:00 2001 From: GHTaarn <62629455+GHTaarn@users.noreply.github.com> Date: Sun, 10 Mar 2024 05:13:05 +0100 Subject: [PATCH 2/7] Rewording in README.md (cherry picked from commit bfc74fc485d9e88ebd3dd01d44c89666e251021a) --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e398cdb..32e6012 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # UnicodeREPL This is a small [Julia](https://julialang.org) package that enables the user -to obtain any Unicode character (that the system fonts can display) in the -Julia REPL if the [Unicode codepoint](https://codepoints.net) is known. +to obtain any Unicode character in the Julia REPL if the +[Unicode codepoint](https://codepoints.net) is known (and if the system fonts +can display it). ## Installation From 11d22885c51869a785d54d87c71d086818a9daca Mon Sep 17 00:00:00 2001 From: GHTaarn <62629455+GHTaarn@users.noreply.github.com> Date: Sun, 10 Mar 2024 06:01:42 +0100 Subject: [PATCH 3/7] Fixed error in docstring (cherry picked from commit 57a06236d190bac6b88503178a093f25d188d0fa) --- src/UnicodeREPL.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/UnicodeREPL.jl b/src/UnicodeREPL.jl index 6e6995d..41cf69d 100644 --- a/src/UnicodeREPL.jl +++ b/src/UnicodeREPL.jl @@ -3,8 +3,8 @@ On an empty line, press ^ to enter unicode_repl mode and backspace to exit. -In unicode_repl mode, `\\u(XXXX)` tab completes to the symbol at Unicode -codepage `XXXX` where `XXXX` is a hexadecimal string of any length. +In unicode_repl mode, `\\u(XXXX)` tab completes to the symbol with Unicode +codepoint `XXXX` where `XXXX` is a hexadecimal string of any length. ## Exported Symbols From f712dece615dc5697d09aef1b815dbae0e3cc459 Mon Sep 17 00:00:00 2001 From: GHTaarn <62629455+GHTaarn@users.noreply.github.com> Date: Sun, 10 Mar 2024 06:32:05 +0100 Subject: [PATCH 4/7] Improved README.md (cherry picked from commit 34a64068c6df9abc92f76c42e1d23ee1c79622f1) --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 32e6012..fd46850 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,13 @@ In the Julia REPL type: using UnicodeREPL ``` -Hereafter, you will be able to enter "unicode repl" mode by typing +Herafter you can get use the docstring (by typing `?UnicodeREPL`) to get a +quick overview of how to use UnicodeREPL. + +The main feature is "unicode repl" mode, which can be entered by typing the `^` character at the start of a line. -In "unicode repl" mode, any pattern matching `\u(XXXX)` will be +When the `Tab` key is pressed in "unicode repl" mode, any pattern matching +`\u(XXXX)` will be converted to the Unicode character corresponding to `XXXX`, where `XXXX` is a string of any length containing the hexadecimal [Unicode codepoint](https://codepoints.net) of a valid Unicode character. From 3f7515f0e56c9bfffa0527fb7608bd906995eb28 Mon Sep 17 00:00:00 2001 From: GHTaarn <62629455+GHTaarn@users.noreply.github.com> Date: Sun, 10 Mar 2024 06:34:44 +0100 Subject: [PATCH 5/7] Improved README.md (cherry picked from commit eb4fbe1860f487810063a9a18f6f3bbe1382ee1c) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd46850..d77a232 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ quick overview of how to use UnicodeREPL. The main feature is "unicode repl" mode, which can be entered by typing the `^` character at the start of a line. -When the `Tab` key is pressed in "unicode repl" mode, any pattern matching +When the `Tab` key is pressed in "unicode repl" mode, patterns matching `\u(XXXX)` will be converted to the Unicode character corresponding to `XXXX`, where `XXXX` is a string of any length containing the hexadecimal From 0e23c9f863a49d9595f8963e2a80a8c3cb05f09f Mon Sep 17 00:00:00 2001 From: GHTaarn <62629455+GHTaarn@users.noreply.github.com> Date: Sun, 10 Mar 2024 06:49:18 +0100 Subject: [PATCH 6/7] Fixed typo in README.md (cherry picked from commit 99cfd1acbc9701cc7bf5de875cbc909ef4f6f89b) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d77a232..1df1b84 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ In the Julia REPL type: using UnicodeREPL ``` -Herafter you can get use the docstring (by typing `?UnicodeREPL`) to get a +Herafter you can use the docstring (by typing `?UnicodeREPL`) to get a quick overview of how to use UnicodeREPL. The main feature is "unicode repl" mode, which can be entered by typing From 3a27ac518e94e3d84d942593571e13af3b8db8fe Mon Sep 17 00:00:00 2001 From: GHTaarn <62629455+GHTaarn@users.noreply.github.com> Date: Sun, 10 Mar 2024 19:27:06 +0100 Subject: [PATCH 7/7] Increased version to 0.1.1 (from 0.1.0) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index c56d3ba..9102134 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "UnicodeREPL" uuid = "386912cb-a936-462a-a347-7bd6cef0b04e" authors = ["GHTaarn <62629455+GHTaarn@users.noreply.github.com>"] -version = "0.1.0" +version = "0.1.1" [deps] REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"