Skip to content

Commit

Permalink
Initial Release
Browse files Browse the repository at this point in the history
  • Loading branch information
PoopJournal committed Nov 12, 2023
1 parent 7e766f3 commit 26e9af4
Show file tree
Hide file tree
Showing 55 changed files with 21,161 additions and 500 deletions.
22 changes: 22 additions & 0 deletions README2.md
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
35 changes: 35 additions & 0 deletions assets/assets.d.ts
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;
}
10 changes: 10 additions & 0 deletions assets/entitlements.mac.plist
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 added assets/icon.icns
Binary file not shown.
Binary file added assets/icon.ico
Binary file not shown.
Binary file added 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 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.
16 changes: 16 additions & 0 deletions components.json
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"
}
}
Loading

0 comments on commit 26e9af4

Please sign in to comment.