├── ETE_icon.png ├── EgonTE.py ├── LICENSE ├── README.md ├── UI ├── canvas_builder.py ├── library_installer_ui.py └── ui_builders.py ├── content_msgs ├── help.html ├── help.txt ├── patch_notes.html └── patch_notes.txt ├── dependencies ├── large_variables.py ├── universal_functions.py └── version_guard.py ├── new_assests ├── bold.png ├── calc_icon.png ├── colors.png ├── drawToText_icon.png ├── italics.png ├── keyboard.png ├── left_align.png ├── right_align.png ├── scenter_align.png ├── stt.png ├── translate_icon.png ├── tts.png └── underline.png ├── pop_ups ├── ai_popups.py ├── calc_popup.py ├── clipboard_app.py ├── email_popup.py ├── encryption_popup.py ├── file_template_generator_popup.py ├── find_replace_popup.py ├── git_tool_popup.py ├── handwriting_popup.py ├── info_page_popup.py ├── knowledge_popup.py ├── nlp_popup.py ├── randomness_app.py ├── record_logs_popup.py ├── search_functions_popup.py ├── sort_popup.py ├── symbols_popup.py ├── text_decorators_app.py ├── transcript_app.py ├── translate_app.py ├── virtual_keyboard_popup.py ├── weather_app.py ├── web_assistant_popup.py └── web_scrapping_popup.py ├── requirements-optional.txt ├── requirements.txt ├── services ├── OCR_service.py ├── encryption_service.py ├── file_service.py ├── nlp_service.py ├── search_service.py ├── security_service.py ├── text_style_service.py └── theme_service.py └── version.txt /ETE_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/ETE_icon.png -------------------------------------------------------------------------------- /EgonTE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/EgonTE.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/README.md -------------------------------------------------------------------------------- /UI/canvas_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/UI/canvas_builder.py -------------------------------------------------------------------------------- /UI/library_installer_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/UI/library_installer_ui.py -------------------------------------------------------------------------------- /UI/ui_builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/UI/ui_builders.py -------------------------------------------------------------------------------- /content_msgs/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/content_msgs/help.html -------------------------------------------------------------------------------- /content_msgs/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/content_msgs/help.txt -------------------------------------------------------------------------------- /content_msgs/patch_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/content_msgs/patch_notes.html -------------------------------------------------------------------------------- /content_msgs/patch_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/content_msgs/patch_notes.txt -------------------------------------------------------------------------------- /dependencies/large_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/dependencies/large_variables.py -------------------------------------------------------------------------------- /dependencies/universal_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/dependencies/universal_functions.py -------------------------------------------------------------------------------- /dependencies/version_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/dependencies/version_guard.py -------------------------------------------------------------------------------- /new_assests/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/bold.png -------------------------------------------------------------------------------- /new_assests/calc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/calc_icon.png -------------------------------------------------------------------------------- /new_assests/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/colors.png -------------------------------------------------------------------------------- /new_assests/drawToText_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/drawToText_icon.png -------------------------------------------------------------------------------- /new_assests/italics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/italics.png -------------------------------------------------------------------------------- /new_assests/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/keyboard.png -------------------------------------------------------------------------------- /new_assests/left_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/left_align.png -------------------------------------------------------------------------------- /new_assests/right_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/right_align.png -------------------------------------------------------------------------------- /new_assests/scenter_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/scenter_align.png -------------------------------------------------------------------------------- /new_assests/stt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/stt.png -------------------------------------------------------------------------------- /new_assests/translate_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/translate_icon.png -------------------------------------------------------------------------------- /new_assests/tts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/tts.png -------------------------------------------------------------------------------- /new_assests/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/new_assests/underline.png -------------------------------------------------------------------------------- /pop_ups/ai_popups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/ai_popups.py -------------------------------------------------------------------------------- /pop_ups/calc_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/calc_popup.py -------------------------------------------------------------------------------- /pop_ups/clipboard_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/clipboard_app.py -------------------------------------------------------------------------------- /pop_ups/email_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/email_popup.py -------------------------------------------------------------------------------- /pop_ups/encryption_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/encryption_popup.py -------------------------------------------------------------------------------- /pop_ups/file_template_generator_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/file_template_generator_popup.py -------------------------------------------------------------------------------- /pop_ups/find_replace_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/find_replace_popup.py -------------------------------------------------------------------------------- /pop_ups/git_tool_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/git_tool_popup.py -------------------------------------------------------------------------------- /pop_ups/handwriting_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/handwriting_popup.py -------------------------------------------------------------------------------- /pop_ups/info_page_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/info_page_popup.py -------------------------------------------------------------------------------- /pop_ups/knowledge_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/knowledge_popup.py -------------------------------------------------------------------------------- /pop_ups/nlp_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/nlp_popup.py -------------------------------------------------------------------------------- /pop_ups/randomness_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/randomness_app.py -------------------------------------------------------------------------------- /pop_ups/record_logs_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/record_logs_popup.py -------------------------------------------------------------------------------- /pop_ups/search_functions_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/search_functions_popup.py -------------------------------------------------------------------------------- /pop_ups/sort_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/sort_popup.py -------------------------------------------------------------------------------- /pop_ups/symbols_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/symbols_popup.py -------------------------------------------------------------------------------- /pop_ups/text_decorators_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/text_decorators_app.py -------------------------------------------------------------------------------- /pop_ups/transcript_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/transcript_app.py -------------------------------------------------------------------------------- /pop_ups/translate_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/translate_app.py -------------------------------------------------------------------------------- /pop_ups/virtual_keyboard_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/virtual_keyboard_popup.py -------------------------------------------------------------------------------- /pop_ups/weather_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/weather_app.py -------------------------------------------------------------------------------- /pop_ups/web_assistant_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/web_assistant_popup.py -------------------------------------------------------------------------------- /pop_ups/web_scrapping_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/pop_ups/web_scrapping_popup.py -------------------------------------------------------------------------------- /requirements-optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/requirements-optional.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/OCR_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/services/OCR_service.py -------------------------------------------------------------------------------- /services/encryption_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/services/encryption_service.py -------------------------------------------------------------------------------- /services/file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/services/file_service.py -------------------------------------------------------------------------------- /services/nlp_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/services/nlp_service.py -------------------------------------------------------------------------------- /services/search_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/services/search_service.py -------------------------------------------------------------------------------- /services/security_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/services/security_service.py -------------------------------------------------------------------------------- /services/text_style_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/services/text_style_service.py -------------------------------------------------------------------------------- /services/theme_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ariel4545/text_editor/HEAD/services/theme_service.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.13.9 2 | --------------------------------------------------------------------------------