Compare commits

..

No commits in common. "d70bee14af332175bf0793f281819224673cc508" and "e15d9eb5377a45e47149871ee646ff3d1d05379d" have entirely different histories.

10 changed files with 18 additions and 32 deletions

View File

@ -5,8 +5,8 @@
"dev": "run-p dev:*",
"docker:up": "docker compose -f docker-compose.dev.yaml up",
"docker:build": "docker compose -f docker-compose.dev.yaml build",
"test": "playwright test --project=chrome --project=firefox --project=safari",
"test:local": "playwright test --project=chrome",
"test": "playwright test --project chrome firefox safari",
"test:local": "playwright test --project chrome",
"test:server": "run-s docker:up",
"test:prepare": "run-p build docker:build",
"build": "pnpm run --recursive --filter=!@cryptgeon/backend build"

View File

@ -261,7 +261,7 @@ dependencies = [
[[package]]
name = "cryptgeon"
version = "2.8.0"
version = "2.7.0"
dependencies = [
"axum",
"bs62",

View File

@ -1,6 +1,6 @@
[package]
name = "cryptgeon"
version = "2.8.0"
version = "2.7.0"
authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2021"
rust-version = "1.80"

View File

@ -1,9 +1,7 @@
use axum::{
extract::Path,
http::StatusCode,
response::{IntoResponse, Response},
Json,
};
use axum::extract::Path;
use axum::http::StatusCode;
use axum::response::{IntoResponse, Response};
use axum::Json;
use serde::{Deserialize, Serialize};
use std::time::SystemTime;

View File

@ -1,5 +1,6 @@
use crate::config;
use axum::{http::StatusCode, Json};
use axum::http::StatusCode;
use axum::Json;
use serde::Serialize;
#[derive(Serialize)]

View File

@ -1,6 +1,6 @@
{
"name": "cryptgeon",
"version": "2.8.0",
"version": "2.7.0",
"homepage": "https://github.com/cupcakearmy/cryptgeon",
"repository": {
"type": "git",

View File

@ -39,23 +39,13 @@
<input bind:value {...$$restProps} class:valid={valid === true} />
<div class="icons">
{#if isPassword}
<Icon
disabled={$$restProps.disabled}
class="icon"
icon={hidden ? 'eye' : 'eye-off'}
on:click={toggle}
/>
<Icon class="icon" icon={hidden ? 'eye' : 'eye-off'} on:click={toggle} />
{/if}
{#if random}
<Icon disabled={$$restProps.disabled} class="icon" icon="dice" on:click={randomFN} />
<Icon class="icon" icon="dice" on:click={randomFN} />
{/if}
{#if copy}
<Icon
disabled={$$restProps.disabled}
class="icon"
icon="copy"
on:click={() => copyFN(value.toString())}
/>
<Icon class="icon" icon="copy" on:click={() => copyFN(value.toString())} />
{/if}
</div>
</label>

View File

@ -10,11 +10,9 @@ const config: PlaywrightTestConfig = {
outputDir: './test-results',
testDir: './test',
timeout: 30_000,
fullyParallel: true,
retries: 2,
webServer: {
command: 'pnpm run docker:up',
command: 'docker compose -f docker-compose.dev.yaml up',
port: 3000,
reuseExistingServer: true,
},

View File

@ -3,8 +3,8 @@ import { Files } from '../../files'
import { createNoteError } from '../../utils'
test.describe('@web', () => {
test.skip('to big zip', async ({ page }) => {
test('to big zip', async ({ page }) => {
const files = [Files.Zip]
await createNoteError(page, { files }, 'could not create note. note is too big')
await createNoteError(page, { files }, 'note is to big')
})
})

View File

@ -2,8 +2,7 @@ import { test } from '@playwright/test'
import { checkLinkDoesNotExist, checkLinkForText, createNoteSuccessfully } from '../../utils'
test.describe('@web', () => {
test('1 minute', async ({ page, browserName }) => {
test.skip(browserName === 'webkit')
test('1 minute', async ({ page }) => {
const text = `Virtues value ascetic revaluation sea dead strong burying.`
const minutes = 1
const timeout = minutes * 60_000