Skip to content

Commit

Permalink
Release (#800)
Browse files Browse the repository at this point in the history
* disable esbuild and strictTemplates
  • Loading branch information
whyboris authored Feb 26, 2023
1 parent f5f4fc7 commit 0306f8a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"projectType": "application",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser-esbuild",
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist",
"index": "src/index.html",
Expand Down
2 changes: 1 addition & 1 deletion electron-builder.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "Video Hub App 3",
"appId": "com.videohubapp.videohubapp3",
"copyright": "Copyright © 2021 Boris Yakubchik",
"copyright": "Copyright © 2023 Boris Yakubchik",
"directories": {
"output": "release/"
},
Expand Down
3 changes: 2 additions & 1 deletion i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@
"excludeDescription": "File names without",
"excludeHint": "Exclude filter",
"excludeMoreInfo": "Filter to exclude any videos that contain the filter word",
"favoritesDescription": "Show favorites icon on thumbnail",
"favoritesDescription": "Show favorites icon.",
"favoritesHint": "Show favorites icon",
"favoritesMoreInfo": "Clicking the heart sets the star rating to 5. All 5 star videos are favorites.",
"fileDescription": "File names with each",
"fileHint": "Video search",
"fileMoreInfo": "Filter for videos containing each of the search words",
Expand Down
1 change: 1 addition & 0 deletions src/app/common/settings-buttons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ export const SettingsButtons: SettingsButtonsType = {
hidden: false,
iconName: 'icon-heart',
settingsHeading: 'SETTINGS.favorites',
moreInfo: 'BUTTONS.favoritesMoreInfo',
title: 'BUTTONS.favoritesHint',
toggled: false
},
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compileOnSave": false,
"angularCompilerOptions": {
"strictTemplates": true
"strictTemplates": false
},
"compilerOptions": {
"baseUrl": "",
Expand Down

0 comments on commit 0306f8a

Please sign in to comment.