Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

0.14.0 (Unreleased)
-------------------------
- Fix #53: Update user image

0.13.3 (July 8, 2026)
---------------------
- Fix: Make m150726_182212_namespace migration resilient to evolved schema (activity.module column no longer exists)
Expand Down
2 changes: 1 addition & 1 deletion models/Note.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function getPadUser()
$this->userColor = EtherpadHelper::getUserColor($user);

// extend array with user details from profile and user model
$editors[] = ['id' => $user->id, 'displayName' => $user->displayName, 'title' => $user->profile->title, 'image' => $user->getProfileImage()->getUrl(), 'url' => $user->getUrl(), 'color' => $this->userColor, 'online' => $this->getOnlineStatus($authorId)];
$editors[] = ['id' => $user->id, 'displayName' => $user->displayName, 'title' => $user->profile->title, 'image' => $user->image->getUrl(), 'url' => $user->getUrl(), 'color' => $this->userColor, 'online' => $this->getOnlineStatus($authorId)];
}
}
return $editors;
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"name": "Etherpad Notes",
"description": "Integrates the common Etherpad online editor in spaces.",
"keywords": ["etherpad", "notes"],
"version": "0.13.3",
"version": "0.14.0",
"humhub": {
"minVersion": "1.18"
"minVersion": "1.19"
},
"homepage": "https://github.com/humhub-contrib/notes",
"screenshots": ["resources/screen1.jpg", "resources/screen2.jpg"]
Expand Down
Loading