Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Leantime-v3.5.7.tar.gz | 2025-06-20 | 114.1 MB | |
Leantime-v3.5.7.zip | 2025-06-20 | 121.3 MB | |
Leantime v3.5.7 source code.tar.gz | 2025-06-20 | 28.5 MB | |
Leantime v3.5.7 source code.zip | 2025-06-20 | 29.3 MB | |
README.md | 2025-06-20 | 4.2 kB | |
Totals: 5 Items | 293.2 MB | 0 |
Highlights
- Adds support for Leantime MCP Plugin
- MyTodoWidget enhancements (infinity scroll)
Changes in this Release
History from v3.5.6
to @
Commits
- 1c49f48ab [Changelog CI] Add Changelog for Version 3.5.7
- 92d1521e8 task: version bump
- 04858678d fix: Todowidget hierarchy issue with nested milestones
- 4cb4de57d task: update packages
- 9e7dda0b2 task: Claude code updates
- e49616861 feat: Infinity scroll for tasks in todowidget to reduce html bloat
- 9d748a02e fix: dispatchFilter should return and not just echo
- 819fe669d feat: new countNested macros for collections
- a24ad442b fix: Ensure jsonrpc requests can be made from frontend
- ba55c55b0 Update Plugins
- f69ec85e5 task: update min stability setting
- 5e4f875c0 task: revert reverts
- 335b8e4b1 feat: claude code helpers
- 92168b96b feat: add link to marketplace in plugin news dropdown
- 7cec49247 feat: add flag to allow turning off sortable via event filter
- 318182edb task: add additional template events to mytodo widget
- 02aeb7b4e feat: new string mixins for AI support
- a8338bb74 task: clean up how we load plugin paths
- 818c7acb8 feat: Add support for routes.php files in plugins and modules (takes precedence over frontcontroller routing)
- a816dfb49 task: move config attribute to the appropriate folder
- 193b00c29 [Changelog CI] Add Changelog for Version 3.5.6
Contributors
- Marcel Folaron (19 commits)
Files
.claude/commands/conversation-analysis-system.md | 49 +
.idea/php.xml | 17 +-
CHANGELOG.md | 51 +
CLAUDE.md | 262 ++-
app/Command/ClearAll.php | 2 +-
app/Command/ClearLanguage.php | 2 +-
app/Core/Bootstrap/LoadConfig.php | 2 +-
app/Core/Configuration/AppSettings.php | 2 +-
.../Attributes/LaravelConfig.php | 2 +-
app/Core/Configuration/DefaultConfig.php | 2 +-
app/Core/Console/ConsoleKernel.php | 21 +-
app/Core/Events/EventDispatcher.php | 15 +-
app/Core/Http/HttpKernel.php | 38 +-
app/Core/Middleware/StartSession.php | 4 +-
app/Core/Plugins/Plugins.php | 68 +
app/Core/Routing/RouteLoader.php | 106 ++
app/Core/Support/LoadMacrosServiceProvider.php | 25 +-
app/Core/Support/StrMacros.php | 98 --
app/Core/Support/String/AlphaNumeric.php | 34 +
app/Core/Support/String/BeautifyFilename.php | 41 +
app/Core/Support/String/SanitizeFilename.php | 51 +
app/Core/Support/String/SanitizeForLLM.php | 94 ++
app/Core/Support/String/ToMarkdown.php | 126 ++
app/Core/UI/ViewsServiceProvider.php | 70 +-
app/Domain/Dashboard/Templates/home.blade.php | 2 +-
.../Templates/partials/latestPlugins.blade.php | 3 +-
app/Domain/Tickets/Repositories/Tickets.php | 11 +-
app/Domain/Tickets/Services/Tickets.php | 213 ++-
app/Domain/Widgets/Hxcontrollers/MyToDos.php | 47 +
.../Widgets/Templates/partials/myToDos.blade.php | 49 +-
.../Templates/partials/myToDosLoadMore.blade.php | 105 ++
.../Widgets/Templates/partials/todoItem.blade.php | 234 +--
app/Language/en-US.ini | 3 +
app/Plugins | 2 +-
blocklist.json | 2 +
composer.json | 19 +-
composer.lock | 1705 +++++++++++---------
package-lock.json | 4 +-
package.json | 2 +-
public/dist/mix-manifest.json | 32 +-
40 files changed, 2489 insertions(+), 1126 deletions(-)