mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 21:14:23 +00:00
Make the news View working via the tty interface, and made some more
i18n stuff & update some more to add images and unknown data oh, also paragraphs are now a thing :) and do so much debugging.
This commit is contained in:
parent
b62a3cda3d
commit
8975812447
8 changed files with 177 additions and 201 deletions
|
@ -41,6 +41,7 @@ import AboutNewsOrgWindow from "~/components/app/windows/aboutNewsOrg.vue";
|
|||
import TTYWindow from "~/components/app/windows/tty.vue";
|
||||
import FavStaredWindow from "~/components/app/windows/fav.vue";
|
||||
import Error404Window from "~/components/app/windows/error404.vue";
|
||||
import NewsViewWindow from "~/components/app/windows/newsView.vue";
|
||||
|
||||
// Icons
|
||||
import {
|
||||
|
@ -171,6 +172,14 @@ const associAppWindow = [
|
|||
height: "400px",
|
||||
black: true,
|
||||
},
|
||||
{
|
||||
name: "newsView",
|
||||
id: "12",
|
||||
title: t("app.newsview"),
|
||||
component: NewsViewWindow,
|
||||
width: "600px",
|
||||
height: "400px",
|
||||
},
|
||||
];
|
||||
|
||||
/*
|
||||
|
@ -288,6 +297,10 @@ onMounted(async () => {
|
|||
openApp.value = route.query.openapp;
|
||||
openAppId.value = route.query.id;
|
||||
if (openApp.value) {
|
||||
// DO NOT REMOVE THIS FUNCTION!! IT WILL ABSOLUTELY 100% FAIL!
|
||||
if (openApp.value === "newsView") {
|
||||
return;
|
||||
}
|
||||
openWindow(openApp.value);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue