Up version.

This commit is contained in:
Vitaliy Zarubin 2024-11-27 12:30:27 +03:00
parent 3cc90e15c2
commit 055e38fdfd
5 changed files with 10 additions and 10 deletions

View File

@ -2,8 +2,8 @@
### Subscribe and like!
[![Version](https://img.shields.io/badge/PyPI-3.2.9-blue?logo=pypi&logoColor=white)](https://pypi.org/project/aurora-cli/)
[![Releases](https://img.shields.io/badge/dynamic/json?url=https://api.github.com/repos/keygenqt/aurora-cli/releases/latest&query=assets[0][download_count]&label=Releases&color=blue&logo=github&prefix=3.2.9%20(&suffix=))](https://github.com/keygenqt/aurora-cli/releases)
[![Version](https://img.shields.io/badge/PyPI-3.2.10-blue?logo=pypi&logoColor=white)](https://pypi.org/project/aurora-cli/)
[![Releases](https://img.shields.io/badge/dynamic/json?url=https://api.github.com/repos/keygenqt/aurora-cli/releases/latest&query=assets[0][download_count]&label=Releases&color=blue&logo=github&prefix=3.2.10%20(&suffix=))](https://github.com/keygenqt/aurora-cli/releases)
![picture](https://github.com/keygenqt/aurora-cli/blob/main/data/images/banner/banner_1000.png?raw=true)

View File

@ -60,11 +60,11 @@ def flutter_project_format_common(
if files_h or files_cpp:
files = []
for file in files_h:
if '3rdpatry' in file:
if '3rdpatry' in str(file):
continue
files.append(file)
for file in files_cpp:
if '3rdpatry' in file:
if '3rdpatry' in str(file):
continue
files.append(file)
result = shell_cpp_format(files, flutter_tool_get_clang_format(is_bar))
@ -99,7 +99,7 @@ def flutter_project_check_format_common(
# if C++ files exist run clang-format format
if files_h or files_cpp:
for file in files_h:
if '3rdpatry' in file:
if '3rdpatry' in str(file):
continue
copy_file = path_temp_copy(file, temp_folder)
shell_cpp_format([copy_file], flutter_tool_get_clang_format(is_bar))
@ -108,7 +108,7 @@ def flutter_project_check_format_common(
echo_stdout(OutResultInfo(TextInfo.project_format_needs()))
return False
for file in files_cpp:
if '3rdpatry' in file:
if '3rdpatry' in str(file):
continue
copy_file = path_temp_copy(file, temp_folder)
shell_cpp_format([copy_file], flutter_tool_get_clang_format(is_bar))
@ -120,7 +120,7 @@ def flutter_project_check_format_common(
# if dart files exist run dart format
if files_dart:
for file in files_dart:
if '.dart_tool' in file:
if '.dart_tool' in str(file):
continue
path_temp_copy(file, temp_folder)
result = shell_dart_format(model.get_tool_dart(), str(temp_folder))

View File

@ -16,7 +16,7 @@ limitations under the License.
APP_NAME = 'aurora-cli'
APP_VERSION = '3.2.9'
APP_VERSION = '3.2.10'
PATH_DIR = '~/.aurora-cli'

View File

@ -109,5 +109,5 @@ sudo apt-get install \
Для запуска такого приложения достаточно выполнить:
```shell
python3 ~/Downloads/aurora-cli-3.2.9.pyz
python3 ~/Downloads/aurora-cli-3.2.10.pyz
```

View File

@ -26,7 +26,7 @@ limitations under the License.
setuptools.setup(
name='aurora-cli',
version='3.2.9',
version='3.2.10',
author='Vitaliy Zarubin',
author_email='keygenqt@gmail.com',
description='An application that simplifies the life of an application developer for the Aurora OS.',