Skip to content

Commit 4c1baa7

Browse files
committed
update readme
1 parent b7912f2 commit 4c1baa7

9 files changed

Lines changed: 62 additions & 19 deletions

File tree

.github/workflows/build.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
tags:
8-
- "v*"
97
workflow_dispatch:
108
inputs:
119
platform:
@@ -212,8 +210,8 @@ jobs:
212210
release:
213211
needs: build
214212
runs-on: ubuntu-latest
215-
# Auto release on: push to main, push tag, or manual trigger with release=true
216-
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') || github.event.inputs.release == 'true'
213+
# Auto release on: push to main or manual trigger with release=true
214+
if: github.ref == 'refs/heads/main' || github.event.inputs.release == 'true'
217215

218216
permissions:
219217
contents: write
@@ -225,7 +223,16 @@ jobs:
225223
path: artifacts
226224

227225
- name: Display structure of downloaded files
228-
run: ls -R artifacts
226+
run: |
227+
ls -R artifacts
228+
echo "---"
229+
find artifacts -type f -name "*.deb" -o -name "*.rpm" -o -name "*.msi" -o -name "*.exe" -o -name "*.dmg" | head -20
230+
231+
- name: Flatten artifacts for release
232+
run: |
233+
mkdir -p release-files
234+
find artifacts -type f \( -name "*.deb" -o -name "*.rpm" -o -name "*.msi" -o -name "*.exe" -o -name "*.dmg" \) -exec cp {} release-files/ \;
235+
ls -la release-files/
229236
230237
- name: Checkout for version
231238
uses: actions/checkout@v4
@@ -243,11 +250,6 @@ jobs:
243250
generate_release_notes: true
244251
tag_name: v${{ steps.version.outputs.version }}
245252
name: WorkAny v${{ steps.version.outputs.version }}
246-
files: |
247-
artifacts/**/*.deb
248-
artifacts/**/*.rpm
249-
artifacts/**/*.msi
250-
artifacts/**/*.exe
251-
artifacts/**/*.dmg
253+
files: release-files/*
252254
env:
253255
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ WorkAny is a desktop AI agent application that executes tasks through natural la
1414

1515
[302.AI](https://302.ai/?utm_source=workany_github) is a pay-as-you-go AI application platform that offers the most comprehensive AI APIs and online applications available.
1616

17+
> If you want to sponsor this project, please contact us via email: [hello@workany.ai](mailto:hello@workany.ai)
18+
1719
## Previews
1820

1921
- Organize files
@@ -108,6 +110,15 @@ Contributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for gui
108110

109111
Some components are built with [ShipAny.ai](https://shipany.ai) - AI-powered full-stack development platform.
110112

113+
## Community
114+
115+
- [Join Discord](https://discord.gg/rDSmZ8HS39)
116+
- [Follow on X](https://x.com/workanyai)
117+
118+
## ⭐️ Star History
119+
120+
[![Star History Chart](https://api.star-history.com/svg?repos=workany-ai/workany&type=Timeline)](https://star-history.com/#workany-ai/workany&Timeline)
121+
111122
## License
112123

113124
This project is licensed under the [WorkAny Community License](LICENSE), based on Apache License 2.0 with additional conditions.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "workany",
33
"private": true,
4-
"version": "0.1.8",
4+
"version": "0.1.9",
55
"type": "module",
66
"scripts": {
77
"ver": "./scripts/version.sh",

src-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "workany-api",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"type": "module",
55
"scripts": {
66
"dev": "node --import tsx --watch src/index.ts",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "workany"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "WorkAny",
4-
"version": "0.1.8",
4+
"version": "0.1.9",
55
"identifier": "ai.thinkany.workany",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

src/components/settings/tabs/AboutSettings.tsx

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,15 @@ export function AboutSettings() {
8282
<span className="text-muted-foreground text-sm">
8383
{t.settings.copyright}
8484
</span>
85-
<span className="text-foreground text-sm font-medium">
86-
© 2026 ThinkAny, LLC
87-
</span>
85+
<button
86+
onClick={() =>
87+
openExternalUrl('https://thinkany.ai?utm_source=workany_desktop')
88+
}
89+
className="text-foreground hover:text-primary flex cursor-pointer items-center gap-1 text-sm font-medium transition-colors"
90+
>
91+
© 2026 ThinkAny
92+
<ExternalLink className="size-3" />
93+
</button>
8894
</div>
8995
<div className="border-border flex items-center justify-between rounded-lg border p-3">
9096
<span className="text-muted-foreground text-sm">
@@ -122,7 +128,25 @@ export function AboutSettings() {
122128
className="border-border text-foreground hover:bg-accent flex cursor-pointer items-center gap-2 rounded-lg border px-4 py-2 text-sm transition-colors"
123129
>
124130
<Github className="size-4" />
125-
GitHub
131+
{t.settings.viewSource}
132+
</button>
133+
<button
134+
onClick={() => openExternalUrl('https://discord.gg/rDSmZ8HS39')}
135+
className="border-border text-foreground hover:bg-accent flex cursor-pointer items-center gap-2 rounded-lg border px-4 py-2 text-sm transition-colors"
136+
>
137+
<svg className="size-4" viewBox="0 0 24 24" fill="currentColor">
138+
<path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z" />
139+
</svg>
140+
{t.settings.joinCommunity}
141+
</button>
142+
<button
143+
onClick={() => openExternalUrl('https://x.com/workanyai')}
144+
className="border-border text-foreground hover:bg-accent flex cursor-pointer items-center gap-2 rounded-lg border px-4 py-2 text-sm transition-colors"
145+
>
146+
<svg className="size-4" viewBox="0 0 24 24" fill="currentColor">
147+
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
148+
</svg>
149+
{t.settings.followUs}
126150
</button>
127151
<button
128152
onClick={() =>

src/config/locale/messages/en/settings.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,9 @@ export default {
198198
copyright: 'Copyright',
199199
license: 'License',
200200
website: 'Website',
201+
viewSource: 'View Source',
202+
joinCommunity: 'Join Community',
203+
followUs: 'Follow Us',
201204
reportIssue: 'Report Issue',
202205
builtWith: 'Some components built with',
203206
built: '',

src/config/locale/messages/zh/settings.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ export default {
190190
copyright: '版权',
191191
license: '许可证',
192192
website: '官网',
193+
viewSource: '查看源码',
194+
joinCommunity: '加入社区',
195+
followUs: '关注我们',
193196
reportIssue: '反馈问题',
194197
builtWith: '部分组件使用',
195198
built: '构建',

0 commit comments

Comments
 (0)