mirror of https://github.com/quasar/Quasar.git
Update URLs
This commit is contained in:
parent
73567b90b2
commit
b45ab3e1d2
|
@ -12,7 +12,7 @@
|
||||||
* Updated dependencies
|
* Updated dependencies
|
||||||
* Updated message processing in client and server
|
* Updated message processing in client and server
|
||||||
* Updated mouse and keyboard input to SendInput API
|
* Updated mouse and keyboard input to SendInput API
|
||||||
* Fixed file transfer vulnerbilities (#623)
|
* Fixed file transfer vulnerbilities ([#623](https://github.com/quasar/Quasar/issues/623))
|
||||||
* Lots of under the hood changes for an upcoming plugin system
|
* Lots of under the hood changes for an upcoming plugin system
|
||||||
|
|
||||||
## Quasar v1.3.0.0 [28.09.2016]
|
## Quasar v1.3.0.0 [28.09.2016]
|
||||||
|
|
|
@ -6,7 +6,7 @@ namespace Quasar.Server.Forms
|
||||||
{
|
{
|
||||||
public partial class FrmAbout : Form
|
public partial class FrmAbout : Form
|
||||||
{
|
{
|
||||||
private readonly string _repositoryUrl = @"https://github.com/quasar/QuasarRAT";
|
private readonly string _repositoryUrl = @"https://github.com/quasar/Quasar";
|
||||||
|
|
||||||
public FrmAbout()
|
public FrmAbout()
|
||||||
{
|
{
|
||||||
|
|
12
README.md
12
README.md
|
@ -1,8 +1,8 @@
|
||||||
# Quasar
|
# Quasar
|
||||||
|
|
||||||
[![Build status](https://ci.appveyor.com/api/projects/status/5857hfy6r1ltb5f2?svg=true)](https://ci.appveyor.com/project/MaxXor/quasarrat)
|
[![Build status](https://ci.appveyor.com/api/projects/status/5857hfy6r1ltb5f2?svg=true)](https://ci.appveyor.com/project/MaxXor/quasarrat)
|
||||||
[![Downloads](https://img.shields.io/github/downloads/quasar/QuasarRAT/total.svg)](https://github.com/quasar/QuasarRAT/releases)
|
[![Downloads](https://img.shields.io/github/downloads/quasar/Quasar/total.svg)](https://github.com/quasar/Quasar/releases)
|
||||||
[![License](https://img.shields.io/github/license/quasar/QuasarRAT.svg)](LICENSE)
|
[![License](https://img.shields.io/github/license/quasar/Quasar.svg)](LICENSE)
|
||||||
|
|
||||||
**Free, Open-Source Remote Administration Tool for Windows**
|
**Free, Open-Source Remote Administration Tool for Windows**
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ Quasar is a fast and light-weight remote administration tool coded in C#. The us
|
||||||
* ... and many more!
|
* ... and many more!
|
||||||
|
|
||||||
## Download
|
## Download
|
||||||
* [Latest stable release](https://github.com/quasar/QuasarRAT/releases) (recommended)
|
* [Latest stable release](https://github.com/quasar/Quasar/releases) (recommended)
|
||||||
* [Latest development snapshot](https://ci.appveyor.com/project/MaxXor/quasarrat)
|
* [Latest development snapshot](https://ci.appveyor.com/project/MaxXor/quasarrat)
|
||||||
|
|
||||||
## Supported runtimes and operating systems
|
## Supported runtimes and operating systems
|
||||||
|
@ -50,10 +50,10 @@ Quasar is a fast and light-weight remote administration tool coded in C#. The us
|
||||||
* Windows 7
|
* Windows 7
|
||||||
* Windows Server 2008
|
* Windows Server 2008
|
||||||
* Windows Vista
|
* Windows Vista
|
||||||
* For older systems please use [Quasar version 1.3.0](https://github.com/quasar/QuasarRAT/releases/tag/v1.3.0.0)
|
* For older systems please use [Quasar version 1.3.0](https://github.com/quasar/Quasar/releases/tag/v1.3.0.0)
|
||||||
|
|
||||||
## Compiling
|
## Compiling
|
||||||
Open the project in Visual Studio 2019+ with installed .NET desktop development features and [restore the NuGET packages](https://docs.microsoft.com/en-us/nuget/consume-packages/package-restore). Once all packages are installed the project can be compiled as usual by clicking `Build` at the top or by pressing `F6`. The resulting executables can be found in the `Bin` directory. See below which build configuration to choose from.
|
Open the project `Quasar.sln` in Visual Studio 2019+ with installed .NET desktop development features and [restore the NuGET packages](https://docs.microsoft.com/en-us/nuget/consume-packages/package-restore). Once all packages are installed the project can be compiled as usual by clicking `Build` at the top or by pressing `F6`. The resulting executables can be found in the `Bin` directory. See below which build configuration to choose from.
|
||||||
|
|
||||||
## Building a client
|
## Building a client
|
||||||
| Build configuration | Usage scenario | Description
|
| Build configuration | Usage scenario | Description
|
||||||
|
@ -68,7 +68,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md)
|
||||||
See [ROADMAP.md](ROADMAP.md)
|
See [ROADMAP.md](ROADMAP.md)
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
See the [wiki](https://github.com/quasar/QuasarRAT/wiki) for usage instructions and other documentation.
|
See the [wiki](https://github.com/quasar/Quasar/wiki) for usage instructions and other documentation.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
Quasar is distributed under the [MIT License](LICENSE).
|
Quasar is distributed under the [MIT License](LICENSE).
|
||||||
|
|
|
@ -11,7 +11,7 @@ before_build:
|
||||||
- nuget restore
|
- nuget restore
|
||||||
|
|
||||||
build:
|
build:
|
||||||
project: QuasarRAT.sln
|
project: Quasar.sln
|
||||||
parallel: true
|
parallel: true
|
||||||
verbosity: minimal
|
verbosity: minimal
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue