Skip to content

Commit dac12f6

Browse files
authored
Merge pull request #50 from CodeDead/release/2.1.3
Release/2.1.3
2 parents af5aa92 + 16664e0 commit dac12f6

File tree

7 files changed

+3110
-4478
lines changed

7 files changed

+3110
-4478
lines changed

.yarn/plugins/yarn-up-all-plugin.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports={name:"yarn-up-all-plugin",factory:a=>{const{Configuration:b,Project:c}=a("@yarnpkg/core"),{Cli:d,Command:e}=a("clipanion"),f=a("yup"),g=a("@yarnpkg/plugin-essentials"),h=(a,b)=>a?`@${a}/${b}`:b,i=(a,b)=>{const c=[...a.values()];return b?c.filter(a=>{const c=h(a[1].scope,a[1].name);return!b.includes(c)}):c};class j extends e{async execute(){if(!g.default.commands)throw new Error("Yarn commands are not available!");const a=await b.find(this.context.cwd,this.context.plugins),{workspace:e}=await c.find(a,this.context.cwd),f=[...e.manifest.dependencies,...e.manifest.devDependencies],j=i(f,this.exclude?this.exclude.split(" "):null),k=j.map(a=>h(a[1].scope,a[1].name)),l=d.from(g.default.commands);return l.runExit(["up",...k],this.context)}}return j.addOption("exclude",e.String("--exclude")),j.addPath("up-all"),j.schema=f.object().shape({exclude:f.string()}),j.usage=e.Usage({description:"Yarn2 plugin that will upgrade all dependencies to their latest version with one simple command",details:"This command will upgrade all dependencies to their latest version",examples:[["Upgrade all dependencies","yarn up-all"],["Upgrade all dependencies but exclude a single dependency","yarn up-all --exclude react-dom"],["Upgrade all dependencies but exclude multiple dependencies","yarn up-all --exclude \"react-dom react-router\""]]}),{commands:[j]}}};
1+
module.exports={name:"yarn-up-all-plugin",factory:a=>{const{Configuration:b,Project:c}=a("@yarnpkg/core"),{Cli:d,Command:e}=a("clipanion"),f=a("yup"),g=a("@yarnpkg/plugin-essentials"),h=(a,b)=>a?`@${a}/${b}`:b,i=(a,b)=>{const c=[...a.values()];return b?c.filter(a=>{const c=h(a[1].scope,a[1].name);return!b.includes(c)}):c};class j extends e{async execute(){if(!g.default.commands)throw new Error("Yarn commands are not available!");const a=await b.find(this.context.cwd,this.context.plugins),{workspace:e}=await c.find(a,this.context.cwd),f=[...e.manifest.dependencies,...e.manifest.devDependencies],j=i(f,this.exclude?this.exclude.split(" "):null),k=j.map(a=>h(a[1].scope,a[1].name)),l=d.from(g.default.commands);return l.runExit(["up",...k],this.context)}}return j.addOption("exclude",e.String("--exclude")),j.addPath("up-all"),j.schema=f.object().shape({exclude:f.string()}),j.usage=e.Usage({description:"Yarn 2 plugin that will upgrade all dependencies to their latest version with one simple command",details:"This command will upgrade all dependencies to their latest version",examples:[["Upgrade all dependencies","yarn up-all"],["Upgrade all dependencies but exclude a single dependency","yarn up-all --exclude package"],["Upgrade all dependencies but exclude multiple dependencies","yarn up-all --exclude \"package1 package2\""]]}),{commands:[j]}}};

.yarn/releases/yarn-2.4.0.cjs renamed to .yarn/releases/yarn-2.4.2.cjs

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ nodeLinker: node-modules
22

33
plugins:
44
- path: .yarn/plugins/yarn-up-all-plugin.cjs
5-
spec: "https://github.com/e5mode/yarn-up-all/releases/download/1.0.3/index.js"
5+
spec: "https://github.com/e5mode/yarn-up-all/releases/download/1.0.5/index.js"
66

7-
yarnPath: .yarn/releases/yarn-2.4.0.cjs
7+
yarnPath: .yarn/releases/yarn-2.4.2.cjs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
![GitHub package.json version](https://img.shields.io/github/package-json/v/CodeDead/DeadHash-js)
66
![GitHub](https://img.shields.io/github/license/CodeDead/DeadHash-Js)
7-
![GitHub Releases (by Release)](https://img.shields.io/github/downloads/CodeDead/DeadHash-js/2.1.2/total)
7+
![GitHub Releases (by Release)](https://img.shields.io/github/downloads/CodeDead/DeadHash-js/2.1.3/total)
88

99
DeadHash is a free and open-source utility to calculate file and text hashes and checksums. The following calculations are supported:
1010

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deadhash",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "File and text hash calculator",
55
"homepage": "./",
66
"private": true,
@@ -35,17 +35,17 @@
3535
},
3636
"main": "public/electron.js",
3737
"dependencies": {
38-
"@material-ui/core": "^4.11.3",
38+
"@material-ui/core": "^4.11.4",
3939
"@material-ui/icons": "^4.11.2",
4040
"crc": "^3.8.0",
4141
"cross-env": "^7.0.3",
42-
"electron-is-dev": "^1.2.0",
43-
"react": "^17.0.1",
42+
"electron-is-dev": "^2.0.0",
43+
"react": "^17.0.2",
4444
"react-contexify": "^5.0.0",
45-
"react-dom": "^17.0.1",
45+
"react-dom": "^17.0.2",
4646
"react-router": "^5.2.0",
4747
"react-router-dom": "^5.2.0",
48-
"react-scripts": "^4.0.2"
48+
"react-scripts": "^4.0.3"
4949
},
5050
"scripts": {
5151
"react-start": "react-scripts start",
@@ -70,15 +70,15 @@
7070
]
7171
},
7272
"devDependencies": {
73-
"concurrently": "^5.3.0",
74-
"electron": "^11.2.3",
75-
"electron-builder": "^22.9.1",
76-
"eslint": "^7.19.0",
73+
"concurrently": "^6.2.0",
74+
"electron": "^13.1.1",
75+
"electron-builder": "^22.10.5",
76+
"eslint": "^7.28.0",
7777
"eslint-config-airbnb": "^18.2.1",
78-
"eslint-plugin-import": "^2.22.1",
78+
"eslint-plugin-import": "^2.23.4",
7979
"eslint-plugin-jsx-a11y": "^6.4.1",
80-
"eslint-plugin-react": "^7.22.0",
80+
"eslint-plugin-react": "^7.24.0",
8181
"eslint-plugin-react-hooks": "^4.2.0",
82-
"wait-on": "^5.2.1"
82+
"wait-on": "^5.3.0"
8383
}
8484
}

src/utils/Updater/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const Updater = (os) => {
3333
version: null,
3434
};
3535

36-
if (isNewer('2.1.2', `${platform.version.majorVersion}.${platform.version.minorVersion}.${platform.version.buildVersion}.${platform.version.revisionVersion}`)) {
36+
if (isNewer('2.1.3', `${platform.version.majorVersion}.${platform.version.minorVersion}.${platform.version.buildVersion}.${platform.version.revisionVersion}`)) {
3737
data.updateAvailable = true;
3838
}
3939

0 commit comments

Comments
 (0)