v1.0.1 #2

Merged
Lisoveliy merged 5 commits from dev into main 2025-02-25 22:35:27 +01:00
3 changed files with 4 additions and 8 deletions
Showing only changes of commit 999c47789b - Show all commits

View File

@ -8,7 +8,7 @@ AppSideService(
},
onRequest(req, res){
if(req.method === 'totps'){
console.log(set)
console.log(req)
res(null, settings.settingsStorage.getItem('TOTPs'))
}
},

View File

@ -13,8 +13,7 @@
"description": "TOTP Authenticator for Amazfit devices"
},
"permissions": [
"data:os.device.info",
"device:os.local_storage"
"data:os.device.info"
],
"runtime": {
"apiVersion": {

View File

@ -1,9 +1,7 @@
import { RenderAddButton } from './render/totpRenderer'
import { initLoop } from './render/index/renderer'
import { BasePage } from '@zeppos/zml/base-page'
import { LocalStorage } from "@zos/storage"
const localStorage = new LocalStorage()
const app = getApp()
let waitForFetch = true;
Page(
@ -11,12 +9,11 @@ Page(
onInit() {
this.getTOTPData().then((x) => {
console.log(x)
localStorage.setItem('TOTPs', x ?? [])
app._options.globalData.TOTPS = x ?? []
this.initPage();
this.initPage()
})
.catch(() => {
app._options.globalData.TOTPS = localStorage.getItem('TOTPs') ?? []
app._options.globalData.TOTPS = []
this.initPage()
})
},