Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README + Add Github Templates #16

Merged
merged 11 commits into from
Jun 12, 2022
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/ask_a_question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Ask a Question
about: Ask a question about using dot
labels: question

---

## :question: Ask a Question:

### Description:

<!-- A clear and concise description of your question. Ex. what is/how to [...] -->
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Bug Report
about: Report bugs to improve dot
labels: bug

---

## :bug: Bug Report

<!-- Note: Remove sections from the template that are not relevant to the issue. -->

### Description:

#### Actual Behavior:

<!-- A clear and concise description of what the bug is, including steps for reproducing it. -->

#### Expected Behavior:

<!-- A clear and concise description of what you expected to happen. -->
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Documentation
about: Report an issue related to dot documentation
labels: documentation

---

## :memo: Documentation

<!-- Note: Remove sections from the template that are not relevant to the issue. -->

### Description:

<!-- A clear and concise description of what needs to be added, updated or removed from current documentation. -->
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: Submit a feature request for dot
labels: feature

---

## :sparkles: Feature Request

<!-- Note: Remove sections from the template that are not relevant to the issue. -->

### Description:

<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
36 changes: 36 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!-- Is this pull request ready for review? (if not, please submit in draft mode) -->

## Description

<!--
Please include a summary of the change and which issue is fixed.
Please also include relevant motivation and context.
List any dependencies that are required for this change.
-->

<!-- remove if not applicable -->

Fixes #(issue-number)

### Changelog:

<!--
Add changes in a list and add issue number in brackets, if required.
Remove sections which are not applicable and remember to update CHANGELOG.md as well.
-->

#### Added:

- ...

#### Updated:

- ...

#### Fixed:

- ...

#### Removed:

- ...
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- ...

### Updated

- ...

### Fixed

- ...

### Removed

- ...

## [1.0.0] - 2022-06-04

- dot is open sourced

[Unreleased]: https://github.com/sensity-ai/dot/compare/1.0.0...HEAD
[1.0.0]: https://github.com/sensity-ai/dot/releases/tag/1.0.0
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Deepfake Offensive Toolkit
<div align="center">

[![build-dot](https://github.com/sensity-ai/dot/actions/workflows/build_dot.yaml/badge.svg)](https://github.com/sensity-ai/dot/actions/workflows/build_dot.yaml) [![code-check](https://github.com/sensity-ai/dot/actions/workflows/code_check.yaml/badge.svg)](https://github.com/sensity-ai/dot/actions/workflows/code_check.yaml)
<h1> Deepfake Offensive Toolkit </h1>

[![stars](https://img.shields.io/github/stars/sensity-ai/dot)](https://github.com/sensity-ai/dot/stargazers)
[![license](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://github.com/sensity-ai/dot/blob/main/LICENSE)
[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-3712/)
[![build-dot](https://github.com/sensity-ai/dot/actions/workflows/build_dot.yaml/badge.svg)](https://github.com/sensity-ai/dot/actions/workflows/build_dot.yaml)
[![code-check](https://github.com/sensity-ai/dot/actions/workflows/code_check.yaml/badge.svg)](https://github.com/sensity-ai/dot/actions/workflows/code_check.yaml)

</div>

*dot* (aka Deepfake Offensive Toolkit) makes real-time, controllable deepfakes ready for virtual cameras injection. *dot* is created for performing penetration testing against e.g. identity verification and video conferencing systems, for the use by security analysts, Red Team members, and biometrics researchers.

Expand Down Expand Up @@ -267,6 +275,10 @@ If you have ideas for improving *dot*, feel free to open relevant Issues and PRs

If you are working on improving the speed of *dot*, please read first our guide on [code profiling](docs/profiling.md).

### Changelog

Visit [CHANGELOG.md](./CHANGELOG.md) to track changes in the repository.

### Setup Dev-Tools

1. Install Dev Requirements
Expand Down
2 changes: 1 addition & 1 deletion dot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .dot import DOT

__version__ = "2.0.0"
__version__ = "1.0.0"
__author__ = "Sensity"
__url__ = "https://github.com/sensity-ai/dot/tree/main/dot"
__docs__ = "Deepfake offensive toolkit"
Expand Down