chore: release version 1.4.0

This commit is contained in:
xiaoxixi 2026-07-28 23:51:15 +08:00
parent efb0e7f0b0
commit 4cc4ff6772
5 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "picobot" name = "picobot"
version = "1.3.1" version = "1.4.0"
edition = "2024" edition = "2024"
[dependencies] [dependencies]

View File

@ -90,9 +90,9 @@ COPY target/release/picobot /usr/local/bin/picobot
# Copy config template # Copy config template
COPY resources/templates/config.example.json /app/config.json.example COPY resources/templates/config.example.json /app/config.json.example
# Create persistent application directories. Browser temporary data stays in # Create persistent application directories. Transient browser data stays in
# /tmp so bind-mounting /app/.picobot cannot hide its temporary directory. # /tmp; optional Chrome profiles live under the persisted .picobot volume.
RUN mkdir -p /app/.picobot/workspace /app/.picobot/media && \ RUN mkdir -p /app/.picobot/workspace /app/.picobot/media /app/.picobot/browser/profiles && \
chown -R app:app /app chown -R app:app /app
USER app USER app

View File

@ -3,7 +3,7 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
image: picobot:1.3.1 image: picobot:1.4.0
container_name: picobot-test container_name: picobot-test
restart: unless-stopped restart: unless-stopped
ports: ports:

View File

@ -1,12 +1,12 @@
{ {
"name": "picobot-webui", "name": "picobot-webui",
"version": "1.3.1", "version": "1.4.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "picobot-webui", "name": "picobot-webui",
"version": "1.3.1", "version": "1.4.0",
"dependencies": { "dependencies": {
"bits-ui": "^2.0.0", "bits-ui": "^2.0.0",
"dompurify": "^3.4.12", "dompurify": "^3.4.12",

View File

@ -1,7 +1,7 @@
{ {
"name": "picobot-webui", "name": "picobot-webui",
"private": true, "private": true,
"version": "1.3.1", "version": "1.4.0",
"type": "module", "type": "module",
"engines": { "engines": {
"node": ">=20" "node": ">=20"