Skip to content

Commit e872ada

Browse files
committed
v0.0.1a1
1 parent 371a040 commit e872ada

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

comiclib/LANraragi/public/js/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ Index.updateTableHeaders = function () {
383383
* If so, flash another friendly notification inviting the user to check it out
384384
*/
385385
Index.checkVersion = function () {
386-
const githubAPI = "https://api.github.com/repos/difegue/lanraragi/releases/latest";
386+
const githubAPI = "https://api.github.com/repos/ComicLib/comiclib/releases/latest";
387387

388388
fetch(githubAPI)
389389
.then((response) => response.json())
@@ -431,7 +431,7 @@ Index.fetchChangelog = function () {
431431
if (localStorage.lrrVersion !== Index.serverVersion) {
432432
localStorage.lrrVersion = Index.serverVersion;
433433

434-
fetch("https://api.github.com/repos/difegue/lanraragi/releases/latest", { method: "GET" })
434+
fetch("https://api.github.com/repos/ComicLib/comiclib/releases/latest", { method: "GET" })
435435
.then((response) => (response.ok ? response.json() : { error: "Response was not OK" }))
436436
.then((data) => {
437437
if (data.error) throw new Error(data.error);

comiclib/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -504,12 +504,12 @@ def info():
504504
return {
505505
"name": "ComicLib",
506506
"motd": "Welcome to the library powered by ComicLib!",
507-
"version": "0.0.1.dev2",
507+
"version": "0.0.1a1",
508508
"version_name": "Kaosu",
509509
"version_desc": "Ababababa",
510510
"total_pages_read": "0",
511511
"has_password": "0",
512-
"debug_mode": "1",
512+
"debug_mode": "1" if settings.debug else "0",
513513
"nofun_mode": "0",
514514
"archives_per_page": "100",
515515
"server_resizes_images": "0",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "comiclib"
7-
version = "0.0.1.dev2"
7+
version = "0.0.1a1"
88
authors = [
99
{ name="URenko" },
1010
]

0 commit comments

Comments
 (0)