From 5bea58b1cb5a8bdb9970b28576b5733e0e005ac4 Mon Sep 17 00:00:00 2001 From: JE-Chen Date: Sat, 6 May 2023 19:27:15 +0800 Subject: [PATCH 1/2] Upload dev and stabe Upload dev and stabe --- exe/je_driver_icon.ico | Bin 0 -> 4286 bytes exe/start_front_engine.py | 3 +++ frontengine/__init__.py | 5 +++++ dev.toml => pyproject.toml | 9 ++++----- stable.toml | 12 ++++-------- 5 files changed, 16 insertions(+), 13 deletions(-) create mode 100644 exe/je_driver_icon.ico create mode 100644 exe/start_front_engine.py rename dev.toml => pyproject.toml (76%) diff --git a/exe/je_driver_icon.ico b/exe/je_driver_icon.ico new file mode 100644 index 0000000000000000000000000000000000000000..1d7e735af5ec5aff1356ba0e3baa7268afb8a03a GIT binary patch literal 4286 zcmd^CTTGNk6#jQvE}~e}wU%CRF;&+K25f;UBuKHFP@*NGRs?J7t+pbeh$)RV5Fke7 zDuSUnd7JeW)+SrfE&nhd#8%R-2gKRHRbNcGcs2!=CA^%c4zKedxcLotZOd z&iBnZXU_g>7$)(t*$jLeosov|s9_j((S*pDBO2uL5o?aT{?;$>`)v{{!J>tFdd&5Q z=g{G?zW$%at{=W~yUsY>y(ivx-{@+(={nkY)78~*%hPU)-lz2)*`Z{A9;~^o&prCQ z|CZ~Ruz8}z?fSgK?K*qX?YeZ{O+@FIq|m1u&U!+R_RY?BsA26QDp};9%}X=r*F9UM zT;Rxl*SaMX77|Rcw#Vtqx{YdI@1Z&pJk*@+4cK4&?k61|I@PNd&=X@K$z(E-SW|6u zL^xgBUrmgk8aq*~naw7epA@S&!VY*0i0L_>Ts!0Zh4HWMtD?loHf0mo!ImI;WcV;8 zt680`YywZ`hjD1Ih1O)Gc<~sN!^yTk7{9GBPuWYDG@f?9l}DF5w@bX%f?TwwPXNoypXuHJAzb-*va&IM!S6?_0r;DdYxCe945`SVh}>c-PiV-?rCZE15Ke2xKf z8TSf#_WLK>q<>?^jZrokf7FO@C4*hm!osXH+WE#}FS&-P%f0aVuKoByxmRp)pK;ca z;bHQe=i17sy=a-zfp4-?;^~XpV%_%rjJ@!|5gg!8)G@?ck1LO#v&YCdOnA)dvyMDT zo;rb0Px(B4&JKP)_;>3b*tD9Kr6;2 rvYrF~{%34j_p*wC&{5~_XYp{p`(~F?nfMR?0Gc5%&=i*V4^DRgz2PxX literal 0 HcmV?d00001 diff --git a/exe/start_front_engine.py b/exe/start_front_engine.py new file mode 100644 index 0000000..3694f70 --- /dev/null +++ b/exe/start_front_engine.py @@ -0,0 +1,3 @@ +from frontengine import start_front_engine + +start_front_engine() diff --git a/frontengine/__init__.py b/frontengine/__init__.py index e69de29..67e2697 100644 --- a/frontengine/__init__.py +++ b/frontengine/__init__.py @@ -0,0 +1,5 @@ +from frontengine.ui.main.main_ui import start_front_engine + +__all__ = [ + "start_front_engine" +] diff --git a/dev.toml b/pyproject.toml similarity index 76% rename from dev.toml rename to pyproject.toml index 0aae70f..23444da 100644 --- a/dev.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "frontengine_dev" -version = "0.0.1" +version = "0.0.3" authors = [ { name = "JE-Chen", email = "jechenmailman@gmail.com" }, ] @@ -14,7 +14,7 @@ dependencies = [ "PySide6", "qt-material", ] -description = "" +description = "FrontEngine is a tool allow you set Video or Image or GIF front of all window" requires-python = ">=3.8" license = { text = "MIT" } classifiers = [ @@ -28,9 +28,8 @@ classifiers = [ ] [project.urls] -Homepage = "" -Documentation = "" -Code = "" +Homepage = "https://github.com/Intergration-Automation-Testing/FrontEngine" +Code = "https://github.com/Intergration-Automation-Testing/FrontEngine" [project.readme] file = "README.md" diff --git a/stable.toml b/stable.toml index bd6deab..14db7a4 100644 --- a/stable.toml +++ b/stable.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "frontengine" -version = "0.0.1" +version = "0.0.3" authors = [ { name = "JE-Chen", email = "jechenmailman@gmail.com" }, ] @@ -14,12 +14,9 @@ dependencies = [ "PySide6", "qt-material", ] -description = "" +description = "FrontEngine is a tool allow you set Video or Image or GIF front of all window" requires-python = ">=3.8" license = { text = "MIT" } -dependencies = [ - "Pyside6" -] classifiers = [ "Programming Language :: Python :: 3.7", "Development Status :: 2 - Pre-Alpha", @@ -31,9 +28,8 @@ classifiers = [ ] [project.urls] -Homepage = "" -Documentation = "" -Code = "" +Homepage = "https://github.com/Intergration-Automation-Testing/FrontEngine" +Code = "https://github.com/Intergration-Automation-Testing/FrontEngine" [project.readme] file = "README.md" From 1a5749d70e06f94b7a3c7264e248ee509b7925cd Mon Sep 17 00:00:00 2001 From: JE-Chen Date: Sat, 6 May 2023 19:40:39 +0800 Subject: [PATCH 2/2] Update dev and stable version Update dev and stable version --- stable.toml => dev.toml | 6 +++--- frontengine/ui/main/main_ui.py | 2 -- pyproject.toml | 6 +++--- 3 files changed, 6 insertions(+), 8 deletions(-) rename stable.toml => dev.toml (92%) diff --git a/stable.toml b/dev.toml similarity index 92% rename from stable.toml rename to dev.toml index 14db7a4..e3e7fdd 100644 --- a/stable.toml +++ b/dev.toml @@ -5,8 +5,8 @@ requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] -name = "frontengine" -version = "0.0.3" +name = "frontengine_dev" +version = "0.0.4" authors = [ { name = "JE-Chen", email = "jechenmailman@gmail.com" }, ] @@ -18,7 +18,7 @@ description = "FrontEngine is a tool allow you set Video or Image or GIF front o requires-python = ">=3.8" license = { text = "MIT" } classifiers = [ - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Development Status :: 2 - Pre-Alpha", "Environment :: Win32 (MS Windows)", "Environment :: MacOS X", diff --git a/frontengine/ui/main/main_ui.py b/frontengine/ui/main/main_ui.py index c32eebc..c1f9484 100644 --- a/frontengine/ui/main/main_ui.py +++ b/frontengine/ui/main/main_ui.py @@ -49,5 +49,3 @@ def start_front_engine(): window.showMaximized() sys.exit(new_editor.exec()) - -start_front_engine() diff --git a/pyproject.toml b/pyproject.toml index 23444da..5f4f0bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,8 +5,8 @@ requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] -name = "frontengine_dev" -version = "0.0.3" +name = "frontengine" +version = "0.0.4" authors = [ { name = "JE-Chen", email = "jechenmailman@gmail.com" }, ] @@ -18,7 +18,7 @@ description = "FrontEngine is a tool allow you set Video or Image or GIF front o requires-python = ">=3.8" license = { text = "MIT" } classifiers = [ - "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.7", "Development Status :: 2 - Pre-Alpha", "Environment :: Win32 (MS Windows)", "Environment :: MacOS X",