-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from AlaricGilbert/dev
0.2.1.0
- Loading branch information
Showing
16 changed files
with
144 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
<AssemblyVersion>0.1.0.0</AssemblyVersion> | ||
<FileVersion>0.1.0.0</FileVersion> | ||
<Version>0.1.0</Version> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\BiliCore\BiliCore.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using BiliCommenter.Core; | ||
using Newtonsoft.Json; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
namespace BiliCommenter.Console | ||
{ | ||
class Program | ||
{ | ||
static void Main(string[] args) | ||
{ | ||
if (!File.Exists("tasks.json")) | ||
return; | ||
var tasks = JsonConvert.DeserializeObject<List<CommentTask>>(File.ReadAllText("tasks.json")); | ||
foreach (var task in tasks) | ||
{ | ||
task.Callback = new CommentTask.CommentTaskFinishedCallback((taskid) => | ||
{ | ||
tasks.Remove(task); | ||
if (tasks.Count == 0) | ||
return; | ||
}); | ||
task.Start(); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,44 @@ | ||
# BiliCommenter | ||
## Intro | ||
|
||
![](logo.png) | ||
|
||
A tool that helps you grab the front row in new animates. | ||
|
||
哔哩哔哩新番抢楼机。 | ||
|
||
Coding: @AlaricGilbert | ||
|
||
Logo Design: @ManiaciaChao | ||
|
||
## To-do list | ||
|
||
In upcoming version 0.3.x, we're going to add those functions and redirect our way to "Grab the front row in all the reply areas": | ||
|
||
在0.3.x版本中加入下列功能,并将目标指向更改为“哔哩哔哩评论区前排助手”: | ||
|
||
* [ ] Specified floor grabbing./抢指定楼层。 | ||
* [ ] Dynamics floor grabbing./动态抢楼。 | ||
* [ ] Exceptions handle./异常处理。 | ||
|
||
In further version 0.4.x, we're going to add those functions: | ||
|
||
在0.4.x版本中加入下列功能: | ||
|
||
* [ ] Master ball./在关注的动态中,对指定的人物投出“大师球”。 | ||
* [ ] Themes (optional)./主题。 | ||
* [ ] Login with CAPTCHA requirement./需要验证码的登陆处理。 | ||
|
||
1.0.0: | ||
|
||
* [ ] iOS/Android Support。(咕咕咕咕咕咕咕~) | ||
|
||
## Previews | ||
|
||
![](imgs/main.png) | ||
|
||
![](imgs/emoji.png) | ||
|
||
![](imgs/settings.png) | ||
|
||
![](imgs/login.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.