nercone-shell 0.3.7__tar.gz → 0.3.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nercone-shell
3
- Version: 0.3.7
3
+ Version: 0.3.8
4
4
  Summary: Modern shell for Developers
5
5
  Author: Nercone
6
6
  Author-email: Nercone <nercone@diamondgotcat.net>
@@ -101,14 +101,17 @@ These settings customize the behavior of Nersh.
101
101
  - `autoruns`: Sets the shell scripts you want to run at startup in array format.
102
102
 
103
103
  ### Compatibility
104
- This setting allows Nersh to function properly in special environments.
104
+ These settings allows Nersh to function properly in special environments.
105
105
  - `report_invisible_characters`: A Boolean value that enables reporting of invisible characters to readline, which is necessary in some environments, such as Linux without a GUI (TUI only).
106
106
 
107
107
  ### Experimental
108
108
  The Experimental setting is used to enable experimental features.
109
109
  It enables new features that are incomplete, have many bugs, or have unfixable bugs.
110
110
  Some features are difficult to completely disable, so they are effectively disabled. (Bugs in external libraries/modules, etc.)
111
-
112
111
  - `command_history` The readline command history feature.
113
112
  - It was marked as an experimental feature because there were frequent issues with the layout collapsing when retracing the history.
114
113
  - Since cannot to find a way to disable the history feature in the readline module, it is effectively disabled by clearing the history after each input.
114
+
115
+ ---
116
+
117
+ ![PyPI - Version](https://img.shields.io/pypi/v/nercone-shell)
@@ -86,14 +86,17 @@ These settings customize the behavior of Nersh.
86
86
  - `autoruns`: Sets the shell scripts you want to run at startup in array format.
87
87
 
88
88
  ### Compatibility
89
- This setting allows Nersh to function properly in special environments.
89
+ These settings allows Nersh to function properly in special environments.
90
90
  - `report_invisible_characters`: A Boolean value that enables reporting of invisible characters to readline, which is necessary in some environments, such as Linux without a GUI (TUI only).
91
91
 
92
92
  ### Experimental
93
93
  The Experimental setting is used to enable experimental features.
94
94
  It enables new features that are incomplete, have many bugs, or have unfixable bugs.
95
95
  Some features are difficult to completely disable, so they are effectively disabled. (Bugs in external libraries/modules, etc.)
96
-
97
96
  - `command_history` The readline command history feature.
98
97
  - It was marked as an experimental feature because there were frequent issues with the layout collapsing when retracing the history.
99
98
  - Since cannot to find a way to disable the history feature in the readline module, it is effectively disabled by clearing the history after each input.
99
+
100
+ ---
101
+
102
+ ![PyPI - Version](https://img.shields.io/pypi/v/nercone-shell)
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "nercone-shell"
7
- version = "0.3.7"
7
+ version = "0.3.8"
8
8
  description = "Modern shell for Developers"
9
9
  readme = { file = "README.md", content-type = "text/markdown" }
10
10
  authors = [
@@ -28,7 +28,7 @@ except AttributeError:
28
28
  try:
29
29
  VERSION: str = version("nercone-shell")
30
30
  except PackageNotFoundError:
31
- VERSION: str = "0.0.0"
31
+ VERSION: str = "(version unknown)"
32
32
  ENVIRONMENT: dict = {}
33
33
  NERSH_AUTORUN: str = os.environ.get("NERSH_AUTORUN", None)
34
34
  NERSH_PATH = Path(os.environ.get("NERSH_PATH", str(Path(Path("~").expanduser(), ".nercone", "nercone-shell"))))
@@ -162,7 +162,7 @@ def shorten_path(path: str) -> str:
162
162
  return path_str
163
163
 
164
164
  def show_version():
165
- print(f"Nersh v{VERSION}")
165
+ print(f"Nersh {VERSION}")
166
166
 
167
167
  def reset():
168
168
  global ENVIRONMENT, NERSH_CONFIG