From d9c879ba88e0d937987f65f1543f3f9e1d38a85e Mon Sep 17 00:00:00 2001 From: blastik <3662083+blastik@users.noreply.github.com> Date: Fri, 10 Jul 2026 17:44:03 +0200 Subject: [PATCH 1/4] feat: add MyInvestor Importer to community directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Registers the MyInvestor Importer as a community directory listing (community/directory/) — a discovery entry, not a Verified Community submission. --- community/README.md | 1 + .../myinvestor-importer-addon/addon.store.json | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 community/directory/myinvestor-importer-addon/addon.store.json diff --git a/community/README.md b/community/README.md index 36f4049..755957c 100644 --- a/community/README.md +++ b/community/README.md @@ -7,6 +7,7 @@ Community addons are author-maintained. Unverified directory entries are for dis | Asset Amount & Cash Timeline | bryanrvo1511 | Tracks cash balance and asset accumulation over time with transaction-level insights and holding timelines. | community | unverified | active | | [Repo](https://github.com/bryanrvo/Asset-amount-Cash-Timeline-add-on) | | Dividends Importer | kwaich | Finds and adds missing dividend activities by fetching historical data from Yahoo Finance. | community | unverified | active | | [Repo](https://github.com/kwaich/dividend-tracker) | | Lunch Money Addon | elson8012 | Imports accounts and balances from Lunch Money into Wealthfolio with a one-click update. | community | unverified | active | | [Repo](https://github.com/elson/lunchmoney-addon) | +| MyInvestor Importer | blastik | Import MyInvestor (Inversis) exports into Wealthfolio. Merges the cuenta corriente and fondos exports into buy/sell/switch/cash activities on a single account. | community | unverified | active | | [Repo](https://github.com/blastik/myinvestor-importer-addon) | | Value Averaging Addon | wujoe | Runs a value averaging strategy with portfolio weights, top-up rules, growth schedules, and per-ticker investment amounts. | community | unverified | active | | [Repo](https://github.com/WuJoe826/Value-Averaging-Addon) | | Wealthfolio Dividend Tracker | ragnarok896209 | Dividend tracking by year, month, and security with stacked bar charts and per-account tables. | community | unverified | active | | [Repo](https://github.com/ragnarok-89/Wealthfolio-Dividend-Tracker) | | Wealthfolio Rebalancer | ibalboteo | Portfolio rebalancing addon for target allocations and long-term portfolio planning. | community | unverified | active | | [Repo](https://github.com/ibalboteo/wealthfolio-rebalancer) | diff --git a/community/directory/myinvestor-importer-addon/addon.store.json b/community/directory/myinvestor-importer-addon/addon.store.json new file mode 100644 index 0000000..c399d04 --- /dev/null +++ b/community/directory/myinvestor-importer-addon/addon.store.json @@ -0,0 +1,15 @@ +{ + "$schema": "../../../schemas/addon-store.schema.json", + "id": "myinvestor-importer-addon", + "name": "MyInvestor Importer", + "description": "Import MyInvestor (Inversis) exports into Wealthfolio. Merges the cuenta corriente and fondos exports into buy/sell/switch/cash activities on a single account.", + "author": { + "name": "blastik", + "url": "https://github.com/blastik" + }, + "trust": "community", + "verification": "unverified", + "status": "active", + "tags": ["import", "myinvestor", "inversis"], + "repository": "https://github.com/blastik/myinvestor-importer-addon" +} From 0a014c0907b708ca7b4b35416dd2b24808f8f5cd Mon Sep 17 00:00:00 2001 From: blastik <3662083+blastik@users.noreply.github.com> Date: Fri, 21 Aug 2026 10:00:02 +0200 Subject: [PATCH 2/4] chore: retrigger CI now that the addon repo has a LICENSE file From fc0a2246f714a13f11f20f3120a9acbbddcb129c Mon Sep 17 00:00:00 2001 From: Aziz FADIL Date: Fri, 21 Aug 2026 13:22:47 -0400 Subject: [PATCH 3/4] chore(addons): re-derive now that the repository has a licence CI validates against the committed derived.json and never touches the network, so it could not see the LICENSE file that landed this morning. Re-running the derivation picks it up: myinvestor-importer-addon now resolves as MIT, SDK 3.6.1, no network permission. --- community/derived.json | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/community/derived.json b/community/derived.json index 1f7c15f..25c93c9 100644 --- a/community/derived.json +++ b/community/derived.json @@ -1,5 +1,5 @@ { - "generatedAt": "2026-08-21T00:26:45.357Z", + "generatedAt": "2026-08-21T17:22:40.015Z", "addons": { "asset-and-cash-timeline": { "id": "asset-and-cash-timeline", @@ -222,9 +222,9 @@ "runtimeId": "myinvestor-importer", "repository": "https://github.com/blastik/myinvestor-importer-addon", "defaultBranch": "main", - "commit": "7904e40aceebdca21412edba4fffd1aa0d8a040a", - "license": null, - "lastPushedAt": "2026-07-10", + "commit": "0cfd17fe4e356458a90f2cad52344e56444cca38", + "license": "MIT", + "lastPushedAt": "2026-08-21", "manifest": { "name": "MyInvestor Importer", "version": "1.0.1", @@ -275,9 +275,7 @@ "detail": "Built against SDK 3.6.1." }, "notices": [], - "problems": [ - "repository has no detectable licence, so users have no right to use the addon" - ], + "problems": [], "warnings": [ "declares the secrets permission but not network, so any service it stores credentials for is unreachable", "manifest id \"myinvestor-importer\" differs from the listing id \"myinvestor-importer-addon\"" From ba6031553c97cd1a1adeda1e47b4963f283022bd Mon Sep 17 00:00:00 2001 From: Aziz FADIL Date: Fri, 21 Aug 2026 13:32:40 -0400 Subject: [PATCH 4/4] chore(addons): regenerate the directory table for the detected licence --- community/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/README.md b/community/README.md index 8ef2de1..989ee7f 100644 --- a/community/README.md +++ b/community/README.md @@ -14,7 +14,7 @@ Listing requirements and the publisher attestation are in | Dividends Importer | kwaich | pending | none | SDK 3.6+ | [Repo](https://github.com/kwaich/dividend-tracker) | | Wealthfolio Dividend Tracker | ragnarok896209 | pending | none | pre-3.6 — rebuild needed | [Repo](https://github.com/ragnarok-89/Wealthfolio-Dividend-Tracker) | | Lunch Money Addon | elson8012 | pending | MIT | pre-3.6 — rebuild needed | [Repo](https://github.com/elson/lunchmoney-addon) | -| MyInvestor Importer | blastik | active | none | SDK 3.6+ | [Repo](https://github.com/blastik/myinvestor-importer-addon) | +| MyInvestor Importer | blastik | active | MIT | SDK 3.6+ | [Repo](https://github.com/blastik/myinvestor-importer-addon) | | Wealthfolio Rebalancer | ibalboteo | pending | none | SDK 3.6+ | [Repo](https://github.com/ibalboteo/wealthfolio-rebalancer) | | Value Averaging Addon | wujoe | pending | MIT | pre-3.6 — rebuild needed | [Repo](https://github.com/WuJoe826/Value-Averaging-Addon) |