Skip to content

Commit

Permalink
Up version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Zarubin committed Nov 27, 2024
1 parent 3cc90e1 commit 055e38f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down Expand Up @@ -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))
Expand All @@ -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))
Expand All @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion aurora_cli/src/base/constants/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

APP_NAME = 'aurora-cli'

APP_VERSION = '3.2.9'
APP_VERSION = '3.2.10'

PATH_DIR = '~/.aurora-cli'

Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setuptools.setup(
name='aurora-cli',
version='3.2.9',
version='3.2.10',
author='Vitaliy Zarubin',
author_email='[email protected]',
description='An application that simplifies the life of an application developer for the Aurora OS.',
Expand Down

0 comments on commit 055e38f

Please sign in to comment.