Skip to content

Commit 597de2a

Browse files
Icon/branding updates
1 parent 5a1897d commit 597de2a

File tree

10 files changed

+8
-32
lines changed

10 files changed

+8
-32
lines changed

docs/branding/LittlePhatty.gif

343 KB
Loading

docs/branding/loading-screen.fla

30.2 MB
Binary file not shown.

forge.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ module.exports = {
3232
config: {
3333
name: "soundshed",
3434
certificateFile: process.env.WIN_CODE_SIGNING_P12,
35-
certificatePassword: process.env.WIN_CODE_SIGNING_PWD
35+
certificatePassword: process.env.WIN_CODE_SIGNING_PWD,
36+
loadingGif: "images/icon/loading-screen.gif",
37+
iconUrl:"https://soundshed.com/favicon.ico",
38+
setupIcon:"images/icon/favicon.ico"
3639
}
3740
},
3841
{

images/icon/favicon.ico

44.4 KB
Binary file not shown.

images/icon/icon.png

-10.9 KB
Loading

images/icon/loading-screen.gif

447 KB
Loading

package-lock.json

Lines changed: 1 addition & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
"bluetooth-serial-port": "github:webprofusion-chrisc/node-bluetooth-serial-port",
4646
"bootstrap": "^5.0.0-beta1",
4747
"electron-google-analytics": "^1.0.2",
48-
"electron-squirrel-startup": "^1.0.0",
4948
"install": "^0.13.0",
5049
"jwt-decode": "^3.1.2",
5150
"nanoid": "^3.1.20",

src/core/appViewModel.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class AppViewModel {
7474

7575
logPageView(category: string) {
7676
const appInfo = AppStateStore.getRawState().appInfo;
77-
this.analytics.screen('soundshed-app', appInfo?.version, 'com.soundshed.app', 'com.soundshed.app', category).then(() => { });
77+
this.analytics.screen('soundshed-app', appInfo?.version, 'com.soundshed.tones', 'com.soundshed.app', category).then(() => { });
7878
}
7979

8080
async performSignIn(login: Login): Promise<boolean> {
@@ -123,8 +123,6 @@ export class AppViewModel {
123123

124124
}
125125

126-
127-
128126
async deleteFavourite(tone: Tone) {
129127
if (confirm("Are you sure you wish to delete this tone [" + tone.name + "]?")) {
130128
let favourites: Tone[] = [];

src/main.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,21 +159,20 @@ function createWindow() {
159159
win = new BrowserWindow({
160160
width: 1280,
161161
height: 860,
162-
162+
icon:"./images/icon/favicon.ico",
163163
webPreferences: {
164164
nodeIntegration: true,
165165
enableRemoteModule: true,
166166
contextIsolation: false
167167
}
168168
})
169169

170-
win.webContents.setUserAgent("Dalvik/2.1.0 (Linux; U; Android 11; Pixel 3 Build/RQ1A.210105.003)");
170+
// win.webContents.setUserAgent("Dalvik/2.1.0 (Linux; U; Android 11; Pixel 3 Build/RQ1A.210105.003)");
171171

172172
if (app.isPackaged) {
173173
win.removeMenu();
174174
}
175175

176-
177176
win.loadFile('index.html');
178177
}
179178

0 commit comments

Comments
 (0)