Skip to content

Commit cfe97f2

Browse files
authored
release: release & add generate release data and openapi generation(backend/front) scripts
1 parent f9ea445 commit cfe97f2

File tree

14 files changed

+111
-13
lines changed

14 files changed

+111
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ Electron/.erb/dll/**
158158
# release
159159
Electron/release/build/**
160160
Electron/release/app/dist/**
161+
release_temp/
161162

162163

163164
#python

Electron/package-lock.json

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

Electron/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"format:check": "prettier src/ --check --ignore-path .prettierignore",
2222
"package": "ts-node ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never",
2323
"package:win": "ts-node ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never --win",
24-
"package:linux:deb": "ts-node ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never --linux deb",
2524
"package:linux:appimage": "ts-node ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never --linux appimage",
2625
"rebuild": "electron-rebuild --parallel --types prod,dev,optional --module-dir release/app",
2726
"start": "ts-node ./.erb/scripts/check-port-in-use.js && npm run start:renderer",

Electron/release/app/package-lock.json

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

Electron/release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spotify-electron",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Spotify Electron is a cross-platform music streaming desktop app made with Electron-React frontend and Python-FastAPI-AWS Backend. The goal is to reproduce the original Spotify functionality while adding new ones like uploading songs",
55
"author": {
66
"name": "Antonio Martinez Fernandez",

Electron/src/swagger/api/core/OpenAPI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
2121

2222
export const OpenAPI: OpenAPIConfig = {
2323
BASE: '',
24-
VERSION: '2.0.0',
24+
VERSION: '2.0.1',
2525
WITH_CREDENTIALS: false,
2626
CREDENTIALS: 'include',
2727
TOKEN: undefined,

0 commit comments

Comments
 (0)