Skip to content

Commit

Permalink
release 2.0.0: Eadem mutata resurgo.
Browse files Browse the repository at this point in the history
  • Loading branch information
celesWuff committed Aug 21, 2024
1 parent 71e62b5 commit e1e17e0
Show file tree
Hide file tree
Showing 32 changed files with 4,293 additions and 556 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Deploy
on:
push:
branches:
- 2.x
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- name: Build
run: |
npm install
npm run build
- name: Upload
uses: actions/upload-pages-artifact@v3
with:
path: dist

deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ yarn-error.log*
/dist
/workers-site
wrangler.toml

# deputy
/src/deputy.wasm
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
# 🛀 蓝牙水控器 FOSS

深圳市常工电子“蓝牙水控器”控制程序的开源实现。适用于国内各大高校宿舍热水器。

![waterctl](waterctl.jpg)

## 限时活动:waterctl KOTH Challenge

https://github.com/celesWuff/waterctl/issues/41

## 🏃 使用

- 🌎 开始使用: https://celeswuff.github.io/waterctl/
- 不能用?请先看看”疑难解答“: https://github.com/celesWuff/waterctl/blob/gh-pages/FAQ.md
- 不能用?请先看看”疑难解答“: https://github.com/celesWuff/waterctl/blob/2.x/FAQ.md

## ✨ 特性

- 🌐 真正离线使用,不依赖互联网连接(你可以在离线状态下打开本应用的链接)
- 🖕 完全脱离“微信”,夺回对科技的控制权
- ⚛️ 使用开放的 Web 技术构建
Expand All @@ -20,10 +27,12 @@
- 🛠 更多特性开发中

## ♿ 引流位

- [celesWuff/wateremu](https://github.com/celesWuff/wateremu) 蓝牙水控器 模拟器
- [FudanDeDRM](https://gist.github.com/celesWuff/f54c02c2d73c40f9250c21fdc6fb4630) Demo Code for Retrieving Later Publicly Published, Internally Accessible Dissertations and Theses from Fudan University
- [celesWuff/drinkctl](https://github.com/celesWuff/drinkctl) “点点” app 扫码饮水的开源实现
- [celesWuff/ktpWarp](https://github.com/celesWuff/ktpwarp-server) 课堂派自动签到

## 📜 开源许可

基于 [MIT license](https://opensource.org/licenses/MIT) 许可进行开源。
Loading

0 comments on commit e1e17e0

Please sign in to comment.