Update version

This commit is contained in:
Michał 2023-04-20 16:57:28 +00:00
parent 9a18b84c4f
commit cd3c739398
4 changed files with 15 additions and 10 deletions

View file

@ -61,7 +61,7 @@ window.onload = function () {
}
infoButton.onclick = function () {
popUpShow('OnlyLegs',
'<a href="https://github.com/Fluffy-Bean/onlylegs">v0.1.0</a> ' +
'<a href="https://github.com/Fluffy-Bean/onlylegs">v0.1.2</a> ' +
'using <a href="https://phosphoricons.com/">Phosphoricons</a> and Flask.' +
'<br>Made by Fluffy and others with ❤️');
}

6
poetry.lock generated
View file

@ -959,14 +959,14 @@ files = [
[[package]]
name = "setuptools"
version = "67.6.1"
version = "67.7.0"
description = "Easily download, build, install, upgrade, and uninstall Python packages"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "setuptools-67.6.1-py3-none-any.whl", hash = "sha256:e728ca814a823bf7bf60162daf9db95b93d532948c4c0bea762ce62f60189078"},
{file = "setuptools-67.6.1.tar.gz", hash = "sha256:257de92a9d50a60b8e22abfcbb771571fde0dbf3ec234463212027a4eeecbe9a"},
{file = "setuptools-67.7.0-py3-none-any.whl", hash = "sha256:888be97fde8cc3afd60f7784e678fa29ee13c4e5362daa7104a93bba33646c50"},
{file = "setuptools-67.7.0.tar.gz", hash = "sha256:b7e53a01c6c654d26d2999ee033d8c6125e5fa55f03b7b193f937ae7ac999f22"},
]
[package.extras]

View file

@ -1,10 +1,11 @@
[tool.poetry]
name = "onlylegs"
version = "0.1.0"
description = "Gallery built for fast and simple image management"
authors = ["Fluffy-Bean <michal-gdula@protonmail.com>"]
name = "OnlyLegs"
version = "0.1.2"
repository = "https://github.com/Fluffy-Bean/onlylegs"
license = "MIT"
readme = "README.md"
description = "Gallery built for fast and simple image management"
authors = ["Fluffy-Bean <michal-gdula@protonmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"

8
run.py
View file

@ -3,10 +3,14 @@ Run script for OnlyLegs
"""
from setup.args import PORT, ADDRESS, WORKERS, DEBUG
from setup.configuration import Configuration
import importlib.metadata
__version__ = importlib.metadata.version("OnlyLegs")
print(
"""
f"""
:::::::: :::: ::: ::: ::: ::: ::: ::::::::: ::::::::: ::::::::
:+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+:
+:+ +:+ :+:+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
@ -15,7 +19,7 @@ print(
#+# #+# #+# #+#+# #+# #+# #+# #+# #+# #+# #+# #+#
######## ### #### ########## ### ########## ######### ######### ########
Created by Fluffy Bean - Version 0.1.0
Created by Fluffy Bean - {__version__}
"""
)