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]
name = "picobot"
version = "1.3.1"
version = "1.4.0"
edition = "2024"
[dependencies]

View File

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

View File

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

View File

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

View File

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