Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Bug report
about: Report a problem with Synapse
title: ""
labels: bug
---

## Steps to reproduce

1. ...
2. ...

## Expected behaviour

## Actual behaviour

## Environment

- OS + version:
- Synapse version:
- Involves an Anki-imported collection (`.apkg`/`.colpkg`)? yes/no

## Logs

Attach the log from `Help → Open Log Folder` if relevant.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Feature request
about: Suggest an idea for Synapse
title: ""
labels: enhancement
---

## Problem

What are you trying to do that Synapse doesn't support today?

## Proposed solution

## Alternatives considered
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## What / why

## Checklist

- [ ] `pnpm lint` and `cargo clippy -- -D warnings` pass
- [ ] `cargo fmt --check` and `pnpm fmt:check` pass
- [ ] `cargo test --workspace` and `pnpm test` pass
- [ ] New IPC commands have a Rust test and a TypeScript wrapper
- [ ] Ran `pnpm bindings` if Rust `#[derive(TS)]` structs changed
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
# RUSTSEC-2026-0194/0195: quick-xml DoS advisories (quadratic-time
# attribute check / unbounded namespace allocation), pulled in
# transitively via tauri-utils -> plist (macOS bundling only,
# never parses untrusted input at runtime). See audit.toml.
ignore: RUSTSEC-2026-0194,RUSTSEC-2026-0195

web:
name: Web (lint, types, test, build)
Expand Down
67 changes: 67 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Contributor Covenant Code of Conduct

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic
status, nationality, personal appearance, race, religion, or sexual identity
and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contributes to a positive environment include:

- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
- Focusing on what is best not just for us as individuals, but for the
overall community

Examples of unacceptable behavior include:

- The use of sexualized language or imagery, and sexual attention or advances
of any kind
- Trolling, insulting or derogatory comments, and personal or political
attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email
address, without their explicit permission
- Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities

Project maintainers are responsible for clarifying and enforcing our
standards of acceptable behavior and will take appropriate and fair
corrective action in response to any behavior that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies within all community spaces, and also applies
when an individual is officially representing the community in public
spaces.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by opening a
[GitHub Security Advisory](https://github.com/Emadab/Synapse/security/advisories/new)
or a confidential issue on the project's issue tracker. All complaints will
be reviewed and investigated promptly and fairly.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.1, available at
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].

[homepage]: https://www.contributor-covenant.org
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
## Setup

```sh
git clone https://github.com/synapse-srs/synapse
git clone https://github.com/Emadab/Synapse
cd synapse
pnpm install
```
Expand Down Expand Up @@ -89,7 +89,7 @@ docs: ADR-003 plugin sandbox decision

## Reporting issues

Open an issue at https://github.com/synapse-srs/synapse/issues with:
Open an issue at https://github.com/Emadab/Synapse/issues with:

- OS + version
- Steps to reproduce
Expand Down
Loading
Loading