Skip to content

Commit e7ab2ab

Browse files
committed
package: rename project name to flare
1 parent 155ed63 commit e7ab2ab

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
----------------------------------------------------------
2-
# Flaru Player by jooy2
2+
# Flare Player by jooy2
33
----------------------------------------------------------
44
Please use the build package only for personal testing. Distribution of packages for production/commercial use is not permitted.
55

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
![flaru-logo](src/renderer/public/images/flaru-logo.webp)
1+
![app-logo](src/renderer/public/images/app-logo.webp)
22

3-
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jooy2/flaru/blob/master/LICENSE) [![Version](https://img.shields.io/github/package-json/v/jooy2/flaru)](https://github.com/jooy2/flaru/tags) [![Downloads](https://img.shields.io/github/downloads/jooy2/flaru/total)](https://github.com/jooy2/flaru/releases) [![Followers](https://img.shields.io/github/followers/jooy2?style=social)](https://github.com/jooy2) ![Stars](https://img.shields.io/github/stars/jooy2/flaru?style=social) ![Commit Count](https://img.shields.io/github/commit-activity/y/jooy2/flaru)
3+
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jooy2/flare/blob/main/LICENSE) [![Version](https://img.shields.io/github/package-json/v/jooy2/flare)](https://github.com/jooy2/flaru/tags) [![Downloads](https://img.shields.io/github/downloads/jooy2/flaru/total)](https://github.com/jooy2/flaru/releases) [![Followers](https://img.shields.io/github/followers/jooy2?style=social)](https://github.com/jooy2) ![Stars](https://img.shields.io/github/stars/jooy2/flaru?style=social) ![Commit Count](https://img.shields.io/github/commit-activity/y/jooy2/flaru)
44

55
![Logo Image](.github/resources/readme-screenshot.webp)
66

7-
**Flaru** is an unofficial emulator based on [Ruffle Flash Emulator](https://ruffle.rs). Created to provide a friendly interface and enhanced playing experience.
7+
**Flare Player** is an unofficial emulator based on [Ruffle Flash Emulator](https://ruffle.rs). Created to provide a friendly interface and enhanced playing experience.
88

99
This application is simply implemented in JavaScript via Electron and is based on a self-hosted build of Ruffle, so performance may be somewhat lower than the official Ruffle desktop application.
1010

@@ -26,9 +26,9 @@ For the official desktop app, please see the following link: https://github.com/
2626

2727
## 💾 Downloads
2828

29-
- [Flaru Downloads page](https://github.com/jooy2/flaru/releases)
29+
- [Flare Downloads page](https://github.com/jooy2/flare/releases)
3030

31-
Since Flaru does not sign the application, you may receive a security warning upon installation. You can safely ignore the security warning as this app does not use any permissions other than reading system file resources (e.g. loading SWF files).
31+
Since Flare does not sign the application, you may receive a security warning upon installation. You can safely ignore the security warning as this app does not use any permissions other than reading system file resources (e.g. loading SWF files).
3232

3333
Accordingly, version check and automatic update are currently not supported. We recommend upgrading by visiting the GitHub Releases page at regular intervals to check for new versions.
3434

electron-builder.json5

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
productName: 'Flaru Player',
3-
appId: 'com.flaru.flaru',
4-
copyright: 'ⓒ 2021-2024 Jooy2 (jooy2.com)',
2+
productName: 'Flare Player',
3+
appId: 'com.flare.player',
4+
copyright: 'ⓒ 2021-2025 Jooy2 (jooy2.com)',
55
asar: true,
66
extends: null,
77
compression: 'maximum',
@@ -48,7 +48,7 @@
4848
],
4949
},
5050
linux: {
51-
executableName: 'flaru',
51+
executableName: 'flare',
5252
icon: 'buildAssets/installer',
5353
category: 'Game',
5454
target: [

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"name": "flaru-player",
3-
"displayName": "Flaru Player",
2+
"name": "flare-player",
3+
"displayName": "Flare Player",
44
"version": "1.14.0",
55
"versionCode": 1140,
66
"versionDate": "2024-11-22",
77
"ruffleVersionDate": "2024-11-22",
8-
"description": "Flaru SWF Flash Player",
8+
"description": "Flare SWF Flash Player",
99
"main": "dist/main/index.js",
1010
"private": true,
11-
"homepage": "https://github.com/jooy2/flaru",
11+
"homepage": "https://github.com/jooy2/flare",
1212
"author": "jooy2 <[email protected]>",
1313
"license": "MIT",
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/jooy2/flaru.git"
16+
"url": "https://github.com/jooy2/flare.git"
1717
},
1818
"bugs": {
19-
"url": "https://github.com/jooy2/flaru/issues"
19+
"url": "https://github.com/jooy2/flare/issues"
2020
},
2121
"engines": {
2222
"node": ">=20.0.0"

src/renderer/components/layouts/Layout.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import { useSelector } from 'react-redux';
1010
import { RootState } from '@/renderer/store';
1111

1212
const Layout = ({
13-
title = 'Flaru Player',
14-
titleTail = ' - Flaru Flash Player',
13+
title = 'Flare Player',
14+
titleTail = ' - Flare Flash Player',
1515
withTail = true,
1616
header = true,
1717
container = true,

src/renderer/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
http-equiv="Content-Security-Policy"
88
content="script-src 'self' 'unsafe-inline' 'unsafe-eval';"
99
/>
10-
<title>Flaru Player</title>
10+
<title>Flare Player</title>
1111
</head>
1212
<body>
1313
<noscript>Please allow JavaScript in your app!</noscript>
19.8 KB
Binary file not shown.
-6.3 KB
Binary file not shown.

src/renderer/screens/About.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ const About = () => {
3232
`}
3333
draggable="false"
3434
alt="logo"
35-
src="images/flaru-logo.webp"
35+
src="images/app-logo.webp"
3636
/>
3737
<Typography component="p" variant="body1">
38-
Flaru {stateAppScreen.mainGlobalValues.APP_VERSION_NAME} By {author}
38+
Flare Player {stateAppScreen.mainGlobalValues.APP_VERSION_NAME} By {author}
3939
</Typography>
4040
<Typography component="p" variant="body1">
4141
Flash Emulator Based on Ruffle (Nightly {ruffleVersion})
@@ -51,7 +51,7 @@ const About = () => {
5151
</Button>
5252
<Button
5353
startIcon={<Update />}
54-
onClick={(ev) => openExternalLink(ev, 'https://github.com/jooy2/flaru/releases')}
54+
onClick={(ev) => openExternalLink(ev, 'https://github.com/jooy2/flare/releases')}
5555
>
5656
{t('menu:update-check')}
5757
</Button>

0 commit comments

Comments
 (0)