Vinfall

Results 60 comments of Vinfall

I know it's old, but since this topic is also brought up in #872 and #957, can you reconsider it? Regarding the size increase, [v1.5.2](https://github.com/zhanghai/MaterialFiles/releases/tag/v1.5.2) from May 2022 is 8.13MB...

Weird, I think it's not working for me then. I'm using latest 1.7.1(36) F-Droid release and the tested `.tar.zst` file is compressed in Termux using: ```sh PAR=blahblah tar --use-compress-program="zstd -T0"...

I think you are not getting the point too. > So an attacker could use a logged in users session, keylog the password the user enters for the database. >...

Here are the [publishing instructions](https://github.com/eclipse/openvsx/wiki/Publishing-Extensions). It comes down to adding `ovsx publish` command in addition to your normal `vsce publish` IIRC. Let me explain why this is needed: packages such...

For now, AFAIK it's possible to backup comments by making backups of the backend PostgreSQL database. Of course this would not work (w/o the help from Cusdis end) if you...

There used a button for you to do one-click import according to the documentation, but strangely I could not find it either... If you are familiar with PostgreSQL, you can...

From the mentioned code & issue, it seems that the API requires encoding & hashing while the old API is unstable and maybe deprecated. However, I think it should be...

~~I think it's also possible to support other musl architectures, if the unofficial node mirror has builds for those. But I'm lazy enough to pretend they do not exist.~~ nvm,...

> Also, any change to any system in Cemu that holds some kind of dynamic runtime information (and there are a lot, it's an HLE emulator after all) would invalidate...

作为临时解决方案,可以使用 ADB 导出应用包名方便修改: ```sh # 全部应用 adb shell pm list packages -e > enabled-app-list.txt # 系统应用 adb shell pm list packages -s -e > enabled-sys-app-list.txt # 当前用户安装的应用 adb shell pm...