Compare commits

...

2 Commits

Author SHA1 Message Date
Florine W. Dekker d8fffc5549
Add license 2021-07-06 10:55:46 +02:00
Florine W. Dekker 0f9d15018d
Bump dependencies
You happy now, dependabot?
2021-07-06 10:45:01 +02:00
7 changed files with 41 additions and 20 deletions

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 F.W. Dekker
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,8 +1,8 @@
{
"name": "fwdekker.com",
"version": "0.40.9",
"version": "0.40.10",
"description": "The source code of [my personal website](https://fwdekker.com/).",
"author": "Felix W. Dekker",
"author": "F.W. Dekker",
"browser": "dist/bundle.js",
"repository": {
"type": "git",
@ -24,27 +24,27 @@
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.18",
"@types/chai": "^4.2.19",
"@types/js-cookie": "^2.2.6",
"@types/mocha": "^8.2.2",
"@types/semver": "^6.2.1",
"chai": "^4.3.4",
"grunt": "^1.4.0",
"grunt-cli": "^1.4.2",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-focus": "^1.0.0",
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^4.0.3",
"jsdom": "^16.5.3",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.4.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"webpack": "^5.42.1",
"webpack-cli": "^4.7.2"
}
}

View File

@ -3,13 +3,13 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="author" content="F.W. Dekker" />
<meta name="application-name" content="FWDekker" />
<meta name="description" content="Felix W. Dekker's personal website" />
<meta name="description" content="F.W. Dekker's personal website" />
<meta name="theme-color" content="#0033cc" />
<meta property="og:url" content="https://fwdekker.com/" />
<meta property="og:title" content="FWDekker" />
<meta property="og:description" content="Felix W. Dekker's personal website">
<meta property="og:description" content="F.W. Dekker's personal website">
<meta property="og:locale" content="en_GB" />
<title>FWDekker</title>

View File

@ -39,13 +39,13 @@ export class FileSystem {
[
new User("root", HashProvider.default.hashPassword("g9PjKu"), "/root",
"You're a hacker, Harry!"),
new User("felix", HashProvider.default.hashPassword("password"), undefined,
new User("f", HashProvider.default.hashPassword("password"), undefined,
"Who are <i>you</i>?")
].map(it => User.toString(it)).join("\n") + "\n"
),
}),
"home": new Directory({
"felix": new Directory({
"f": new Directory({
"pgp-key.pub": new File("https://fwdkr.co/pgp", "lnk"),
"privacy-policy.lnk": new File("https://fwdekker.com/privacy/"),
"resume.pdf": new File("https://fwdkr.co/cv", "lnk"),

View File

@ -161,10 +161,10 @@ export class Persistence {
// Check user in environment
if (!environment.has("user")) {
environment.set("user", "felix");
environment.set("user", "f");
} else if (environment.get("user") !== "" && !userList.has(environment.get("user"))) {
console.warn(`Invalid user '${environment.get("user")}' in environment.`);
environment.set("user", "felix");
environment.set("user", "f");
}
// Set home directory

View File

@ -7,7 +7,7 @@
"orientation": "any",
"theme_color": "#0033cc",
"background_color": "#000000",
"description": "Felix W. Dekker's personal website",
"description": "F.W. Dekker's personal website",
"icons": [
{
"src": "icon_128x128.png",