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

Commit

Permalink
0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
samdev-7 committed Jul 2, 2024
1 parent 1b8c874 commit 4c48b82
Show file tree
Hide file tree
Showing 4 changed files with 11 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).

## Pre-release [0.7.1] - 2024-07-02

## Added

- Added version number to user agent.

## Pre-release [0.7.0] - 2024-07-02

## Added
Expand Down Expand Up @@ -111,6 +117,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.7.1]: https://github.com/samdev-7/arcade-vsc/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/samdev-7/arcade-vsc/compare/v0.6.4...v0.7.0
[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
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.7.0",
"version": "0.7.1",
"engines": {
"vscode": "^1.90.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { AxiosResponse, AxiosError } from "axios";
const HH_ENDPOINT = "https://hackhour.hackclub.com";

axios.interceptors.request.use((config) => {
config.headers["User-Agent"] = "Arcade VSC Extension";
config.headers["User-Agent"] = "Arcade VSC Extension/0.7.1";
return config;
});

Expand Down

0 comments on commit 4c48b82

Please sign in to comment.