Skip to content

Commit

Permalink
Finish 7.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaschampagne committed Feb 26, 2022
2 parents ffa91a9 + 667a157 commit cf0f752
Show file tree
Hide file tree
Showing 12 changed files with 54 additions and 21 deletions.
9 changes: 8 additions & 1 deletion appcore/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,14 @@
]
},
"extension-prod": {
"optimization": true,
"optimization": {
"scripts": true,
"styles": {
"minify": true,
"inlineCritical": false
},
"fonts": true
},
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
Expand Down
4 changes: 2 additions & 2 deletions appcore/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion appcore/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "elevate-sports-app",
"version": "7.0.0-beta.0",
"version": "7.0.0-beta.1",
"license": "MPL-2.0",
"scripts": {
"ng": "ng",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Platform } from "@elevate/shared/enums/platform.enum";

@Injectable()
export class ExtensionVersionsProvider extends VersionsProvider {
private static readonly EXT_NAME: string = "crx";
private static readonly EXT_NAME: string = "zip";

constructor(
@Inject(HttpClient) public readonly httpClient: HttpClient,
Expand Down
15 changes: 9 additions & 6 deletions desktop/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "elevate-sports-app",
"description": "Elevate your training experience and goals! Track your fitness and progressions over time. Analyse deeper your activities. And more...",
"version": "7.0.0-beta.0",
"version": "7.0.0-beta.1",
"scripts": {
"assert-app-exists": "node -e \"if ((require('fs').existsSync('./dist/app/')) === false) {console.log('Please run & wait for \\'npm start\\' task before.\\n\\n\\n\\n');process.exit(1);}\";",
"build:metadata": "node -e \"require('fs').writeFileSync('build_metadata.json', JSON.stringify({commit: require('child_process').execSync('git rev-parse HEAD').toString().trim(), date: new Date().toISOString()}));\"",
Expand Down Expand Up @@ -57,7 +57,7 @@
},
"engineStrict": true,
"dependencies": {
"@thomaschampagne/sports-lib": "^6.0.1",
"@thomaschampagne/sports-lib": "^6.0.2",
"@xmldom/xmldom": "^0.8.0",
"7zip-bin": "^5.1.1",
"axios": "^0.21.4",
Expand Down
23 changes: 23 additions & 0 deletions desktop/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,29 @@ class Main {
label: "File",
submenu: [isMacOs ? { role: "close" } : { role: "quit" }]
},
{
label: "Edit",
submenu: [
{ role: "undo" },
{ role: "redo" },
{ type: "separator" },
{ role: "cut" },
{ role: "copy" },
{ role: "paste" },
...(isMacOs
? [
{ role: "pasteAndMatchStyle" },
{ role: "delete" },
{ role: "selectAll" },
{ type: "separator" },
{
label: "Speech",
submenu: [{ role: "startSpeaking" }, { role: "stopSpeaking" }]
}
]
: [{ role: "delete" }, { type: "separator" }, { role: "selectAll" }])
]
},
{
label: "View",
submenu: [{ role: "togglefullscreen" }]
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "elevate-sports-app",
"version": "7.0.0-beta.0",
"version": "7.0.0-beta.1",
"description": "Wrap the needed tools required to cook Elevate desktop and web extension",
"maintainers": [
{
Expand Down
4 changes: 2 additions & 2 deletions webextension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"name": "Elevate for Strava",
"short_name": "Elevate",
"description": "Elevate your strava experience and goals! Track your fitness and progressions over time. Analyse deeper your activities. And more...",
"version": "7.0.0.0",
"version_name": "7.0.0-0",
"version": "7.0.0.1",
"version_name": "7.0.0-1",
"background": {
"scripts": [
"extension/installer.bundle.js",
Expand Down
4 changes: 2 additions & 2 deletions webextension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webextension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "elevate-sports-app",
"version": "7.0.0-beta.0",
"version": "7.0.0-beta.1",
"description": "Chrome based extension adding features for Strava website with new performances data and improved ergonomics.",
"maintainers": [
{
Expand Down

0 comments on commit cf0f752

Please sign in to comment.