Update repository URL

This commit is contained in:
Florine W. Dekker 2022-02-28 16:50:44 +01:00
parent ad979c8680
commit 7f59c1c693
Signed by: FWDekker
GPG Key ID: D3DCFAA8A4560BE0
5 changed files with 14 additions and 14 deletions

View File

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2017 F.W. Dekker Copyright (c) 2017 Florine W. Dekker
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,12 +1,12 @@
{ {
"name": "simplify-fractions", "name": "simplify-fractions",
"version": "1.2.6", "version": "1.2.7",
"description": "Simple web tool for simplifying fractions", "description": "Simple web tool for simplifying fractions",
"author": "F.W. Dekker", "author": "Florine W. Dekker",
"browser": "dist/bundle.js", "browser": "dist/bundle.js",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git@git.fwdekker.com:FWDekker/simplify-fractions.git" "url": "git@git.fwdekker.com:tools/simplify-fractions.git"
}, },
"private": true, "private": true,
"scripts": { "scripts": {
@ -16,21 +16,21 @@
"deploy": "grunt deploy" "deploy": "grunt deploy"
}, },
"dependencies": { "dependencies": {
"katex": "^0.13.9" "katex": "^0.15.2"
}, },
"devDependencies": { "devDependencies": {
"css-loader": "^5.2.4", "css-loader": "^6.6.0",
"file-loader": "^6.2.0", "file-loader": "^6.2.0",
"grunt": "^1.4.0", "grunt": "^1.4.1",
"grunt-cli": "^1.4.2", "grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0", "grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0", "grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0", "grunt-contrib-watch": "^1.1.0",
"grunt-focus": "^1.0.0", "grunt-focus": "^1.0.0",
"grunt-text-replace": "^0.4.0", "grunt-text-replace": "^0.4.0",
"grunt-webpack": "^4.0.3", "grunt-webpack": "^5.0.0",
"style-loader": "^2.0.0", "style-loader": "^3.3.1",
"webpack": "^5.36.2", "webpack": "^5.69.1",
"webpack-cli": "^4.7.0" "webpack-cli": "^4.9.2"
} }
} }

View File

@ -3,7 +3,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="F.W. Dekker" /> <meta name="author" content="Florine W. Dekker" />
<meta name="application-name" content="Simplify fractions" /> <meta name="application-name" content="Simplify fractions" />
<meta name="description" content="Simplify fractions." /> <meta name="description" content="Simplify fractions." />
<meta name="theme-color" content="#0033cc" /> <meta name="theme-color" content="#0033cc" />

View File

@ -106,7 +106,7 @@ doAfterLoad(() => {
description: "Simple web tool for simplifying fractions" description: "Simple web tool for simplifying fractions"
})); }));
$("#footer").appendChild(footer({ $("#footer").appendChild(footer({
vcsURL: "https://git.fwdekker.com/FWDekker/simplify-fractions/", vcsURL: "https://git.fwdekker.com/tools/simplify-fractions/",
version: "v%%VERSION_NUMBER%%" version: "v%%VERSION_NUMBER%%"
})); }));