1 Commits

Author SHA1 Message Date
renovate[bot]
85267f6ac0 chore(deps): update dependency https://deno.land/std to v0.224.0 2024-10-17 16:56:37 +00:00
8 changed files with 3 additions and 93 deletions

View File

@@ -1,3 +1,3 @@
{
".": "1.0.1"
".": "1.0.0"
}

View File

@@ -1,12 +1,5 @@
# Changelog
## [1.0.1](https://github.com/catppuccin/gitea/compare/v1.0.0...v1.0.1) (2024-11-10)
### Bug Fixes
* set background colour for tooltips & inline code blocks ([#52](https://github.com/catppuccin/gitea/issues/52)) ([f0bf2b7](https://github.com/catppuccin/gitea/commit/f0bf2b7a907838ac9d6cd4c1c677e55f229d042c))
## [1.0.0](https://github.com/catppuccin/gitea/compare/v0.4.1...v1.0.0) (2024-10-06)

View File

@@ -2,7 +2,7 @@
"imports": {
"@catppuccin/palette": "npm:@catppuccin/palette@0.2.0",
"sass": "npm:sass@1.66.1",
"std/path": "https://deno.land/std@0.199.0/path/mod.ts",
"std/path": "https://deno.land/std@0.224.0/path/mod.ts",
"@catppuccin/deno-lib": "https://deno.land/x/catppuccin_toolbox@deno-lib-v1.0.0/deno-lib/mod.ts"
},
"lock": true,

3
docker/.gitignore vendored
View File

@@ -1,3 +0,0 @@
*
!docker/docker-compose.yml
!docker/justfile

View File

@@ -1,59 +0,0 @@
services:
server:
image: gitea/gitea:1.22.3
container_name: gitea
restart: unless-stopped
environment:
- USER_UID=1000
- USER_GID=1000
- GITEA__database__DB_TYPE=postgres
- GITEA__database__HOST=db:5432
- GITEA__database__NAME=gitea
- GITEA__database__USER=gitea
- GITEA__database__PASSWD=gitea
networks:
- gitea
volumes:
# - ./conf/app.ini:/data/gitea/conf/app.ini
- type: bind
source: ./conf/app.ini
target: /data/gitea/conf/app.ini
- ./conf/public:/data/gitea/public
- ./conf/templates:/data/gitea/templates
- ./conf/locale:/data/gitea/options/locale
- ./data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "222:22"
depends_on:
db:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-fSs", "localhost:3000/api/healthz"]
interval: "30s"
timeout: "5s"
retries: 3
db:
image: postgres:14
restart: unless-stopped
environment:
- POSTGRES_USER=gitea
- POSTGRES_PASSWORD=gitea
- POSTGRES_DB=gitea
networks:
- gitea
volumes:
- ./postgres:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
interval: "5s"
timeout: "5s"
retries: 3
networks:
gitea:
name: "gitea"
external: false

View File

@@ -1,13 +0,0 @@
_default:
@just --list
build:
cd .. && deno task build
mkdir -p ./conf/public/assets/css
cp ../dist/* ./conf/public/assets/css
down:
docker compose down
up: build down
docker compose up -d

View File

@@ -220,13 +220,10 @@ $lvl3: if($isDark, $base, $crust);
--color-card: #{$surface0};
--color-markup-table-row: #{color.change($text, $alpha: 0.02)};
--color-markup-code-block: #{color.change($text, $alpha: 0.05)};
--color-markup-code-inline: #{$surface0};
--color-button: #{$surface0};
--color-code-bg: #{$base};
--color-code-sidebar-bg: #{$surface0};
--color-shadow: #{color.change($lvl1, $alpha: 0.1)};
--color-tooltip-bg: #{$surface0};
--color-tooltip-text: var(--color-text);
--color-secondary-bg: #{$surface0};
--color-text-focus: #{$text};
--color-expand-button: #{$surface2};
@@ -288,11 +285,6 @@ $lvl3: if($isDark, $base, $crust);
}
}
// This is a fix for the repo-topic label readability
#repo-topics .repo-topic {
color: $lvl1;
}
.ui.basic.modal {
background-color: $lvl3;
}

View File

@@ -1 +1 @@
1.0.1
1.0.0