Compare commits

..

No commits in common. "v0.1.0-develop.9" and "v0.1.0-develop.8" have entirely different histories.

4 changed files with 3 additions and 15 deletions

View File

@ -1,10 +1,3 @@
# [0.1.0-develop.9](https://git.lumeweb.com/LumeWeb/kernel-ipfs/compare/v0.1.0-develop.8...v0.1.0-develop.9) (2023-07-29)
### Features
* add name api call ([005a128](https://git.lumeweb.com/LumeWeb/kernel-ipfs/commit/005a128a2c159ca88199bb85598a24fd0c9b2da6))
# [0.1.0-develop.8](https://git.lumeweb.com/LumeWeb/kernel-ipfs/compare/v0.1.0-develop.7...v0.1.0-develop.8) (2023-07-24) # [0.1.0-develop.8](https://git.lumeweb.com/LumeWeb/kernel-ipfs/compare/v0.1.0-develop.7...v0.1.0-develop.8) (2023-07-24)

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@lumeweb/kernel-ipfs", "name": "@lumeweb/kernel-ipfs",
"version": "0.1.0-develop.9", "version": "0.1.0-develop.8",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lumeweb/kernel-ipfs", "name": "@lumeweb/kernel-ipfs",
"version": "0.1.0-develop.9", "version": "0.1.0-develop.8",
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"@helia/ipns": "^1.1.3", "@helia/ipns": "^1.1.3",

View File

@ -1,6 +1,6 @@
{ {
"name": "@lumeweb/kernel-ipfs", "name": "@lumeweb/kernel-ipfs",
"version": "0.1.0-develop.9", "version": "0.1.0-develop.8",
"type": "module", "type": "module",
"readme": "ERROR: No README data found!", "readme": "ERROR: No README data found!",
"repository": { "repository": {

View File

@ -60,7 +60,6 @@ BigInt.prototype.toJSON = function () {
addHandler("presentKey", handlePresentKey); addHandler("presentKey", handlePresentKey);
addHandler("register", handleRegister); addHandler("register", handleRegister);
addHandler("status", handleStatus, { receiveUpdates: true }); addHandler("status", handleStatus, { receiveUpdates: true });
addHandler("name", handleName);
addHandler("ready", handleReady); addHandler("ready", handleReady);
addHandler("stat", handleStat); addHandler("stat", handleStat);
addHandler("ls", handleLs, { receiveUpdates: true }); addHandler("ls", handleLs, { receiveUpdates: true });
@ -352,7 +351,3 @@ async function handleStatus(aq: ActiveQuery) {
sendUpdate(); sendUpdate();
} }
function handleName(aq: ActiveQuery) {
aq.respond("IPFS");
}