Package Details: flashbrowser-bin 0.8.1-2

Git Clone URL: https://aur.archlinux.org/flashbrowser-bin.git (read-only, click to copy)
Package Base: flashbrowser-bin
Description: A browser dedicating to supporting adobe flash.
Upstream URL: https://flash.pm/browser/
Keywords: a adobe browser dedicating flash. supporting to
Licenses: unknown
Conflicts: flashbrowser
Provides: flashbrowser
Submitter: AronYoung
Maintainer: AronYoung (AsukaMinato)
Last Packager: AsukaMinato
Votes: 0
Popularity: 0.000000
First Submitted: 2023-07-15 13:17 (UTC)
Last Updated: 2023-12-18 09:51 (UTC)

Latest Comments

FabioLolix commented on 2023-10-20 20:31 (UTC)

Hello, this need provides=(flashbrowser) conflicts=(flashbrowser) only

any other provides or conflicts are not needed

FabioLolix commented on 2023-10-14 19:54 (UTC)

Hello, this need conflicts=(flashbrowser) not flashbrowser-git

AsukaMinato commented on 2023-10-10 08:23 (UTC)

for the 0.8.1 version:

although it's windows only. With detect-it-easy

PE32
    Installer: Inno Setup Module(6.1.0)[unicode]
    Compiler: Embarcadero Delphi(10.3 Rio)[Professional]
    Linker: Turbo Linker(2.25*,Delphi)[GUI32]

so use

innoextract v0.81_FlashBrowser_x64.exe

then finished.

AsukaMinato commented on 2023-08-05 21:09 (UTC) (edited on 2023-08-05 21:10 (UTC) by AsukaMinato)

this package has some problem, fix method:

  1. https://github.com/Hadaward/flashplayer-plugin/tree/main download the

    libpepflashplayer-x86_64.so and libpepflashplayer-i386.so, put them at ./app/flashver/ folder.

  2. in the index.js, change lines like below.

    case 'linux':
        switch (process.arch) {
            case 'ia32':
            case 'x32':
                pluginName = 'flashver/libpepflashplayer-i386.so' // added and tested :D
                console.log("ran!");
                break
            case 'x64':
                pluginName = 'flashver/libpepflashplayer-x86_64.so'
                console.log("ran!");
                break
        }

then it will load the plugin properly.

AsukaMinato commented on 2023-07-21 05:29 (UTC)

in desktop file

Icon=FlashBrowser

should be

Icon=flashbrowser-bin

AsukaMinato commented on 2023-07-21 05:19 (UTC)

https://stackoverflow.com/questions/16034749/if-elif-else-statement-issues-in-bash

        elif    [ $i = '256'];  then layer=4; fi

should be

        elif    [ $i = '256' ]; then layer=4; fi