Skip to content

Commit 9e10fdd

Browse files
committed
Revert "Changed branch to main"
This reverts commit a6ad53e.
1 parent 52d16bc commit 9e10fdd

10 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build + Release
33
on:
44
push:
55
branches:
6-
- 'main'
6+
- 'release'
77

88
jobs:
99
build:

OpenBullet2.Native/Services/AnnouncementService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public async Task<string> FetchAnnouncementAsync()
2929
{
3030
try
3131
{
32-
var url = $"https://raw.githubusercontent.com/openbullet/OpenBullet2/main/Announcements/native.md";
32+
var url = $"https://raw.githubusercontent.com/openbullet/OpenBullet2/master/Announcements/native.md";
3333
using HttpClient client = new();
3434
client.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0");
3535
var response = await client.GetAsync(url);

OpenBullet2.Native/Views/Dialogs/ShowChangelogDialog.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ private async void FetchChangelog()
4646

4747
try
4848
{
49-
var response = await client.GetAsync($"https://raw.githubusercontent.com/openbullet/OpenBullet2/main/Changelog/{updateService.CurrentVersion}.md");
49+
var response = await client.GetAsync($"https://raw.githubusercontent.com/openbullet/OpenBullet2/master/Changelog/{updateService.CurrentVersion}.md");
5050
Text = await response.Content.ReadAsStringAsync();
5151
}
5252
catch

OpenBullet2.Web/Controllers/InfoController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ public async Task<ActionResult<ChangelogDto>> GetChangelog(string? v)
101101

102102
try
103103
{
104-
// The changelog is only present for stable builds in the main branch
105-
var url = $"https://raw.githubusercontent.com/openbullet/OpenBullet2/main/Changelog/{v}.md";
104+
// The changelog is only present for stable builds in the master branch
105+
var url = $"https://raw.githubusercontent.com/openbullet/OpenBullet2/master/Changelog/{v}.md";
106106
using var response = await _httpClient.GetAsync(url);
107107

108108
if (response.StatusCode == HttpStatusCode.NotFound)

OpenBullet2.Web/Services/AnnouncementService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public async Task<string> FetchAnnouncementAsync()
4646
// For now, we point it to the english announcement, if later
4747
// on we decide to implement localization we need to change this.
4848
#pragma warning disable S1075
49-
var url = "https://raw.githubusercontent.com/openbullet/OpenBullet2/main/Announcements/en.md";
49+
var url = "https://raw.githubusercontent.com/openbullet/OpenBullet2/master/Announcements/en.md";
5050
#pragma warning restore S1075
5151
using HttpClient client = new();
5252
client.DefaultRequestHeaders.UserAgent.ParseAdd(

RuriLib.Http/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RuriLib.Http
2-
This is a library that provides a custom HTTP client, in addition to an `HttpMessageHandler` to be used with the default `HttpClient` of `System.Net`. It sits on top of [RuriLib.Proxies](https://github.com/openbullet/OpenBullet2/tree/main/RuriLib.Proxies) which provides a layer 4 proxied connection.
2+
This is a library that provides a custom HTTP client, in addition to an `HttpMessageHandler` to be used with the default `HttpClient` of `System.Net`. It sits on top of [RuriLib.Proxies](https://github.com/openbullet/OpenBullet2/tree/master/RuriLib.Proxies) which provides a layer 4 proxied connection.
33

44
# Installation
55
[NuGet](https://nuget.org/packages/RuriLib.Http): `dotnet add package RuriLib.Http`

RuriLib.Http/RuriLib.Http.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Version>1.0.1</Version>
88
<Description>This is a library that provides a custom HTTP client, in addition to an HttpMessageHandler to be used with the default HttpClient of System.Net</Description>
99
<Copyright>Ruri 2022</Copyright>
10-
<RepositoryUrl>https://github.com/openbullet/OpenBullet2/tree/main/RuriLib.Http</RepositoryUrl>
10+
<RepositoryUrl>https://github.com/openbullet/OpenBullet2/tree/master/RuriLib.Http</RepositoryUrl>
1111
<PackageTags>http; proxy; socks; client; custom;</PackageTags>
1212
</PropertyGroup>
1313

RuriLib.Parallelization/RuriLib.Parallelization.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Authors>Ruri</Authors>
66
<Description>This is a library that can perform multiple tasks (yes, a lot, even infinitely many) that act on some input and return a certain output.</Description>
77
<Copyright>Ruri 2022</Copyright>
8-
<PackageProjectUrl>https://github.com/openbullet/OpenBullet2/tree/main/RuriLib.Parallelization</PackageProjectUrl>
9-
<RepositoryUrl>https://github.com/openbullet/OpenBullet2/tree/main/RuriLib.Parallelization</RepositoryUrl>
8+
<PackageProjectUrl>https://github.com/openbullet/OpenBullet2/tree/master/RuriLib.Parallelization</PackageProjectUrl>
9+
<RepositoryUrl>https://github.com/openbullet/OpenBullet2/tree/master/RuriLib.Parallelization</RepositoryUrl>
1010
<PackageTags>parallelization; task; tasks; manager; taskmanager; multithreading; parallel; multithread; async;</PackageTags>
1111
<Version>1.0.6</Version>
1212
<GenerateDocumentationFile>True</GenerateDocumentationFile>

RuriLib.Proxies/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is a library that can proxy a `TcpClient` via a proxy server. Supported pro
88

99
All proxy clients derive from the same `ProxyClient` class, so it's really easy to implement different kinds of proxies (and even proxiless connections) with a simple switch statement in your application.
1010

11-
If you are planning to use this library to send HTTP requests via proxy servers, you should look into the [RuriLib.Http](https://github.com/openbullet/OpenBullet2/tree/main/RuriLib.Http) library, which depends on this. Only use this library if you are okay with working with raw TCP connections or if you are able to feed the `TcpClient` into another library that provides support for higher layer protocols.
11+
If you are planning to use this library to send HTTP requests via proxy servers, you should look into the [RuriLib.Http](https://github.com/openbullet/OpenBullet2/tree/master/RuriLib.Http) library, which depends on this. Only use this library if you are okay with working with raw TCP connections or if you are able to feed the `TcpClient` into another library that provides support for higher layer protocols.
1212

1313
# Installation
1414
[NuGet](https://nuget.org/packages/RuriLib.Proxies): `dotnet add package RuriLib.Proxies`

RuriLib.Proxies/RuriLib.Proxies.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<Copyright>Ruri 2022</Copyright>
6-
<PackageProjectUrl>https://github.com/openbullet/OpenBullet2/tree/main/RuriLib.Proxies</PackageProjectUrl>
6+
<PackageProjectUrl>https://github.com/openbullet/OpenBullet2/tree/master/RuriLib.Proxies</PackageProjectUrl>
77
<Description>This is a library that can proxy a `TcpClient` via a proxy server. Supported protocols: HTTP(S), SOCKS4, SOCKS4a, SOCKS5, No proxy</Description>
88
<PackageTags>proxy; proxies; http; socks; socks4; socks4a; socks5; tcpclient;</PackageTags>
99
<Version>1.0.2</Version>

0 commit comments

Comments
 (0)