From cb86614f92da042fee56b79120e6895f7cec3c83 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 28 Mar 2020 16:56:04 -0400 Subject: [PATCH] Added gitlab templates --- .gitlab/issue_templates/Bug.md | 28 +++++++++++++++++++++++++++ .gitlab/merge_request_templates/MR.md | 3 +++ CHANGELOG.md | 15 ++++++++++++++ CONTRIBUTING.md | 6 ++++-- Readme.md | 3 +-- 5 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 .gitlab/issue_templates/Bug.md create mode 100644 .gitlab/merge_request_templates/MR.md diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md new file mode 100644 index 0000000..88ebf02 --- /dev/null +++ b/.gitlab/issue_templates/Bug.md @@ -0,0 +1,28 @@ +### Summary + +(Summarize the bug encountered concisely) + +### Steps to reproduce + +(How one can reproduce the issue - this is very important) + +### What is the current *bug* behavior? + +(What actually happens) + +### What is the expected *correct* behavior? + +(What you should see instead) + +### Relevant logs and/or screenshots + +(Paste any relevant logs - please use code blocks (```) to format console output, +logs, and code as it's tough to read otherwise.) + + + +### Possible fixes + +(If you can, link to the line of code that might be responsible for the problem) + +/label ~bug \ No newline at end of file diff --git a/.gitlab/merge_request_templates/MR.md b/.gitlab/merge_request_templates/MR.md new file mode 100644 index 0000000..86d2f7e --- /dev/null +++ b/.gitlab/merge_request_templates/MR.md @@ -0,0 +1,3 @@ +### What does this MR do? + +### Related issues diff --git a/CHANGELOG.md b/CHANGELOG.md index d4c052a..780779d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ +## [N/A] - UNRELEASED + +All backend changes. No changes to PyStalk itself. + +## Added + +- License scanning +- [Codecov](https://codecov.io/gl/Cyb3r-Jak3/pystalk) +- Pipfile and Pipfile.lock for pipenv +- Added .gitlab folder for service desk. + +### Changed + +- Reverted dependency scanner to default template. + ## [v1.4] - 2020-02-02 ### Changed diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8e4fef8..40126ea 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,9 @@ Thanks for reading this because I am always looking to collaborate with other people to see their ideas. -If you are looking to submit a pull request then please do so on [GitLab](https://gitlab.com/Cyb3r-Jak3/pystalk) because all development is done there. Any pull request that is opened on GitHub will be closed and I mirror it on GitLab. +If you are looking to submit a pull request then please do so on [GitLab](https://gitlab.com/Cyb3r-Jak3/pystalk) because all development is done there. Any pull request that is opened on GitHub will be closed and I mirror it on GitLab. + +Please open issues on [GitLab](https://gitlab.com/Cyb3r-Jak3/PyStalk/issues). if you do not have a GitLab account, send then please email service desk( [incoming+cyb3r-jak3-pystalk-15263483-issue-@incoming.gitlab.com](mailto:incoming+cyb3r-jak3-pystalk-15263483-issue-@incoming.gitlab.com) ). ## Modules @@ -13,7 +15,7 @@ If you are looking to write a new module for a new metadata graph here is they a - The module will find the key that is using and return a figure using plotly. - A dictionary of all the plots will be passed to [web.py](utils/web.py) which will use dash to display them. -### Example dictionary +### Example image dictionary ```python {'Image width': '1600 pixels', 'Image height': '1200 pixels', 'Image orientation': 'Horizontal (normal)', 'Bits/pixel': '24', 'Pixel format': 'YCbCr', 'Creation date': '2007-11-29 16:16:21', 'Camera aperture': '2.97', 'Camera focal': '2.8', 'Camera exposure': '1/6', 'Camera model': 'Canon PowerShot SD300', 'Camera manufacturer': 'Canon', 'Compression': 'JPEG (Baseline)', 'Thumbnail size': '5922 bytes', 'EXIF version': '0220', 'Date-time original': '2007-11-29 16:16:21', 'Date-time digitized': '2007-11-29 16:16:21', 'Compressed bits per pixel': '3', 'Shutter speed': '2.59', 'Aperture': '2.97', 'Exposure bias': '0', 'Focal length': '5.8', 'Flashpix version': '0100', 'Focal plane width': '7.14e+03', 'Focal plane height': '7.14e+03', 'Comment': 'JPEG quality: 90% (approximate)', 'MIME type': 'image/jpeg', 'Endianness': 'Big endian', 'item': '.\\utils\\ExamplePhotos\\22-canon_tags.jpg'} diff --git a/Readme.md b/Readme.md index 0f2469e..91adad4 100644 --- a/Readme.md +++ b/Readme.md @@ -16,8 +16,7 @@ It currently creates graphs for: Examples photos from [ianare/exif-samples](https://github.com/ianare/exif-samples/tree/master/jpg/gps), [exiftool](https://owl.phy.queensu.ca/~phil/exiftool/sample_images.html), [drewmpales/metadata-extractor-images](https://github.com/drewnoakes/metadata-extractor-images). -All development is done on GitLab and pushed to GitHub. -Please open issues on [GitLab](https://gitlab.com/Cyb3r-Jak3/PyStalk/issues) or if you do not have a GitLab account, send me an email and I will open an issue. +All development is done on GitLab and pushed to GitHub. Please read [contributing.md](CONTRIBUTING.md) for development. ## How to use