Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
samdev-7 committed Jul 1, 2024
1 parent a00deeb commit ca2495e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to the "arcade-vsc" extension will be documented in this fil
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.4] - 2024-07-01

## Fixed

- Fixed potential issue with extra requests.

## [0.6.3] - 2024-07-01

## Fixed
Expand Down Expand Up @@ -99,6 +105,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release of the extension.
- Added the ability to track hack hour times in the status bar.

[0.6.4]: https://github.com/samdev-7/arcade-vsc/compare/v0.6.3...v0.6.4
[0.6.3]: https://github.com/samdev-7/arcade-vsc/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/samdev-7/arcade-vsc/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/samdev-7/arcade-vsc/compare/v0.6.0...v0.6.1
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "arcade-vsc",
"displayName": "Arcade VSC",
"description": "Visual Studio Code integration for Hack Club Arcade",
"version": "0.6.3",
"version": "0.6.4",
"engines": {
"vscode": "^1.90.0"
},
Expand Down
4 changes: 3 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,9 @@ async function loop(

if (key === "" || key === undefined || id === "" || id === undefined) {
statusBar.setSetup();
loop(context, sinceLastFetch + loopInterval, prevSession);
if (!forced) {
loop(context, sinceLastFetch + loopInterval, prevSession);
}
return;
}

Expand Down

0 comments on commit ca2495e

Please sign in to comment.