Advertise Here
Advertise Here
Advertise Here
Advertise Here
Page 23 of 26 FirstFirst ... 13182122232425 ... LastLast
Results 221 to 230 of 256

Thread: ║➽║OScam║➽║ OScam emu Changelogs ║🔴 v.11.965║

  1. #221
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.932║


    OScam emu Changelogs
    Versıon: 119131- 802
    UPTADE: 15.01.2026


    Changeset 11931-2c8c34c9
    14.01.2026
    reader-nagra/irdeto: change force_irdeto guard to READER_IRDETO only

    force_irdeto forces a card to use the Irdeto reader instead of Nagra.
    In reader-nagra.c it causes the reader to reject the card so the
    Irdeto reader can handle it. This only makes sense when READER_IRDETO
    is compiled - otherwise there's no Irdeto reader to take over.

    Changes:
    - globals.h: Change guard from (READER_NAGRA || READER_IRDETO) to
    READER_IRDETO only
    - oscam-config-reader.c: Change guard to READER_IRDETO only
    - module-webif.c: Change guard to READER_IRDETO only
    - reader-nagra.c: Add READER_IRDETO guard around force_irdeto check

    Thanks WXbet


  2. Advertise Here
  3. #222
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.932║


    OScam emu Changelogs
    Versıon: 119132- 802
    UPTADE: 15.01.2026


    Changeset 11932-5b7ec3c9
    15.01.2026
    build: fix is_defined.txt generation for proper webif template filtering

    The is_defined.txt file is used by pages_gen to filter templates based on enabled config options. Previously, this file was only created when explicitly calling config.sh with --enable/--disable/--restore, but not during normal builds.

    The "webif clean" added in 96debcd7 ("Fix webif compression parameter") ensured pages.c was always rebuilt, but also deleted is_defined.txt which broke the filtering mechanism.

    Changes:
    - Call write_enabled() in make_config_mak() to ensure is_defined.txt is generated on every build
    - Remove redundant "webif clean" from Makefile and CMakeLists.txt (write_enabled already deletes pages.c when needed)
    - Add config.h dependency to pages.c target to trigger rebuild when config options change

    This ensures proper filtering works for:
    - Fresh checkouts with default config
    - Builds after direct config.h modifications
    - Builds after config.sh --enable/--disable changes

    Thanks WXbet


  4. #223
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.933║


    OScam emu Changelogs
    Versıon: 119133- 802
    UPTADE: 16.01.2026


    Changeset 11933-bf023d8c
    15.01.2026
    webif: embedded wiki help system

    Features
    * Offline Help: All parameter descriptions are available directly in the binary
    * Clickable Parameters: A click on the parameter name opens the help popup
    * Draggable Popup: The popup can be freely moved (also via touch on mobile devices)
    * Resizable: Size can be adjusted
    * Position Remembered: The horizontal position and size are stored in the browser
    * Reset Button: Reset to default position and size
    * Wiki Link: The title in the popup is a link to the online wiki for more details
    * Directly from OSCam Wiki: Parameters dynamically extracted from wiki pages during the build process
    * Automatic Updates: Any changes to the wiki pages are automatically integrated into the binary on the next build
    * LZO Compression: Wiki data is compressed like WebIF pages (~64% smaller), controlled via WITH_COMPRESS_WEBIF or USE_COMPRESS
    * Smart Filtering: Only help texts for actually compiled modules are included in the binary (based on is_defined.txt)

    Advantages
    * Available Offline - no internet connection needed - perfect for isolated networks
    * Fast - instant display without network latency
    * Always Up-to-date - wiki content matches exactly the binary version
    * User-friendly - help right where you need it
    * Touch Support - also works on tablets and smartphones
    * No Tracking - the wiki web server sees no requests from your device

    Disadvantages
    * Larger Binary - approx. 76 KB with LZO compression, or ~45 KB with UPX binary compression
    * More RAM - wiki data is kept in memory
    * Build Dependency - wiki markdown files must be present during build

    The build process:
    - New build option WEBIF_WIKI (default=off)
    - Git submodule is automatically initialized and updated
    - wiki_gen.c parses all markdown files in the wiki/ folder
    - Generates pages_wiki.c and pages_wiki.h with all parameter descriptions
    - Compiles everything into the final binary

    Technical details
    - Position Storage: Browser localStorage (wikiPopupLeft, wikiPopupWidth, wikiPopupHeight)
    - API Endpoint: /wiki.json?config=conf&param=serverip
    - Generation: wiki_gen.c parses the markdown files and generates pages_wiki.c
    - Compression: Controlled via WITH_COMPRESS_WEBIF (same as WebIF pages). Automatically disabled when using USE_COMPRESS=1 (UPX binary compression) - UPX compresses the entire binary more efficiently, making internal LZO compression redundant.

    Thanks WXbet


  5. #224
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.934║


    OScam emu Changelogs
    Versıon: 119134- 802
    UPTADE: 17.01.2026


    Changeset 11934-f9a8ee92
    17.01.2026
    submodule: rework submodule support

    - Add --submodule <name> option to config.sh for unified submodule handling
    - Automatically detects git repo vs tarball: uses 'git submodule update' in
    git repos, falls back to 'git clone --depth 1' for source downloads
    - Reads submodule URL from .gitmodules
    - Use --remote flag only when branch is defined in .gitmodules (respect pinning)
    - Simplify Makefile and CMakeLists.txt submodule handling to single call
    - Make submodule init conditional on WEBIF_WIKI
    - Remove duplicate GEN output from wiki_gen.c

    Thanks WXbet


  6. #225
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.934║


    OScam emu Changelogs
    Versıon: 119134- 802
    UPTADE: 17.01.2026


    For people building their own Oscam
    patch version: oscam-emu-patch 2.26.01-11934-802-(f9a8ee92)
    - Add --submodule <name> option to config.sh for unified submodule handling
    - Automatically detects git repo vs tarball: uses 'git submodule update' in git repos, falls back to 'git clone --depth 1' for source downloads
    - Reads submodule URL from .gitmodules
    - Use --remote flag only when branch is defined in .gitmodules (respect pinning)
    - Simplify Makefile and CMakeLists.txt submodule handling to single call
    - Make submodule init conditional on WEBIF_WIKI
    - Remove duplicate GEN output from wiki_gen.c


    Thanks WXbet


    PHP Code:
    oscam-emu.patch (2).zip 

  7. #226
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.934║


    OScam emu Changelogs
    Versıon: 119134- 802
    UPTADE: 17.01.2026


    11934
    submodule: rework submodule support
    - Add --submodule <name> option to config.sh for unified submodule handling- Automatically detects git repo vs tarball: uses 'git submodule update' in
    git repos, falls back to 'git clone --depth 1' for source downloads
    - Reads submodule URL from .gitmodules
    - Use --remote flag only when branch is defined in .gitmodules (respect pinning)
    - Simplify Makefile and CMakeLists.txt submodule handling to single call
    - Make submodule init conditional on WEBIF_WIKI
    - Remove duplicate GEN output from wiki_gen.c

  8. #227
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.935║


    OScam emu Changelogs
    Versıon: 119135- 802
    UPTADE: 18.01.2026


    Changeset 11935-573dab3e
    18.01.2026
    webif: add BOTTOM navigation link

    - css.css: add BOTTOM navigation link and adjust TOP link position
    - Both links positioned on the right side (right:10px)
    - TOP link: bottom-right in footer
    - BOTTOM link: top-right in menu area
    - Arrow symbols after text for both links

    - menu.html: add BOTTOM link element with class "bottom_link"
    - Link anchors to #statusfooter for navigation to page footer

    Thanks WXbet


  9. #228
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.936║


    OScam emu Changelogs
    Versıon: 119136- 802
    UPTADE: 18.01.2026


    Changeset 11936-e1a69473
    18.01.2026
    webif: fix BOTTOM navigation link
    * define bottom_link as a html div container like top_link

    Thanks WXbet


  10. #229
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.937║


    OScam emu Changelogs
    Versıon: 119137- 802
    UPTADE: 24.01.2026


    Changeset 11937-98e5f92f
    24.01.2026
    webif: fix PCSC devices not shown on scanusb.html

    The write_enabled() function generates is_defined.txt which pages_gen
    uses to filter templates based on enabled config options. However, it
    only wrote config.h defines and missed USE_FLAG based card readers.

    CARDREADER_PCSC is controlled via USE_PCSC flag passed at build time,
    not a config.h define. Since it was never written to is_defined.txt,
    pages_gen filtered out scanusb_pcscbit.html template, causing PCSC
    devices to not appear on scanusb.html.
    Fixes regression introduced in 5b7ec3c9 (11932).





    Thanks WXbet



  11. #230
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,624
    Uploads
    107
    Likes
    17,162

    Re: ║➽║OScam║ OScam emu Changelogs║V.11.938║


    OScam emu Changelogs
    Versıon: 119138- 802
    UPTADE: 24.01.2026


    Changeset 11938-5d740155
    24.01.2026
    webif: add missing wiki link for ACoSC max_ecms_per_minute






    Thanks WXbet



Page 23 of 26 FirstFirst ... 13182122232425 ... LastLast
Advertise Here

Similar Threads

  1. Update ║➽║OScam║➽║SVN_Oscam GIT_Patches║🔴 v.11.965║
    By mehmetkarahanlı in forum OSCam Binaries
    Replies: 26
    Last Post: 06-06-2026, 21:49:16
  2. Replies: 8
    Last Post: 04-06-2026, 22:56:34
  3. Update ║➽║Daily║Satlodge║v.5.0║Zgemma TEAM║🔴 DOWNLOAD║
    By mehmetkarahanlı in forum Zgemma H9
    Replies: 3
    Last Post: 04-06-2026, 21:18:09
  4. Replies: 14
    Last Post: 03-06-2026, 21:30:52
  5. Replies: 9
    Last Post: 17-05-2026, 13:29:00

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •