Skip to content

Commit 185be37

Browse files
committed
bumped package.json file version to 2.0.3
1 parent 4e1d052 commit 185be37

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.erb/configs/webpack.config.renderer.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const configuration = {
4040

4141
output: {
4242
path: path.join(webpackPaths.distRendererPath, './'),
43-
publicPath: path.join(webpackPaths.distRendererPath, './'),
43+
publicPath: './',
4444
filename: '[name].renderer.dev.js',
4545
// library: {
4646
// type: 'umd',

.erb/configs/webpack.config.renderer.prod.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const configuration = {
4747
},
4848
output: {
4949
path: path.join(webpackPaths.distRendererPath, './'),
50-
publicPath: path.join(webpackPaths.distRendererPath, './'),
50+
publicPath: './',
5151
filename: '[name].renderer.prod.js',
5252
clean: true
5353
// library: {

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
with:
6666
name: 'docs_build'
6767
path: |
68-
./docs/_build/latex/CpgUIClient.pdf
68+
./docs/_build/latex/cpguiclient.pdf
6969
retention-days: 1
7070

7171
- name: Install Node.js, NPM and Yarn
@@ -78,8 +78,8 @@ jobs:
7878
npm install --legacy-peer-deps
7979
npm --prefix ./release/app install
8080
npm run build
81-
npm --prefix ./release/app install @electron-forge/cli -D
82-
npm --prefix ./release/app install @electron-forge/plugin-auto-unpack-natives -D
81+
npm --prefix ./release/app install @electron-forge/cli@6.0.5 -D
82+
npm --prefix ./release/app install @electron-forge/plugin-auto-unpack-natives@6.0.5 -D
8383
cd ./release/app && npx electron-forge import && cp ../../forge.config.template.js ./forge.config.js && npx electron-forge make
8484
8585
- name: 'Upload Ubuntu Artifacts'
@@ -123,5 +123,5 @@ jobs:
123123
prerelease: true
124124
files: |
125125
./ubuntu_build/**/ui-client*.*
126-
./docs_build/CpgUIClient.pdf
126+
./docs_build/cpguiclient.pdf
127127
# ./macos_build/ui-client*.*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ npm run build
9494
1. run:
9595

9696
```commandline
97-
npm --prefix ./release/app install @electron-forge/cli -D
97+
npm --prefix ./release/app install @electron-forge/cli@6.0.5 -D
9898
```
9999

100100
```commandline
101-
npm --prefix ./release/app install @electron-forge/plugin-auto-unpack-natives -D
101+
npm --prefix ./release/app install @electron-forge/plugin-auto-unpack-natives@6.0.5 -D
102102
```
103103

104104
### Import The Project Into Electron Forge

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui-client",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "The Bug Hunter's Workbench",
55
"repository": {
66
"type": "git",

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui-client",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "The Bug Hunter's Workbench",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)