直播更改日志

看我们在建什么,实时的。 每个功能,固定, 和改进都跨出平台.

17,874
变动共计
4,587
特征
4,515
修补
32
项目
按项目过滤
所有项目17,874AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService351InitializerService299KBService74KlusterServices542MCPGatewayService43MediaService460RAGService61SecurityService1,519TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,556kamo-login318kamo-marketing584kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,320kamo-signer-monorepo50kamolos102
按类型过滤
所有类型Build24CI522Chore670Docs226Feature4,587Fix4,515Other6,781Performance136Refactor273Revert23Style48Test68Upgrade1
February 4, 2026
Featurekamo-shared-library

获取线索时与供应商的关系

更新 leadsByOrganizationId( ) 以充电@ Translient sparker 字段,用于每个有供应商的线索。 这确保了供应商 和产品数据可供铅发组织制图.

Kamo·7mo ago
Featurekamo-internal

Improve lead grid with base30 IDs, raven icon, All Markets tab, and Market column

- Add toBase30() function for consistent ID representation across LeadManager and DocManager - Fix Grim status icon in tabs to use raven.ico (matching the datag...

kamo·7mo ago
February 3, 2026
Featurekamo-shared-library

添加状态、子状态、来源和日期创建字段

- 添加状态、子状态、来源、日期和主动字段到牵头实体 - 更新前端相容字段(状态、子状态、来源、)的铅DTO 创建At,主要联系人,销售商,产品,代理商 - 为前端兼容性而添加的初级连接DTO - 添加了 @ PrePersist 钩钩以设定新线索的默认值 此处修正了线索页数据网格, 显示用于联系人、 状态的空列, ...

Kamo·7mo ago
Featurekamo-shared-library

从字符串到雇员参考

- 将铅.指定用户(String)改为铅.指定雇员(雇员) - 添加铅分配实体,以跟踪任务历史 - 添加了各种派任类型的铅分配图 - 新增铅信用实体,用于跟踪雇员铅信用 - 增加领导拨款实体,以管理雇员领导拨款 - 增加相应的储存库和服务 - 更新领导服务,自动记录任务 - 更新了铅DTO,并要求为新结构提供DTO -...

Kamo·7mo ago
Otherkamo-analytics

Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1

Bumps @isaacs/brace-expansion from 5.0.0 to 5.0.1. --- updated-dependencies: - dependency-name: "@isaacs/brace-expansion" dependency-version: 5.0.1 depende...

dependabot[bot]·7mo ago
Otherkamo-internal

Add mouse proximity physics effect to connection lines

- Checks 5 points along the curve for proximity detection - 80px effect radius - lines respond when mouse gets close - Force strength uses inverse square fallof...

kamo·7mo ago
Otherkamo-internal

Destination task item border matches line animation

- New destinationGlow keyframe animation with 4 phases - Border color animates through amber → gold → white → gold → amber - Matches the flowing gradient animat...

kamo·7mo ago
Otherkamo-internal

Auto-expand answers and highlight connected items

Answer Input (TaskSideBar): - New answer field appears immediately when typing in last field - Focus stays in current field while typing - Empty placeholder fie...

kamo·7mo ago
Fixkamo-internal

New answer field maintains focus while typing

- Added local state for new answer input (newAnswerValue) - Input no longer triggers array update on each keystroke - Answer is added on blur or when pressing E...

kamo·7mo ago
Otherkamo-internal

Auto-expanding answers and consistent background colors

TaskSideBar (Task Item Settings): - Removed "Add Answer" button - Added auto-expanding input field that appears after existing answers - Typing in the placehold...

kamo·7mo ago
Fixkamo-internal

Restore task item selection while keeping line clicks

- SVG container back to pointer-events-none (allows clicks to pass through) - Hit area paths use pointer-events: stroke (only the line itself is clickable) - Vi...

kamo·7mo ago
Otherkamo-internal

Add clickable relationship lines with selection and delete

- Lines can now be clicked to select them (with wider hit area for easier clicking) - Selected lines highlight in amber/orange color with animated flowing gradi...

kamo·7mo ago
Otherkamo-internal

Update sidebar colors and adjust line positions

- TaskSideBar background now uses 18% primary (same as task items) - TaskSideBar text changed to gray-900 for contrast - Input fields use 8% primary background ...

kamo·7mo ago
Fixkamo-internal

Position logo between background color and grid lines

- Removed duplicate backgroundColor from canvas-container - Background color is on scroll container, logo is fixed above it - Grid lines overlay on top of logo ...

kamo·7mo ago
Otherkamo-internal

Update task item colors and add centered logo background

- TaskItem background now uses color-mix (18% primary) - 10% darker than canvas - Removed hardcoded bg-white from TaskItem in favor of dynamic primary color - A...

kamo·7mo ago
Otherkamo-internal

Use primary color from globals.css for canvas background

- Background color uses color-mix to create very light primary (8% primary + white) - Grid lines use color-mix with 15% primary color for subtle contrast - Matc...

kamo·7mo ago
Otherkamo-internal

Source bullets on top of task items, +15px offset

Visual improvements: - Split SVG into two layers: lines (z-index: 1, behind) and bullets (z-index: 10, on top) - Source bullets now render AFTER task items in D...

kamo·7mo ago
Otherkamo-internal

Fix connection line source position, improve sag, add smart spawning

Fixes: - Source position now correctly uses offsetX/offsetY from where connection icon was clicked (not hardcoded to task item width) - Both established conne...

kamo·7mo ago
Otherkamo-internal

Add visual improvements to connection lines

- Add source bullet (circle) at start of each line, at right edge of task item - Arrow now ends at left of title area (vertical center), with 3px gap from borde...

kamo·7mo ago
Otherkamo-internal

Complete rewrite of connection lines with direct DOM manipulation

Key changes: - Use direct DOM manipulation (setAttribute) instead of React state for line updates - Single rAF loop runs continuously and updates all path eleme...

kamo·7mo ago
Otherkamo-internal

Fix connection lines during drag and after drop

- Use uncontrolled Draggable (defaultPosition, no position) so DOM updates every frame during drag; sync state only on onStop - Store node positions in state ...

kamo·7mo ago
Otherkamo-internal

Fix connection lines via DOM position sync (rAF)

- Read node positions from DOM every frame so lines stay attached when source or destination task items are dragged - Remove liveDragPosition; use nodePositio...

kamo·7mo ago
February 2, 2026
Chorekamo-internal

Check in all pending changes

- Tasks page: connection lines update during drag (liveDragPosition), contrast fixes (title/task item labels dark on light) - Various app, API, components, and ...

kamo·7mo ago
Otherkamo-internal

Editable title, rename add button, fix connection line coordinates

- Make automation stream title editable (click title or pencil; autoFocus input) - Rename button to 'Add Task Item To Automation Stream' - Use scroll-container-...

kamo·7mo ago
Otherkamo-analytics

fix password default values

Francis Cao·7mo ago
OtherKlusterServices

Use VPN addresses for k0m1/k2m1 minio-public backends

- Endpoints: k0m1 10.8.0.1, k2m1 10.8.2.1 (VPN); k1m1 stays local - IngressRoute host match: 100.64.x.x -> 10.8.0.1, 10.8.1.1, 10.8.2.1

Kamo·7mo ago
January 31, 2026
Otherkamo-analytics

Update robots.txt fixes #3996

Brent Robert·7mo ago
January 30, 2026
Otherkamo-analytics

implement exclude bounces feature

Francis Cao·7mo ago
Otherkamo-analytics

add name to createShare

Francis Cao·7mo ago
Otherkamo-analytics

remove shareId from website POST

Francis Cao·7mo ago
January 29, 2026
Otherkamo-analytics

Merge branch 'analytics' of **************** into dev

Francis Cao·7mo ago
Otherkamo-analytics

Fix share parameter logic

Francis Cao·7mo ago
Otherkamo-analytics

Fixed mobile menus.

Mike Cao·7mo ago
Otherkamo-analytics

Remove events section from share page overview

Share page overview should look the same as normal app overview

Mike Cao·7mo ago

就像你看到的运输?

每一个都自动更新您工作空间的地盘。 开始自由,看它成长 一周又一周.

永远开始自由查看定价