File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 20
20
- id : check
21
21
working-directory : .
22
22
run : |
23
- if [[ "${{ github.event.release.tag_name }}" == v0.8 .*-vscode ]]; then
23
+ if [[ "${{ github.event.release.tag_name }}" == v1.0 .*-vscode ]]; then
24
24
echo "should_run=true" >> $GITHUB_OUTPUT
25
25
else
26
26
echo "should_run=false" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 20
20
- id : check
21
21
working-directory : .
22
22
run : |
23
- if [[ "${{ github.event.release.tag_name }}" == v0.9 .*-vscode ]]; then
23
+ if [[ "${{ github.event.release.tag_name }}" == v1.1 .*-vscode ]]; then
24
24
echo "should_run=true" >> $GITHUB_OUTPUT
25
25
else
26
26
echo "should_run=false" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 2
2
"name" : " continue" ,
3
3
"icon" : " media/icon.png" ,
4
4
"author" : " Continue Dev, Inc" ,
5
- "version" : " 1.1.0 " ,
5
+ "version" : " 1.1.2 " ,
6
6
"repository" : {
7
7
"type" : " git" ,
8
8
"url" : " https://github.com/continuedev/continue"
Original file line number Diff line number Diff line change 1
1
import { History } from "../../components/History" ;
2
- import { TabBar } from "../../components/TabBar/TabBar" ;
3
2
import { Chat } from "./Chat" ;
4
3
5
4
export default function GUI ( ) {
@@ -9,7 +8,8 @@ export default function GUI() {
9
8
< History />
10
9
</ aside >
11
10
< main className = "no-scrollbar flex flex-1 flex-col overflow-y-auto" >
12
- < TabBar />
11
+ { /* Temporarily commenting out until a near-term release when we can at least add an option for users to disable the tab bar */ }
12
+ { /* <TabBar /> */ }
13
13
< Chat />
14
14
</ main >
15
15
</ div >
You can’t perform that action at this time.
0 commit comments