File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -383,7 +383,7 @@ Index.updateTableHeaders = function () {
383383 * If so, flash another friendly notification inviting the user to check it out
384384 */
385385Index . 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 ) ;
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " comiclib"
7- version = " 0.0.1.dev2 "
7+ version = " 0.0.1a1 "
88authors = [
99 { name =" URenko" },
1010]
You can’t perform that action at this time.
0 commit comments