Compare commits
2 Commits
52974aa0b4
...
v0.1.0-alp
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a0c729b9a | |||
| 057a570e43 |
36
CHANGELOG.md
36
CHANGELOG.md
@@ -1,5 +1,41 @@
|
||||
# All Changes to LST can be found below.
|
||||
|
||||
## [0.1.0-alpha.2](https://git.tuffraid.net/cowch/lst_v3/compare/v0.1.0-alpha.1...v0.1.0-alpha.2) (2026-05-23)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* **build:** gives a rabbit hole error
|
||||
|
||||
### 🌟 Enhancements
|
||||
|
||||
* **opendock:** added in new article link setup for fine tuning how od works ([3892111](https://git.tuffraid.net/cowch/lst_v3/commits/389211186f00cb8a6fdd5de092a944fa7e5898aa))
|
||||
* **opendock:** scheduing updates ([1840ac5](https://git.tuffraid.net/cowch/lst_v3/commits/1840ac5e580c726c452216480b6e14e7c52a0f35)), closes [#23](https://git.tuffraid.net/cowch/lst_v3/issues/23)
|
||||
|
||||
|
||||
### 🐛 Bug fixes
|
||||
|
||||
* **build:** crashes when files changed :( ([1f6637c](https://git.tuffraid.net/cowch/lst_v3/commits/1f6637c512dcd465c5000f8d1baaa8e76766edc1)), closes [#24](https://git.tuffraid.net/cowch/lst_v3/issues/24)
|
||||
* **docs:** wrong location for images ([057a570](https://git.tuffraid.net/cowch/lst_v3/commits/057a570e43a8e1763652d98244c90999c3fccd42))
|
||||
* **mobile:** correction to axios helper ([ecfbda9](https://git.tuffraid.net/cowch/lst_v3/commits/ecfbda9036f3d68c93e9c1d81021efa8093f18e2))
|
||||
* **sql queries:** disable job would error so now we will check if it exists before trying to kill it ([636daae](https://git.tuffraid.net/cowch/lst_v3/commits/636daaed0adeda908e7e850a4f5bb20d7bbef861))
|
||||
|
||||
|
||||
### 📚 Documentation
|
||||
|
||||
* **mobile:** updated imgs to be a little smaller ([3a27fd8](https://git.tuffraid.net/cowch/lst_v3/commits/3a27fd8542c3fa4ad5520532c2f10c6e3eaa951c))
|
||||
|
||||
|
||||
### 🛠️ Code Refactor
|
||||
|
||||
* **mobile:** added missing error to the scanner ([52974aa](https://git.tuffraid.net/cowch/lst_v3/commits/52974aa0b4f21431777b773200a57f185b4babd2))
|
||||
* **opendock:** changes to how we do the intergration scheduling ([cd67c4d](https://git.tuffraid.net/cowch/lst_v3/commits/cd67c4de80b6f0244afc639a7360e9dc2ba97a21)), closes [#23](https://git.tuffraid.net/cowch/lst_v3/issues/23)
|
||||
|
||||
|
||||
### 📈 Project changes
|
||||
|
||||
* **docker:** changes to the ignore file ([71c8306](https://git.tuffraid.net/cowch/lst_v3/commits/71c83062cb644796ebbfd845084ac6c019206faa))
|
||||
|
||||
## [0.1.0-alpha.1](https://git.tuffraid.net/cowch/lst_v3/compare/v0.1.0-alpha.0...v0.1.0-alpha.1) (2026-05-19)
|
||||
|
||||
|
||||
|
||||
BIN
frontend/public/imgs/docs/mobile/test2-1.png
Normal file
BIN
frontend/public/imgs/docs/mobile/test2-1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
@@ -3,17 +3,20 @@
|
||||
import { Separator } from "../../components/ui/separator";
|
||||
|
||||
// image imports
|
||||
const images = import.meta.glob("/src/imgs/docs/mobile/*.{png,jpg,jpeg,webp}", {
|
||||
eager: true,
|
||||
query: "w=300;600;1200&format=webp",
|
||||
import: "default",
|
||||
}) as Record<string, string>;
|
||||
const images = import.meta.glob(
|
||||
"/public/imgs/docs/mobile/*.{png,jpg,jpeg,webp}",
|
||||
{
|
||||
eager: true,
|
||||
query: "w=300;600;1200&format=webp",
|
||||
import: "default",
|
||||
},
|
||||
) as Record<string, string>;
|
||||
|
||||
const server = window.LST_CONFIG?.server;
|
||||
|
||||
const firstScan = images[`/src/imgs/docs/mobile/${server}-1.png`];
|
||||
const secondScan = images[`/src/imgs/docs/mobile/${server}-2.png`];
|
||||
const thridScan = images[`/src/imgs/docs/mobile/${server}-3.png`];
|
||||
const firstScan = images[`/public/imgs/docs/mobile/${server}-1.png`];
|
||||
const secondScan = images[`/public/imgs/docs/mobile/${server}-2.png`];
|
||||
const thirdScan = images[`/public/imgs/docs/mobile/${server}-3.png`];
|
||||
|
||||
export default function UpdateInstructions() {
|
||||
// const getFile = useMutation({
|
||||
@@ -128,9 +131,9 @@ export default function UpdateInstructions() {
|
||||
<p>Scan Commands</p>
|
||||
<Separator className="m-3" />
|
||||
<div className="flex flex-col justify-center">
|
||||
<img src={firstScan} alt="Home" className="m-3" />
|
||||
<img src={secondScan} alt="Home" className="m-3" />
|
||||
<img src={thridScan} alt="Home" className="m-3" />
|
||||
<img src={firstScan} alt="First Scan" className="m-3" />
|
||||
<img src={secondScan} alt="Second Scan" className="m-3" />
|
||||
<img src={thirdScan} alt="Third Scan" className="m-3" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "lst_v3",
|
||||
"version": "0.1.0-alpha.1",
|
||||
"version": "0.1.0-alpha.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "lst_v3",
|
||||
"version": "0.1.0-alpha.1",
|
||||
"version": "0.1.0-alpha.2",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@dotenvx/dotenvx": "^1.57.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "lst_v3",
|
||||
"version": "0.1.0-alpha.1",
|
||||
"version": "0.1.0-alpha.2",
|
||||
"description": "The tool that supports us in our everyday alplaprod",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user