mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-23 07:19:28 -07:00
Merge branch 'dev' into js-and-css-impromement
This commit is contained in:
commit
3f352c5930
19 changed files with 22 additions and 20 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (C) 2020 Yarmo Mackenbach
|
# Copyright (C) 2021 Yarmo Mackenbach
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify it under
|
# This program is free software: you can redistribute it and/or modify it under
|
||||||
# the terms of the GNU Affero General Public License as published by the Free
|
# the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (C) 2020 Yarmo Mackenbach
|
# Copyright (C) 2021 Yarmo Mackenbach
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify it under
|
# This program is free software: you can redistribute it and/or modify it under
|
||||||
# the terms of the GNU Affero General Public License as published by the Free
|
# the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
@ -36,5 +36,7 @@
|
||||||
\.drone\.yml
|
\.drone\.yml
|
||||||
package.json
|
package.json
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
yarn\.lock
|
||||||
|
robots\.txt
|
||||||
\.editorconfig
|
\.editorconfig
|
||||||
Dockerfile
|
Dockerfile
|
||||||
|
|
|
@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.4.0] - 2021-01-11
|
||||||
### Added
|
### Added
|
||||||
- Support for signature profiles
|
- Support for signature profiles
|
||||||
- Robots.txt
|
- Robots.txt
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
2
index.js
2
index.js
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "keyoxide-web",
|
"name": "keyoxide-web",
|
||||||
"version": "2.3.4",
|
"version": "2.4.0",
|
||||||
"description": "A modern, secure and privacy-friendly platform to establish your decentralized online identity",
|
"description": "A modern, secure and privacy-friendly platform to establish your decentralized online identity",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2020 Yarmo Mackenbach
|
Copyright (C) 2021 Yarmo Mackenbach
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it under
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
the terms of the GNU Affero General Public License as published by the Free
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
|
|
@ -29,9 +29,7 @@ block content
|
||||||
a(href='https://codeberg.org/keyoxide/web') Codeberg
|
a(href='https://codeberg.org/keyoxide/web') Codeberg
|
||||||
| . It uses
|
| . It uses
|
||||||
a(href='https://github.com/openpgpjs/openpgpjs') openpgp.js
|
a(href='https://github.com/openpgpjs/openpgpjs') openpgp.js
|
||||||
| (version
|
| for all cryptographic operations.
|
||||||
a(href='https://github.com/openpgpjs/openpgpjs/releases/tag/v4.10.7') 4.10.7
|
|
||||||
| ) for all cryptographic operations.
|
|
||||||
|
|
||||||
h2 Features
|
h2 Features
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ main.container
|
||||||
a(href='https://drone.keyoxide.org/keyoxide/web/') CI/CD
|
a(href='https://drone.keyoxide.org/keyoxide/web/') CI/CD
|
||||||
| -
|
| -
|
||||||
a(href='https://fosstodon.org/@keyoxide') Mastodon
|
a(href='https://fosstodon.org/@keyoxide') Mastodon
|
||||||
p © 2020 Keyoxide contributors
|
p © 2021 Keyoxide contributors
|
||||||
|
|
||||||
script(type='application/javascript' src='/static/openpgp.min.js' charset='utf-8')
|
script(type='application/javascript' src='/static/openpgp.min.js' charset='utf-8')
|
||||||
script(type='application/javascript' src='/static/qrcode.min.js' charset='utf-8')
|
script(type='application/javascript' src='/static/qrcode.min.js' charset='utf-8')
|
||||||
|
|
Loading…
Reference in a new issue