Skip to content

Commit 19edabd

Browse files
committed
🎨 Add icon for Telegram bot and unify version number
1 parent a3f0e46 commit 19edabd

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ Note for packagers: The application by default uses executable directory as conf
3333
```bash
3434
# Build with Release configuration
3535
$ dotnet build -c Release
36+
3637
# Publish as framework-dependent
3738
$ dotnet publish ShadowsocksUriGenerator -c Release
39+
3840
# Publish as self-contained for Linux x64
3941
$ dotnet publish ShadowsocksUriGenerator -c Release \
4042
-p:PublishReadyToRun=true \
@@ -46,6 +48,7 @@ $ dotnet publish ShadowsocksUriGenerator -c Release \
4648
-p:EnableUnsafeUTF7Encoding=false \
4749
-p:InvariantGlobalization=true \
4850
-r linux-x64 --self-contained
51+
4952
# Publish as self-contained for packaging on Linux x64
5053
$ dotnet publish ShadowsocksUriGenerator -c Release \
5154
-p:DefineConstants=PACKAGED \
@@ -142,7 +145,9 @@ $ ss-uri-gen-chatbot-telegram
142145
## License
143146

144147
- This project is licensed under [GPLv3](LICENSE).
145-
148+
- The icons are from [Material Design Icons](https://materialdesignicons.com/) and are licensed under the [Pictogrammers Free License](https://dev.materialdesignicons.com/license).
149+
- [`System.CommandLine`](https://github.com/dotnet/command-line-api) is licensed under the MIT license.
146150
- [`JsonSnakeCaseNamingPolicy`](https://github.com/dotnet/corefx/pull/40003) is licensed under the MIT license.
151+
- [`Telegram.Bot`](https://github.com/TelegramBots/Telegram.Bot) and [`Telegram.Bot.Extensions.Polling`](https://github.com/TelegramBots/Telegram.Bot.Extensions.Polling) are licensed under the MIT license.
147152

148153
© 2021 database64128

ShadowsocksUriGenerator.Chatbot.Telegram/ShadowsocksUriGenerator.Chatbot.Telegram.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
<RepositoryUrl>https://github.com/database64128/shadowsocks-uri-generator</RepositoryUrl>
1313
<RepositoryType>Public</RepositoryType>
1414
<AssemblyName>ss-uri-gen-chatbot-telegram</AssemblyName>
15+
<ApplicationIcon>ss-uri-gen-chatbot-telegram.ico</ApplicationIcon>
16+
<PackageIcon>ss-uri-gen-chatbot-telegram.png</PackageIcon>
17+
<Version>3.6.0</Version>
1518
</PropertyGroup>
1619

1720
<ItemGroup>
Binary file not shown.
14.6 KB
Loading

ShadowsocksUriGenerator/ShadowsocksUriGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<RepositoryType>Public</RepositoryType>
1919
<ApplicationIcon>ss-uri-gen.ico</ApplicationIcon>
2020
<PackageIcon>ss-uri-gen.png</PackageIcon>
21-
<Version>3.5.0</Version>
21+
<Version>3.6.0</Version>
2222
</PropertyGroup>
2323

2424
<ItemGroup>

0 commit comments

Comments
 (0)