-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added: build and todo target * pyradios new version * Added: click count for UUID changed welcome message slightly fixed some debug message error when playing last station. * Fix: empty alias entry issues * Fix: handled API call errors * Added: check ffplay runtime response exit app on runtime error from ffplay dead station play will not happen anymore * doc: default volume is 80 * docs: ✨ a star history graph added a project star history graph at the end of the README * refactor: removed unnecessary TODO comments * refactor: removed unnecessary comments * docs: ✨ changelog added for 2.6.0 * feat: ⚡ app version 2.6.0 #43 #46 #49 * fix: 🐛 errors while trying to add existing station in fav list fixed error while trying to add a station which is already in list. It will now show a message. * chore: 🔧 .editorconfig added * build: ✨ add code formatting and inting * build: 🎨 add black formatter module * style(isort): 🎨 sort imports with isorted tool sorted the import statements using isort tool * style(format): 🎨 minor code format * build: 🔥 remove sentry-sdk * style: 🔥 remove unnecessary commented lines * style: 🎨 minor style fixes * build(vscode): 💄 add fira code and minimap styles for future reference * style: 💄 remove color from panel title radioactive * perf(ffplay): ⚡ check ffplay errors after every 2 seconds instead of checking errors in an infinite loop, check will happend after every 2 seconds * build(editorconfig): add py related configs * docs: add new feature entries * fix: 🐛 fix error when no internet available fix unhandled errors while there is a connection issue and pyradios cannot connect to the API * docs(arch): add rough flowchart A rough code flowchart is added with drawio * build: 🔥 fix bug that caused format checks under build dir build dir is excluded from flake8 check * refactor(bare except): 🎨 handle bare exception format errors update bare exceptions and handled with debug information
- Loading branch information
Showing
18 changed files
with
782 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
|
||
[*.c] | ||
indent_size = 4 | ||
c_basic_style = linux | ||
c_brace_style = stroustrup | ||
|
||
[*.py] | ||
indent_size = 4 | ||
indent_style = space | ||
max_line_length = 79 | ||
|
||
[*.sh] | ||
indent_size = 2 | ||
shell = bash | ||
|
||
[Makefile] | ||
indent_style = tab | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.