Skip to content
This repository has been archived by the owner on Apr 29, 2022. It is now read-only.

Commit

Permalink
15.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
quanglam2807 committed Nov 18, 2020
1 parent 3408a69 commit b8c17f4
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- run: yarn lint
- run: yarn test
- name: Get tag name
run: echo ::set-env name=CI_BUILD_TAG::${GITHUB_REF/refs\/tags\//}
run: echo CI_BUILD_TAG=${GITHUB_REF/refs\/tags\//} >> $GITHUB_ENV
if: startsWith(github.ref, 'refs/tags/')
- run: yarn dist
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- run: yarn lint
- run: yarn test
- name: Get tag name
run: echo ::set-env name=CI_BUILD_TAG::${GITHUB_REF/refs\/tags\//}
run: echo CI_BUILD_TAG=${GITHUB_REF/refs\/tags\//} >> $GITHUB_ENV
if: startsWith(github.ref, 'refs/tags/')
- run: yarn dist
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- run: yarn lint
- run: yarn test
- name: Get tag name
run: echo ::set-env name=CI_BUILD_TAG::${GITHUB_REF/refs\/tags\//}
run: echo CI_BUILD_TAG=${GITHUB_REF/refs\/tags\//} >> $GITHUB_ENV
if: startsWith(github.ref, 'refs/tags/')
shell: bash
- run: yarn dist
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Translatium",
"description": "Translate Any Languages like a Pro",
"version": "15.0.1",
"version": "15.1.0",
"main": "public/electron.js",
"repository": "https://github.com/translatium/translatium",
"author": {
Expand Down
2 changes: 0 additions & 2 deletions public/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,6 @@ if (!gotTheLock) {
});
mainWindowState.manage(mainWindow);

mainWindow.webContents.openDevTools({ mode: 'detach' });

mainWindow.on('enter-full-screen', () => {
mainWindow.webContents.send('set-is-full-screen', true);
});
Expand Down

0 comments on commit b8c17f4

Please sign in to comment.