Releases: wolf-leo/gocron
v2.0.7
feat(task): add sort field to task model and related UI components
新增 task
数据表 sort
字段用于排序: ALTER TABLE task ADD sort int NOT NULL DEFAULT '0';
Add a new 'sort' field to the Task model and update the corresponding UI components to
reflect this change. The 'sort' field is intended to help with the organization and
prioritization of tasks in the system.
BREAKING CHANGE: The addition of the 'sort' field may affect existing databases and
require updates to schema migrations.
v2.0.6
v2.0.5
fix(host): ensure unique host name based on name and port
Previously, the Host model's NameExists method only checked for the uniqueness
of the host name. This commit extends the check to also include the port number,
preventing the possibility of two hosts having the same name but different ports.
The update affects both the model logic and the associated router check.
v2.0.4
chore(release): bump version to v2.0.4
Update the agent Dockerfile and package script to use the new version v2.0.4.
This change involves updating the ENV variable in the Dockerfile and the VERSION
variable in the package script to reflect the new version number.
v2.0.3
chore(release): bump version to v2.0.3
Update version number displayed in footer and table columns, as well as the
version in package.sh. Adjust padding and font sizes for improved readability
in the UI. Add admin ID to task log search parameters and ensure consistency
in table column width definitions.
v2.0.2
feat(web): update footer and table column alignments
- Add version information to the footer.
- Adjust the padding and positioning of the main container.
- Center align table column labels and set fixed widths.- Remove unnecessary comments and update Dockerfile for agent.
- Add and modify CSS styles for improved layout appearance.