Skip to content

Commit

Permalink
✨ icon 替换
Browse files Browse the repository at this point in the history
  • Loading branch information
muwoo committed Nov 18, 2023
1 parent 7e66b3f commit 583e993
Show file tree
Hide file tree
Showing 20 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ English | [简体中文](./README.zh-CN.md)


<div align= "center">
<img align="center" width=200 src="https://user-images.githubusercontent.com/21073039/128333805-73e086f0-5523-46a3-a096-cba80b904c46.png" />
<img align="center" width=200 src="./public/logo.png" />
</div>


Expand Down
5 changes: 2 additions & 3 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@


<div align= "center">
<img align="center" width=200 src="https://user-images.githubusercontent.com/21073039/128333805-73e086f0-5523-46a3-a096-cba80b904c46.png" />
<img align="center" width=200 src="./public/logo.png" />
</div>


<div align= "center">
<h1>Rubick</h1>

Expand All @@ -14,7 +13,7 @@
<img alt="release" src="https://img.shields.io/github/package-json/v/rubickCenter/rubick" />
</a>
<a href="https://github.com/rubickCenter/rubick/actions">
<img alt=building src=https://img.shields.io/github/workflow/status/rubickCenter/rubick/Build>
<img alt=building src=https://img.shields.io/github/actions/workflow/status/rubickCenter/rubick/main.yml>
</a>
<a href="https://github.com/rubickCenter/rubick/blob/master/LICENSE">
<img alt="npm" src="https://img.shields.io/github/license/rubickCenter/rubick" />
Expand Down
Binary file removed build/icons/256x256.png
Binary file not shown.
Binary file removed build/icons/icon.icns
Binary file not shown.
Binary file removed build/icons/icon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion feature/public/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"pluginName": "系统菜单",
"description": "系统菜单",
"main": "index.html",
"logo": "https://pic1.zhimg.com/80/v2-c09780808301668a82e6646cb42f0806_720w.png",
"logo": "https://pic1.zhimg.com/80/v2-29152fe716010751db835adf591421f8_720w.png",
"version": "0.0.0",
"preload":"preload.js",
"pluginType": "ui",
Expand Down
Binary file modified feature/src/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rubick",
"version": "4.1.7",
"version": "4.2.0-beta.1",
"author": "muwoo <2424880409@qq.com>",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion public/feature/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"pluginName": "系统菜单",
"description": "系统菜单",
"main": "index.html",
"logo": "https://pic1.zhimg.com/80/v2-c09780808301668a82e6646cb42f0806_720w.png",
"logo": "https://pic1.zhimg.com/80/v2-29152fe716010751db835adf591421f8_720w.png",
"version": "0.0.0",
"preload":"preload.js",
"pluginType": "ui",
Expand Down
Binary file modified public/icons/256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/icon.icns
Binary file not shown.
Binary file modified public/icons/icon.ico
Binary file not shown.
Binary file modified public/icons/icon@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/icons/icon@3x.png
Binary file not shown.
Binary file added public/icons/iconTemplate@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/common/constans/defaultConfig.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
version: 4,
version: 6,
perf: {
custom: {
theme: 'SPRING',
Expand Down
2 changes: 1 addition & 1 deletion src/main/common/tray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function createTray(window: BrowserWindow): Promise<Tray> {
return new Promise((resolve) => {
let icon;
if (commonConst.macOS()) {
icon = './icons/icon@3x.png';
icon = './icons/iconTemplate@2x.png';
} else if (commonConst.windows()) {
icon =
parseInt(os.release()) < 10
Expand Down
Binary file modified src/renderer/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ module.exports = {
include: 'public/installer.nsh',
},
linux: {
icon: 'build/icons/',
icon: 'public/icons/',
publish: ['github'],
target: 'deb',
},
},
},
Expand Down

0 comments on commit 583e993

Please sign in to comment.