Skip to content

Commit 279adff

Browse files
committed
updated README.md
1 parent 5963473 commit 279adff

File tree

7 files changed

+24
-5
lines changed

7 files changed

+24
-5
lines changed

README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
![DIR2 Banner](images/clean_banner.png)
22

3-
## dir2 (Directory 2.0) — An SQL-Inspired File System Interface for Windows
3+
## dir2 — An SQL-Inspired File System Interface for Windows
44

55
A Rust-based file system / terminal that reimagines file interaction through SQL-like commands and a Single-file state system. Navigate, select, and execute files using familiar database query syntax.
66

77
![DIR2 Home](images/main.png)
88

9+
## Latest Version
10+
11+
**Version 1.1.0** - Includes List-based Autocomplete, Native Shell Integration, File/Directory Manipulation Commands
12+
913
## [Documentation Website](https://itcodehery.github.io/Project_Directory_2/)
1014

1115
Thank you to [Somnath Chaudhary](https://github.com/som-28) for creating the documentation website.
@@ -20,6 +24,11 @@ Thank you to [Somnath Chaudhary](https://github.com/som-28) for creating the doc
2024
- **Global file search**: Find exact file locations system-wide with `FINDEXACT`
2125
- **Direct execution**: Run selected files or favorites with simple commands
2226

27+
**New Features!**
28+
- **List-based Autocomplete:** Get auto-complete recommendations on Directory/File names as you type!
29+
- **Native Shell Support:** Access your native shell (Powershell or CMD) within dir2 with a simple command `CML`.
30+
- **Directory/File Manip Commands**: Perform Create/Rename/Delete operations on Directories or Files without leaving dir2.
31+
2332
Transform your command-line file management from traditional navigation to intuitive querying. Perfect for developers who think in SQL and want a more declarative approach to file system operations.
2433

2534
Uses the `rust_search` module for system-wide search integration for Windows.
@@ -74,20 +83,30 @@ cargo run
7483

7584
![DIR2 Select Example](images/state_manip.png)
7685

77-
**List of Commands Implemented (Pre-Release):**
86+
**List of Commands Implemented (v1.1.0):**
7887

79-
![DIR2 Commands List](images/commands_list.png)
88+
![DIR2 Commands List 1](images/cmd_list1.png)
89+
![DIR2 Commands List 2](images/cmd_list2.png)
8090

8191
_Meta Commands:_
8292

8393
- **CLS | /C :** Clear Screen
94+
- **CML <command>** : Executes a command in the terminal
8495
- **LC :** Lists Commands
8596
- **WD :** Watch Directory
8697
- **LD :** List Directory
8798
- **DD :** Dodge Directory
8899
- **CD :** Change Drive
89100
- **EXIT | /E :** Exit Terminal
90101

102+
_Directory/File Commands:_
103+
- **MKDIR <directory> :** Creates a directory
104+
- **RMDIR <directory> :** Removes a directory
105+
- **RENDIR <old_directory> <new_directory> :** Renames a directory
106+
- **MKFILE <filename> :** Creates a file
107+
- **RMFILE <filename> :** Removes a file
108+
- **RENFILE <old_filename> <new_filename> :** Renames a file
109+
91110
_State Commands:_
92111

93112
- **SELECT filename.ext FROM directory :** Sets <filename.ext> file as current STATE

directory_2/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

directory_2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dir2"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
edition = "2024"
55

66
[dependencies]

images/cmd_list1.png

133 KB
Loading

images/cmd_list2.png

45.1 KB
Loading

images/commands_list.png

-139 KB
Binary file not shown.

images/main.png

2.09 KB
Loading

0 commit comments

Comments
 (0)