From 56caa1c91d597912f5aa83f67e0bafda4243f296 Mon Sep 17 00:00:00 2001 From: yami Date: Fri, 20 Jan 2023 20:25:03 +0530 Subject: [PATCH] version-up major --- changelog.md | 21 ++++++++++++++------- electron/IS_PORTABLE.ts | 6 +++--- instructions.txt | 15 --------------- makeAll.js | 6 +++--- package.json | 2 +- src/Components/ReaderSettings.tsx | 1 - 6 files changed, 21 insertions(+), 30 deletions(-) delete mode 100644 instructions.txt diff --git a/changelog.md b/changelog.md index 02977a6..72c1f24 100644 --- a/changelog.md +++ b/changelog.md @@ -1,11 +1,18 @@ -**Full Changelog**: https://github.com/mienaiyami/auto-release-test/compare/v2.3.14...v2.3.15 +**Full Changelog**: https://github.com/mienaiyami/auto-release-test/compare/v2.3.15...v2.3.16 ## Changed -- test -- testttt -- testtttt + +- Scroll to current page after switching Reader mode. +- Scroll to current page after toggling vertically fit. +- Better checking for supported extensions. +- Improved Performance. + +## Added + +- Ability to edit themes (no need to create new theme after changing it). +- dev: + - Automated release ## Fixed -- 123123 -- sdfdsfsdf -- asdsdsadasdasdddasdasdas \ No newline at end of file + +- Page number not changing in "click to move" mode when size is low. diff --git a/electron/IS_PORTABLE.ts b/electron/IS_PORTABLE.ts index 52cab9f..e639ea7 100644 --- a/electron/IS_PORTABLE.ts +++ b/electron/IS_PORTABLE.ts @@ -1,4 +1,4 @@ - const isPortable = false; - export default isPortable; - \ No newline at end of file + const isPortable = false; + export default isPortable; + \ No newline at end of file diff --git a/instructions.txt b/instructions.txt deleted file mode 100644 index cf59706..0000000 --- a/instructions.txt +++ /dev/null @@ -1,15 +0,0 @@ -{ - dont need anymore - run node makeAll.js - - change value in electron/IS_PORTABLE.ts before make and makeZip - - rename .exe and .zip - .zip - Manga.Reader-win32-${latestVersion}-Portable.zip - .exe - Manga.Reader-${latestVersion}-Setup.exe -} - -tag v${version} before push -make sure version is same in package.json - -push tag and release before pushing git(package.json) to prevent update prompt with no link \ No newline at end of file diff --git a/makeAll.js b/makeAll.js index 4977bfb..c634685 100644 --- a/makeAll.js +++ b/makeAll.js @@ -40,8 +40,8 @@ const makeAndPushTag = () => { const pushRelease = () => { const pushCommand = (`gh release create v${pkgJSON.version} -t v${pkgJSON.version} -F changelog.md ` + - // `--discussion-category "General" ` + - "-d " + + `--discussion-category "General" ` + + // "-d " + `./out/full/Manga.Reader-${pkgJSON.version}-Setup.exe ./out/full/Manga.Reader-win32-${pkgJSON.version}-Portable.zip`) const a = printProcessing("Pushing build to gh release ") const ghSpawn = exec(pushCommand); @@ -132,4 +132,4 @@ const makeZip = () => { }); } -makeExe() \ No newline at end of file +setTimeout(makeExe, 3000); \ No newline at end of file diff --git a/package.json b/package.json index 1235093..589469e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mangareader", "productName": "Manga Reader", - "version": "2.3.15", + "version": "2.4.0", "description": "App to read manga on desktop", "main": ".webpack/main", "author": { diff --git a/src/Components/ReaderSettings.tsx b/src/Components/ReaderSettings.tsx index 2a30950..c3da1b0 100644 --- a/src/Components/ReaderSettings.tsx +++ b/src/Components/ReaderSettings.tsx @@ -1,6 +1,5 @@ import { faBars, faMinus, faPlus, faTimes, faArrowsAltV } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { app } from "electron"; import React, { useContext, useEffect, useState } from "react"; import { AppContext } from "../App";