Skip to content

Commit

Permalink
Added: Initial commit with all repository data and dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-seyfert committed Feb 11, 2024
1 parent d60ed30 commit 4c2afca
Show file tree
Hide file tree
Showing 26 changed files with 10,375 additions and 21 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Au3ChangelogUpdater.exe
main_stripped.au3
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#####

# Changelog

All notable changes to "au3webdriver-boilerplate" 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).

Go to [legend](#legend---types-of-changes) for further information about the types of changes.

## [Unreleased]

## [0.1.0] - 2024-02-11

### Added

- Initial commit with all repository data and dependencies.

[Unreleased]: https://github.com/Sven-Seyfert/au3webdriver-boilerplate/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/Sven-Seyfert/au3webdriver-boilerplate/releases/tag/v0.1.0

---

### Legend - Types of changes

- `Added` for new features.
- `Changed` for changes in existing functionality.
- `Deprecated` for soon-to-be removed features.
- `Documented` for documentation only changes.
- `Fixed` for any bug fixes.
- `Refactored` for changes that neither fixes a bug nor adds a feature.
- `Removed` for now removed features.
- `Security` in case of vulnerabilities.
- `Styled` for changes like whitespaces, formatting, missing semicolons etc.

##

[To the top](#)
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

30 changes: 30 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
## MIT License

#### Copyright (c) 2024 Sven Seyfert (SOLVE-SMART)

| Permissions | Conditions | Limitations |
| ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------- |
| ![#3DC637](https://via.placeholder.com/8/3DC637/000000?text=+)  Commercial use | ![#0099D6](https://via.placeholder.com/8/0099D6/000000?text=+)  License and copyright notice | ![#C6403D](https://via.placeholder.com/8/C6403D/000000?text=+)  Liability |
| ![#3DC637](https://via.placeholder.com/8/3DC637/000000?text=+)  Distribution | | ![#C6403D](https://via.placeholder.com/8/C6403D/000000?text=+)  Warranty |
| ![#3DC637](https://via.placeholder.com/8/3DC637/000000?text=+)  Modification | | |
| ![#3DC637](https://via.placeholder.com/8/3DC637/000000?text=+)  Private use | | |

#### License description

> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
> in the Software without restriction, including without limitation the rights
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> copies of the Software, and to permit persons to whom the Software is
> furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in all
> copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> SOFTWARE.
61 changes: 61 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#####

<p align="center">
<img src="assets/images/logo.png" width="80" />
<h2 align="center">Welcome to <code>au3webdriver-boilerplate</code>【ツ】</h2>
</p>

[![license](https://img.shields.io/badge/license-MIT-indianred.svg?style=flat-square&logo=spdx&logoColor=white)](https://github.com/Sven-Seyfert/au3webdriver-boilerplate/blob/main/LICENSE.md)
[![tag](https://img.shields.io/github/tag/Sven-Seyfert/au3webdriver-boilerplate.svg?color=slateblue&style=flat-square&logo=github)](https://github.com/Sven-Seyfert/au3webdriver-boilerplate/tags)
[![release](https://img.shields.io/github/release/Sven-Seyfert/au3webdriver-boilerplate.svg?color=slateblue&style=flat-square&logo=github)](https://github.com/Sven-Seyfert/au3webdriver-boilerplate/releases/latest)
[![autoit](https://img.shields.io/badge/lang-AutoIt-lightskyblue.svg?style=flat-square&logo=autodesk&logoColor=white)]()
[![last commit](https://img.shields.io/github/last-commit/Sven-Seyfert/au3webdriver-boilerplate.svg?color=darkgoldenrod&style=flat-square&logo=github)](https://github.com/Sven-Seyfert/au3webdriver-boilerplate/commits/main)
[![contributors](https://img.shields.io/github/contributors/Sven-Seyfert/au3webdriver-boilerplate.svg?color=darkolivegreen&style=flat-square&logo=github)](https://github.com/Sven-Seyfert/au3webdriver-boilerplate/graphs/contributors)

---

[Description](#description) | [Features](#features) | [Getting started](#getting-started) | [Configuration](#configuration) | [Contributing](#contributing) | [License](#license) | [Acknowledgements](#acknowledgements)

## Description

The project "au3webdriver-boilerplate" can be used as quick entry point for the awesome [au3WebDriver](https://github.com/Danp2/au3WebDriver/) project by @Danp2 (and @mlipok). The intention is, give people a easy start with WebDriver for AutoIt.

## Features

To be defined [...]

## Getting started

#### *Preconditions*

To be defined [...]

#### *Installation*

To be defined [...]

#### *Usage*

To be defined [...]

## Configuration

To be defined [...]

## Contributing

To be defined [...]

## License

Distributed under the MIT License. See [LICENSE](https://github.com/Sven-Seyfert/au3webdriver-boilerplate/blob/main/LICENSE.md) for more information.

## Acknowledgements

- Opportunity by [GitHub](https://github.com)
- Badges by [Shields](https://shields.io)
- Dependencies will be mentioned grateful very soon

##

[To the top](#)
Empty file added assets/icons/.gitkeep
Empty file.
Binary file added assets/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added build/.gitkeep
Empty file.
Empty file added data/output/.gitkeep
Empty file.
Empty file added driver/.gitkeep
Empty file.
Loading

0 comments on commit 4c2afca

Please sign in to comment.