canvaslms-cli 1.9.0 → 1.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.9.1] - 2026-01-04
9
+
10
+ - Remove AI generated text from readme
11
+
8
12
  ## [1.9.0] - 2026-01-04
9
13
 
10
14
  ### Added
package/README.md CHANGED
@@ -7,36 +7,6 @@
7
7
 
8
8
  A modern, user-friendly command-line interface for Canvas LMS. Manage courses, assignments, submissions, grades, and more directly from your terminal.
9
9
 
10
- ## ✨ New Features
11
-
12
- ### 📊 GPA Calculator
13
-
14
- - Calculate your overall GPA across all courses on a 4.0 scale
15
- - Include or exclude past/completed courses
16
- - See letter grades and quality points for each course
17
- - Automatic GPA calculation with detailed breakdown
18
-
19
- ### 🎯 What-If Grade Calculator
20
-
21
- - Find out what grade you need on remaining work to achieve your target
22
- - Interactive calculator with clear feedback
23
- - Shows if your goal is achievable
24
-
25
- ### 📥 Bulk File Download
26
-
27
- - Download ALL files from a course at once
28
- - Preserves Canvas folder structure
29
- - Skips already downloaded files
30
- - Progress tracking for each file
31
-
32
- ### 🔍 Advanced Assignment Filtering
33
-
34
- - View assignments from **all courses** at once
35
- - Filter by **missing** assignments
36
- - Filter by **due this week**
37
- - Combine filters (e.g., all missing assignments across all courses)
38
- - Smart sorting by due date
39
-
40
10
  ## Features
41
11
 
42
12
  - List and filter enrolled/starred courses
package/dist/src/index.js CHANGED
@@ -20,7 +20,7 @@ const program = new Command();
20
20
  program
21
21
  .name("canvas")
22
22
  .description("Canvas LMS Command Line Interface")
23
- .version("1.9.0", "-V, --version", "Output the current version");
23
+ .version("1.9.2", "-V, --version", "Output the current version");
24
24
  program
25
25
  .command("list")
26
26
  .alias("courses")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvaslms-cli",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
4
4
  "description": "A command line tool for interacting with Canvas LMS",
5
5
  "keywords": [
6
6
  "api",
@@ -50,7 +50,10 @@
50
50
  "test": "bun test",
51
51
  "test:coverage": "bun test --coverage",
52
52
  "prepublishOnly": "bun run build && bun test",
53
- "prepare": "bunx husky"
53
+ "prepare": "bunx husky",
54
+ "version:patch": "bun scripts/bump-version.ts patch",
55
+ "version:minor": "bun scripts/bump-version.ts minor",
56
+ "version:major": "bun scripts/bump-version.ts major"
54
57
  },
55
58
  "dependencies": {
56
59
  "chalk": "^5.6.2",