Skip to content

Commit

Permalink
feat: Update version to 2.0.8, change current semester to Fall 24, an…
Browse files Browse the repository at this point in the history
…d add department constants
  • Loading branch information
monzim committed Dec 7, 2024
1 parent e0a8afa commit ffc5a6a
Show file tree
Hide file tree
Showing 10 changed files with 9,677 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o main .

FROM alpine:3.19.1

LABEL name="UIU Discord Bot" version="2.0.7"
LABEL name="UIU Discord Bot" version="2.0.8"
LABEL author="Azraf Al Monzim"
LABEL maintainer="Azraf Al Monzim"

Expand Down
23 changes: 23 additions & 0 deletions Notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package uiuscraper

import "time"

type Department string

const (
DepartmentAll Department = "ALL"
DepartmentCSE Department = "BSCSE" // Computer Science & Engineering
DepartmentDataScience Department = "BSDS" // Data Science
DepartmentEEE Department = "EEE" // Electrical & Electronic Engineering
DepartmentCivil Department = "CE" // Civil Engineering
DepartmentPharmacy Department = "Pharmacy" // Pharmacy
DepartmentEnglish Department = "English" // English
DepartmentEDS Department = "EDS" // Environment and Development Studies
DepartmentMSJ Department = "MSJ" // Media Studies and Journalism
DepartmentSoBE Department = "SoBE" // School of Business and Economics
DepartmentAIS Department = "AIS" // Accounting & Information Systems
DepartmentEconomics Department = "Economics" // Economics
DepartmentMDS Department = "MDS" // Development Studies
DepartmentBiotech Department = "BSBGE" // Biotechnology and Genetic Engineering
DepartmentINS Department = "INS" // Institute of Natural Sciences
)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- last update -->

`Last Updated: 2024-07-13`
Summer 24 Mid Term Exam Routine has been published. Please check the exam time using the `/exam-time` command.
`Last Updated: 2024-12-07`
Fall 24 Mid Term Exam Routine has been published. Please check the exam time using the `/exam-time` command.

Welcome to the UIU Discord Bot, a bot designed to help you get all the information you need about the United International University (UIU). This bot is designed to provide you with all the information you need about the university, including the academic calendar, exam time, upcoming holidays, and more.

Expand Down
2 changes: 1 addition & 1 deletion commands/exam_time.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var (
SUPPORT_STRING = utils.SUPPORT_MESSAGE
)

const currentSemester = models.FINAL_SUMMER_24
const currentSemester = models.FALL_MID_24

var examTime = Commnad{
Trigger: "exam-time",
Expand Down
4 changes: 2 additions & 2 deletions commands/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/bwmarrin/discordgo"
)

var VERSION = "2.0.7"
var BUILD = time.Date(2024, time.November, 15, 02, 00, 00, 00, time.UTC)
var VERSION = "2.0.8"
var BUILD = time.Date(2024, time.December, 07, 15, 42, 00, 00, time.UTC)

var handlerVersion = Commnad{
Trigger: "version",
Expand Down
603 changes: 603 additions & 0 deletions data/24_FALL_MID.csv

Large diffs are not rendered by default.

Loading

0 comments on commit ffc5a6a

Please sign in to comment.