Skip to content

Commit 6beab32

Browse files
committed
fixed the name case, prepared pre-release
1 parent 7b4ae6c commit 6beab32

File tree

8 files changed

+17
-21
lines changed

8 files changed

+17
-21
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- markdownlint-disable MD033 -->
2-
# GOptivum
2+
# Goptivum
33

44
## Overview
55

6-
**GOptivum** is a modern replacement for the legacy schedule generator program from Vulcan, named Optivum. It is designed to scrape schedule data from [zsem.edu.pl/plany](https://zsem.edu.pl/plany) and provide data persistence, an improved (definitely) UI/UX, and a publicly available API with Server-Sent Events (SSE). This project is intended to be used as a replacement for my school's version of the software, but can easily (the scraper package) be modified to work with other school's versions of that software.
6+
**Goptivum** is a modern replacement for the legacy schedule generator program from Vulcan, named Optivum. It is designed to scrape schedule data from [zsem.edu.pl/plany](https://zsem.edu.pl/plany) and provide data persistence, an improved (definitely) UI/UX, and a publicly available API with Server-Sent Events (SSE). This project is intended to be used as a replacement for my school's version of the software, but can easily (the scraper package) be modified to work with other school's versions of that software.
77

88
> **Note**: Vulcan *(hawk-tuah)* is a **very evil** and **greedy** corporation and actively blocks open-source projects, making it difficult for developers to create alternatives to their poorly made software. For more information on this situation I suggest you visit this site [czyvulcanapojebalo.pl](https://czyvulcanapojebalo.pl/)
99
@@ -20,7 +20,7 @@ You can currently use the application by visiting [zsem.smuggr.xyz](https://zsem
2020

2121
## Deployment
2222

23-
To deploy GOptivum, you need to download a precompiled binary or compile it from source. The following tools are required:
23+
To deploy Goptivum, you need to download a precompiled binary or compile it from source. The following tools are required:
2424

2525
- Go (version >1.23.1)
2626
- Make

web/prod/components.d.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,17 @@ declare module 'vue' {
99
export interface GlobalComponents {
1010
AnimationsSwitcher: typeof import('./src/components/inputs/AnimationsSwitcher.vue')['default']
1111
Clock: typeof import('./src/components/outputs/Clock.vue')['default']
12-
copy: typeof import('./src/components/outputs/ScheduleTable copy.vue')['default']
1312
Digit: typeof import('./src/components/outputs/Digit.vue')['default']
1413
DutiesTable: typeof import('./src/components/outputs/DutiesTable.vue')['default']
1514
HomePage: typeof import('./src/components/pages/HomePage.vue')['default']
1615
LanguageSwitcher: typeof import('./src/components/inputs/LanguageSwitcher.vue')['default']
1716
Overlay: typeof import('./src/components/outputs/Overlay.vue')['default']
18-
PracticesPage: typeof import('./src/components/pages/PracticesPage.vue')['default']
1917
ResourceButton: typeof import('./src/components/inputs/ResourceButton.vue')['default']
2018
ResourcePage: typeof import('./src/components/pages/ResourcePage.vue')['default']
2119
RouterLink: typeof import('vue-router')['RouterLink']
2220
RouterView: typeof import('vue-router')['RouterView']
2321
ScheduleTable: typeof import('./src/components/outputs/ScheduleTable.vue')['default']
2422
SettingsPage: typeof import('./src/components/pages/SettingsPage.vue')['default']
25-
SimplerTable: typeof import('./src/components/outputs/SimplerTable.vue')['default']
2623
ThemeSwitcher: typeof import('./src/components/inputs/ThemeSwitcher.vue')['default']
2724
Weather: typeof import('./src/components/outputs/Weather.vue')['default']
2825
}

web/prod/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8" />
66
<link rel="icon" href="/favicon.ico" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>GOptivum</title>
8+
<title>Goptivum</title>
99
</head>
1010

1111
<body>

web/prod/src/components/outputs/Overlay.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,16 @@ const items = computed(() => [
8080
prependIcon: 'mdi-door',
8181
route: '/rooms',
8282
},
83-
{
84-
title: t('page.duties'),
85-
prependIcon: 'mdi-shield-star-outline',
86-
route: '/duties',
87-
},
88-
{
89-
title: t('page.practices'),
90-
prependIcon: 'mdi-hammer-wrench',
91-
route: '/practices',
92-
},
83+
// {
84+
// title: t('page.duties'),
85+
// prependIcon: 'mdi-shield-star-outline',
86+
// route: '/duties',
87+
// },
88+
// {
89+
// title: t('page.practices'),
90+
// prependIcon: 'mdi-hammer-wrench',
91+
// route: '/practices',
92+
// },
9393
// {
9494
// title: t('page.map'),
9595
// prependIcon: 'mdi-map-outline',

web/prod/src/locales/en.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default {
116116
},
117117
},
118118
page: {
119-
title: 'GOptivum - A Better Timetable',
119+
title: 'Goptivum - A Better Timetable',
120120
qr_code: 'QR Code',
121121
close: 'Close',
122122
not_found: 'Page not found',

web/prod/src/locales/pl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default {
118118
},
119119
},
120120
page: {
121-
title: 'GOptivum - Lepszy Plan Lekcji',
121+
title: 'Goptivum - Lepszy Plan Lekcji',
122122
qr_code: 'Kod QR',
123123
close: 'Zamknij',
124124
not_found: 'Nie znaleziono strony',

web/prod/src/locales/uk.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default {
118118
},
119119
},
120120
page: {
121-
title: 'GOptivum - Кращий Розклад',
121+
title: 'Goptivum - Кращий Розклад',
122122
qr_code: 'QR-код',
123123
close: 'Закрити',
124124
not_found: 'Сторінку не знайдено',

web/prod/src/router.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import SettingsPage from './components/pages/SettingsPage.vue'
44

55
import ResourcePage from './components/pages/ResourcePage.vue'
66
import ScheduleTable from './components/outputs/ScheduleTable.vue'
7-
import DutiesTable from './components/outputs/DutiesTable.vue'
87

98
const routes = [
109
{ path: '/', component: MainPage, meta: { titleKey: 'page.home' } },

0 commit comments

Comments
 (0)