Skip to content

Commit cf0f752

Browse files
Finish 7.0.0-beta.1
2 parents ffa91a9 + 667a157 commit cf0f752

File tree

12 files changed

+54
-21
lines changed

12 files changed

+54
-21
lines changed

appcore/angular.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,14 @@
7474
]
7575
},
7676
"extension-prod": {
77-
"optimization": true,
77+
"optimization": {
78+
"scripts": true,
79+
"styles": {
80+
"minify": true,
81+
"inlineCritical": false
82+
},
83+
"fonts": true
84+
},
7885
"outputHashing": "all",
7986
"sourceMap": false,
8087
"namedChunks": false,

appcore/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.

appcore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elevate-sports-app",
3-
"version": "7.0.0-beta.0",
3+
"version": "7.0.0-beta.1",
44
"license": "MPL-2.0",
55
"scripts": {
66
"ng": "ng",

appcore/src/app/shared/services/versions/impl/extension-versions-provider.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Platform } from "@elevate/shared/enums/platform.enum";
99

1010
@Injectable()
1111
export class ExtensionVersionsProvider extends VersionsProvider {
12-
private static readonly EXT_NAME: string = "crx";
12+
private static readonly EXT_NAME: string = "zip";
1313

1414
constructor(
1515
@Inject(HttpClient) public readonly httpClient: HttpClient,

desktop/package-lock.json

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

desktop/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "elevate-sports-app",
33
"description": "Elevate your training experience and goals! Track your fitness and progressions over time. Analyse deeper your activities. And more...",
4-
"version": "7.0.0-beta.0",
4+
"version": "7.0.0-beta.1",
55
"scripts": {
66
"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);}\";",
77
"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()}));\"",
@@ -57,7 +57,7 @@
5757
},
5858
"engineStrict": true,
5959
"dependencies": {
60-
"@thomaschampagne/sports-lib": "^6.0.1",
60+
"@thomaschampagne/sports-lib": "^6.0.2",
6161
"@xmldom/xmldom": "^0.8.0",
6262
"7zip-bin": "^5.1.1",
6363
"axios": "^0.21.4",

desktop/src/main.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,29 @@ class Main {
525525
label: "File",
526526
submenu: [isMacOs ? { role: "close" } : { role: "quit" }]
527527
},
528+
{
529+
label: "Edit",
530+
submenu: [
531+
{ role: "undo" },
532+
{ role: "redo" },
533+
{ type: "separator" },
534+
{ role: "cut" },
535+
{ role: "copy" },
536+
{ role: "paste" },
537+
...(isMacOs
538+
? [
539+
{ role: "pasteAndMatchStyle" },
540+
{ role: "delete" },
541+
{ role: "selectAll" },
542+
{ type: "separator" },
543+
{
544+
label: "Speech",
545+
submenu: [{ role: "startSpeaking" }, { role: "stopSpeaking" }]
546+
}
547+
]
548+
: [{ role: "delete" }, { type: "separator" }, { role: "selectAll" }])
549+
]
550+
},
528551
{
529552
label: "View",
530553
submenu: [{ role: "togglefullscreen" }]

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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elevate-sports-app",
3-
"version": "7.0.0-beta.0",
3+
"version": "7.0.0-beta.1",
44
"description": "Wrap the needed tools required to cook Elevate desktop and web extension",
55
"maintainers": [
66
{

webextension/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"name": "Elevate for Strava",
44
"short_name": "Elevate",
55
"description": "Elevate your strava experience and goals! Track your fitness and progressions over time. Analyse deeper your activities. And more...",
6-
"version": "7.0.0.0",
7-
"version_name": "7.0.0-0",
6+
"version": "7.0.0.1",
7+
"version_name": "7.0.0-1",
88
"background": {
99
"scripts": [
1010
"extension/installer.bundle.js",

0 commit comments

Comments
 (0)