Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update #21

Merged
merged 3 commits into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ XediX creates a clean, distraction-free coding environment with essential tools

The XediX project began on April 14, 2023, with the idea of a dedicated JavaScript text editor. It has since evolved into a tool for simple, free coding in Python.

## Upcoming Features
### Upcoming Features

Exciting new features are on the way to make XediX even better:

Expand All @@ -52,7 +52,7 @@ Exciting new features are on the way to make XediX even better:
- **Customization**: Personalize themes and layouts.
- **Markdown Preview**: Edit Markdown with real-time preview support.

## Documentation
### Documentation

Full documentation is in progress and you can see it in Github Wiki.

Expand Down
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
![](https://github.com/mostypc123/XediX/blob/main/images/xediximage.png?raw=true)
# Security Policy
This app does not have any security problems, because in fact you can edit offline, so there is not a possibility of having security problems.

Expand Down
3 changes: 1 addition & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def OnChar(self, event):
"iter", "len", "list", "locals", "map", "max", "memoryview", "min", "next",
"object", "oct", "open", "ord", "pow", "print", "property", "range", "repr",
"reversed", "round", "set", "setattr", "slice", "sorted", "staticmethod", "str",
"sum", "super", "tuple", "type", "vars", "zip", "__name__"
"sum", "super", "tuple", "type", "vars", "zip", "__name__", "print", "import", "as", "from"
]

# Convert the list of completions into a space-separated string
Expand Down Expand Up @@ -431,7 +431,6 @@ def export_to_html(self, log_filename, output_message, return_visualization):
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Execution Log</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
body {{
background-color: #1f2937;
Expand Down
Loading