Skip to content

Commit

Permalink
Merge pull request #2 from fabiolucenaribas/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
fabiolucenaribas authored May 24, 2024
2 parents bc7929f + 14d3d28 commit f4807ec
Show file tree
Hide file tree
Showing 81 changed files with 24,240 additions and 25,245 deletions.
17 changes: 0 additions & 17 deletions .browserslistrc

This file was deleted.

8 changes: 3 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/ng-cli-compat",
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"prefer-arrow/prefer-arrow-functions": 0,
"@angular-eslint/directive-selector": 0,
"@angular-eslint/directive-selector": 0,
"@angular-eslint/component-selector": [
"error",
{
Expand All @@ -44,8 +43,7 @@
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {
}
"rules": {}
}
]
}
19 changes: 13 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,23 @@
"styles": [
"src/theme/variables.scss",
"src/global.scss",
"src/assets/layout/css/blue/layout-light.css",
"src/assets/theme/blue/theme-light.css",
"src/assets/layout/css/blue/layout-dark.css",
"src/assets/theme/blue/theme-dark.css",
"src/assets/css/layout.css",
"node_modules/primeng/resources/primeng.min.css",
"node_modules/primeicons/primeicons.css",
"node_modules/primeflex/primeflex.css"
"node_modules/primeflex/primeflex.css",
{
"input": "src/theme/theme-dark.css",
"bundleName": "theme-dark",
"inject": false
},
{
"input": "src/theme/theme-light.css",
"bundleName": "theme-light",
"inject": false
}
],
"scripts": [],
"optimization": true,
"optimization": false,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
Expand Down
Binary file not shown.
Binary file added app/assets/icon.icns
Binary file not shown.
Binary file added app/assets/icon.ico
Binary file not shown.
Binary file added app/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions app/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ function createWindow(): BrowserWindow {
win = new BrowserWindow({
x: 0,
y: 0,
width: size.width,
height: size.height,
minWidth: 940,
minHeight: 560,
width: 1600,
height: 800,
center:true,
webPreferences: {
nodeIntegration: true,
allowRunningInsecureContent: (serve) ? true : false,
Expand All @@ -26,6 +29,7 @@ function createWindow(): BrowserWindow {
},
});

win.setMenu(null)

if (serve) {
win.webContents.openDevTools();
Expand Down
Loading

0 comments on commit f4807ec

Please sign in to comment.