-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e766f3
commit 26e9af4
Showing
55 changed files
with
21,161 additions
and
500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# LibreLinkUpDekstop | ||
Application to launcher the products the company offers. | ||
|
||
## Building the application. | ||
Install NodeJS 20 on your machine. And goto the project root and run following commands. | ||
``` | ||
npm run install | ||
``` | ||
In order to generate the executables. Run following. | ||
``` | ||
npm run package | ||
``` | ||
To generate executables for all platforms run following. | ||
``` | ||
npm run package-all | ||
``` | ||
|
||
Note: Executables can be found on `release/build` folder | ||
|
||
## Customizing the application | ||
- Localization is located on `src/renderer/i18n` folder. | ||
- App configuration can be found on `src/renderer/config` folder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
type Styles = Record<string, string>; | ||
|
||
declare module '*.svg' { | ||
import React = require('react'); | ||
|
||
export const ReactComponent: React.FC<React.SVGProps<SVGSVGElement>>; | ||
|
||
const content: string; | ||
export default content; | ||
} | ||
|
||
declare module '*.png' { | ||
const content: string; | ||
export default content; | ||
} | ||
|
||
declare module '*.jpg' { | ||
const content: string; | ||
export default content; | ||
} | ||
|
||
declare module '*.scss' { | ||
const content: Styles; | ||
export default content; | ||
} | ||
|
||
declare module '*.sass' { | ||
const content: Styles; | ||
export default content; | ||
} | ||
|
||
declare module '*.css' { | ||
const content: Styles; | ||
export default content; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> | ||
<true/> | ||
<key>com.apple.security.cs.allow-jit</key> | ||
<true/> | ||
</dict> | ||
</plist> |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"$schema": "https://ui.shadcn.com/schema.json", | ||
"style": "new-york", | ||
"rsc": false, | ||
"tsx": true, | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "src/renderer/globals.css", | ||
"baseColor": "slate", | ||
"cssVariables": true | ||
}, | ||
"aliases": { | ||
"components": "@/components", | ||
"utils": "@/lib/utils" | ||
} | ||
} |
Oops, something went wrong.