Compare commits
2 Commits
7887477ed1
...
f0b32f541e
Author | SHA1 | Date |
---|---|---|
|
f0b32f541e | |
|
b16c9a0404 |
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased](https://git.rustybever.be/Chewing_Bever/otter)
|
## [Unreleased](https://git.rustybever.be/Chewing_Bever/otter)
|
||||||
|
|
||||||
|
## [0.2.0](https://git.rustybever.be/Chewing_Bever/otter/src/tag/0.2.0)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
* Web UI
|
* Web UI
|
||||||
|
|
|
@ -7,7 +7,7 @@ members = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
mod common;
|
mod common;
|
||||||
|
|
||||||
use chrono::{SubsecRound, TimeDelta};
|
use chrono::{SubsecRound, TimeDelta};
|
||||||
use gpodder::{AuthStore, Session};
|
use gpodder::{GpodderAuthStore, Session};
|
||||||
use gpodder_sqlite::SqliteRepository;
|
use gpodder_sqlite::SqliteRepository;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use gpodder::{AuthStore, User};
|
use gpodder::{GpodderAuthStore, User};
|
||||||
use gpodder_sqlite::SqliteRepository;
|
use gpodder_sqlite::SqliteRepository;
|
||||||
|
|
||||||
use rand::{Rng, distributions::Alphanumeric};
|
use rand::{Rng, distributions::Alphanumeric};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
mod common;
|
mod common;
|
||||||
|
|
||||||
use gpodder::{DevicePatch, DeviceRepository, DeviceType};
|
use gpodder::{DevicePatch, DeviceType, GpodderDeviceStore};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_insert_devices() {
|
fn test_insert_devices() {
|
||||||
|
|
|
@ -11,7 +11,7 @@ use axum::{
|
||||||
use axum_extra::{TypedHeader, extract::CookieJar, headers::UserAgent};
|
use axum_extra::{TypedHeader, extract::CookieJar, headers::UserAgent};
|
||||||
use cookie::{Cookie, time::Duration};
|
use cookie::{Cookie, time::Duration};
|
||||||
use gpodder::{AuthErr, Session};
|
use gpodder::{AuthErr, Session};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::Deserialize;
|
||||||
|
|
||||||
use crate::web::{Page, Query, TemplateExt, TemplateResponse, ToQuery, View};
|
use crate::web::{Page, Query, TemplateExt, TemplateResponse, ToQuery, View};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue