Skip to content

Commit

Permalink
updated v0.8.0 to v0.8.1
Browse files Browse the repository at this point in the history
see CHANGELOG.MD
  • Loading branch information
RaSan147 committed May 14, 2023
1 parent 394ba8f commit 2259cd1
Show file tree
Hide file tree
Showing 6 changed files with 137 additions and 67 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# Version 0.8.1
## Client-side Changes:
* Clicking on text files should show in UTF-8
## Server-side Changes:
1. Added cookies
2. Introduced cache_control in send_file()
3. Fixed multiple send_response() code issue
4. Added send_header_string()
5. Text files now have `charset=utf-8` in header content-type
## Fixes:
* text was not showing in UTF-8
## TODO:
* make sidebar and user management
* drag and drop upload in entire page (show drop here popup like GITHUB)



# Version 0.8.0
## Client-side Changes:
* Zip page shows more info (Calculating notice)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.8.1
5 changes: 4 additions & 1 deletion dev_src/local_server_pyrobox.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
enc = "utf-8"



# TODO
# ----------------------------------------------------------------
Expand Down Expand Up @@ -37,6 +38,7 @@
__version__ = __version__
true = T = True
false = F = False
enc = "utf-8"

###########################################
# ADD COMMAND LINE ARGUMENTS
Expand All @@ -48,6 +50,7 @@
logger.info(tools.text_box("Server Config", *({i: getattr(cli_args, i)} for i in vars(cli_args))))

###########################################
# config.dev_mode = False
pt.pt_config.dev_mode = config.dev_mode

config.MAIN_FILE = os.path.abspath(__file__)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pyrobox
version = 0.8.0
version = 0.8.1
author = Rasan
author_email= wwwqweasd147@gmail.com
description = Personal DropBox for Private Network
Expand Down
Loading

0 comments on commit 2259cd1

Please sign in to comment.