aardwolf icon indicating copy to clipboard operation
aardwolf copied to clipboard

Powering connected social communities with open software.

Results 43 aardwolf issues
Sort by recently updated
recently updated
newest added

Bumps [yaml-rust](https://github.com/chyh1990/yaml-rust) from 0.3.5 to 0.4.5. Release notes Sourced from yaml-rust's releases. v0.4.4 No API change. Update implementation to follow Rust 2018 standards. v0.4.3 Fix handling of indicators in plain...

dependency issue
rust

Bumps [actix-http](https://github.com/actix/actix-web) from 0.2.11 to 2.2.1. Release notes Sourced from actix-http's releases. actix-files: v0.6.0 No significant changes since 0.6.0-beta.16. actix-files: v0.6.0-beta.16 No significant changes since 0.6.0-beta.15. actix-files: v0.6.0-beta.15 No significant...

dependency issue
rust

Add stock security policy Add doc/UPDATE-NPM.md Run npm updates.

First... I renamed this to match the branch naming convention (user/branch_name) Second... this includes a LOT of backported updates from the aardwolf-interface repo.

[Decentralized Identifier](https://www.w3.org/TR/did-core/) frees users from DNS-based identifiers. DNS is a hierarchical system controlled by organizations that we didn't elect or choose. DID(Decentralized Identifier) is not. With DID, users can move...

feature request

I pretty much guarantee that this is going to be a moving target, but I will TRY to scope out everything now. That way ~~I~~ we can create new milestones...

UI/UX

### This is item 1, in the [Hackers Guide to Aardwolf](https://github.com/Aardwolf-Social/aardwolf/blob/master/doc/development/) Ideally, Aardwolf will be able to send SMTP messages without having to resort to an external mailer daemon (Postfix,...

feature request
backend

### This is item 8, in the [Hackers Guide to Aardwolf](https://github.com/BanjoFox/aardwolf/edit/master/Hackers-Guide-to-Aardwolf) Unfortunately this is a very... undefined floating target however I will do my best to at least point out...

feature request
backend

### This is item 6, in the [Hackers Guide to Aardwolf](https://github.com/BanjoFox/aardwolf/edit/master/Hackers-Guide-to-Aardwolf) The HTML/CSS parts (front-end) will need to interact with the Rust/Server-side components. My understanding is that this will be...

feature request

Something like ```rust pub trait FormWithState { type State; fn as_state(&self) -> Self::State; } impl FormWithState for CreatePostForm { type State = CreatePostFormState; fn as_state(&self) -> Self::State { CreatePostFormState {...