Skip to content

Commit

Permalink
feat: Adding additional logging and configuration (#11)
Browse files Browse the repository at this point in the history
* chore: moved version file
* chore: created symbolic link
* feat: upgraded logging and added config
* Fixed build errors
* Changed to Json logs & improved some events
* Replaced last references to log & expanded logging
* Fixed log level regression & formatted everything
* swapped version back keep original in backend
* bugfix: removed newline and fixed code to trim
* Added back trim fix
* Reset version to master
* chore: Fixed clippy lints
* Added scan interval to config
* Change the build-docker.sh file to return exit code from build (#18)
* Change the build-docker.sh file to return exit code from build
According to rust-lang/cargo#3377 (comment)
the cargo search doesn't update the index and later in the thread is pointed out this is unnecessary now. Which is good because this doesn't work anymore
* Version bump of Decky CLI to 0.0.2 should fix the Github Runner failing to register error status codes from `cargo build` in backend
* Refactored events
* chore: did some light refactoring
* chore: updated log
* chore: Updated Version
---------
Co-authored-by: jfreuden <jfreuden@alumni.cmu.edu>
  • Loading branch information
CEbbinghaus authored Mar 1, 2024
1 parent 1ec022e commit 7248d7a
Show file tree
Hide file tree
Showing 23 changed files with 603 additions and 314 deletions.
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
root = true
charset = utf-8
insert_final_newline = true
end_of_line = lf
insert_final_newline = true

[*.{json,js,ts,tsx,rs,codegen}]
indent_size = 4
indent_style = tab

[version]
insert_final_newline = false
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Download Decky CLI
run: |
mkdir /tmp/decky-cli
curl -L -o /tmp/decky-cli/decky "https://github.com/SteamDeckHomebrew/cli/releases/download/0.0.1-alpha.12/decky"
curl -L -o /tmp/decky-cli/decky "https://github.com/SteamDeckHomebrew/cli/releases/download/0.0.2/decky-linux-x86_64"
chmod +x /tmp/decky-cli/decky
echo "/tmp/decky-cli" >> $GITHUB_PATH
Expand Down
Loading

0 comments on commit 7248d7a

Please sign in to comment.