v1.1.2 -> v1.1.3

This commit is contained in:
yoannchb-pro
2025-03-19 09:07:52 -04:00
parent f01785256c
commit 6e69830a2e
6 changed files with 11 additions and 6 deletions
+5
View File
@@ -1,5 +1,10 @@
# CHANGELOG
## v1.1.3
- Added `base url` and `max token` in config (by dmunozv04)
- Code dependencies update
## v1.1.2
- Advanced settings
+2 -2
View File
@@ -2,7 +2,7 @@
href="https://www.flaticon.com/free-icons/mortarboard" target="_blank" rel="noopener noreferrer"
title="Mortarboard icons created by itim2101 - Flaticon" ><img src="./extension/icon.png" alt="Mortarboard icons created by itim2101 - Flaticon" width="150" style="display:block; margin:auto;"></a></p>
# MoodleGPT 1.1.2
# MoodleGPT 1.1.3
This extension allows you to hide CHAT-GPT in a Moodle quiz. You just need to click on the question you want to solve, and CHAT-GPT will automatically provide the answer. However, one needs to be careful because as we know, CHAT-GPT can make errors especially in calculations.
@@ -12,7 +12,7 @@ Find the extension on the Chrome Webstore right [here](https://chrome.google.com
## Summary
- [MoodleGPT 1.1.2](#moodlegpt-112)
- [MoodleGPT 1.1.3](#moodlegpt-113)
- [Chrome Webstore](#chrome-webstore)
- [Summary](#summary)
- [Disclaimer !](#disclaimer-)
+1 -1
View File
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "MoodleGPT",
"version": "1.1.2",
"version": "1.1.3",
"description": "Hidden chat-gpt for your moodle quiz",
"permissions": ["storage"],
"action": {
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "moodlegpt",
"version": "1.1.2",
"version": "1.1.3",
"description": "This extension allows you to hide CHAT-GPT in a Moodle quiz.",
"scripts": {
"build": "npm run prettier && npm run lint && npm run fastBuild",
+1 -1
View File
@@ -1,4 +1,4 @@
const CURRENT_VERSION = '1.1.2';
const CURRENT_VERSION = '1.1.3';
const versionDisplay = document.querySelector('#version')!;
/**