├── .gitattributes ├── .gitignore ├── README.md ├── package ├── Help │ └── Scalos-Disabled.txt ├── Install ├── Patches │ ├── Add-WorkbenchPatches │ ├── Scalos.prefs.none │ ├── Scalos.prefs.oldicons │ ├── Scalos.prefs.theme │ ├── Scalos │ │ ├── C │ │ │ ├── Icons │ │ │ ├── Icons2 │ │ │ ├── MagicMenu_disable │ │ │ ├── MagicMenu_disable.info │ │ │ ├── MagicMenu_enable │ │ │ ├── MagicMenu_enable.info │ │ │ ├── OpenDrawer │ │ │ ├── SFStools │ │ │ ├── Scalos_disable │ │ │ ├── Scalos_disable.info │ │ │ ├── Scalos_enable │ │ │ ├── Scalos_enable.info │ │ │ ├── ToolsDaemon_disable │ │ │ ├── ToolsDaemon_disable.info │ │ │ ├── ToolsDaemon_enable │ │ │ └── ToolsDaemon_enable.info │ │ ├── Prefs │ │ │ ├── Env-Archive │ │ │ │ ├── MagicMenu.prefs │ │ │ │ └── Sys │ │ │ │ │ ├── WBPattern.prefs.regen │ │ │ │ │ ├── WBPattern.prefs.retro │ │ │ │ │ ├── def_ram.info │ │ │ │ │ └── fullpalette.prefs │ │ │ ├── MagicMenuPrefs │ │ │ ├── MagicMenuPrefs.info │ │ │ ├── ToolsPrefs │ │ │ └── ToolsPrefs.info │ │ ├── Programs │ │ │ └── DirOpus4 │ │ │ │ └── s │ │ │ │ └── DirectoryOpus.CFG │ │ ├── S │ │ │ └── ToolsDaemon.menu │ │ ├── Storage │ │ │ └── Startup │ │ │ │ ├── MagicMenu │ │ │ │ ├── MagicMenu.info │ │ │ │ ├── ToolsDaemon │ │ │ │ └── ToolsDaemon.info │ │ └── System │ │ │ ├── BMenu │ │ │ ├── Drawers │ │ │ ├── Menus │ │ │ │ ├── Components │ │ │ │ ├── MagicMenu │ │ │ │ ├── MagicMenu.info │ │ │ │ ├── Prefs │ │ │ │ ├── Prefs.info │ │ │ │ ├── Scalos │ │ │ │ ├── ToolsDaemon │ │ │ │ └── ToolsDaemon.info │ │ │ └── Settings │ │ │ └── FPalette │ │ │ ├── FPPrefs │ │ │ ├── FullPalette │ │ │ ├── FullPalette.guide │ │ │ ├── FullPalette.guide.info │ │ │ └── FullPalette.info │ ├── Startup-Sequence.3.1 │ ├── Startup-Sequence.3.1.4 │ ├── Startup-Sequence.3.2 │ ├── SystemDir │ │ └── S │ │ │ ├── BootMenu-Startup │ │ │ ├── BootPatches-Startup │ │ │ └── WorkbenchPatches-Startup │ └── mui38usr.lha ├── README ├── README.info ├── Temp │ ├── AntiClick_disable │ ├── BorderBlank_enable │ ├── Copper_enable │ ├── FreeWheel_disable │ └── StackAttack_enable ├── classicwb_full_v28.zip └── hstwb-package.json ├── screenshots ├── classicwb_full1.png ├── classicwb_full2.png ├── classicwb_full3.png ├── classicwb_full4.png ├── classicwb_full5.png ├── classicwb_full6.png ├── classicwb_full7.png ├── classicwb_full8.png ├── classicwb_full_3.1.4_1.png ├── classicwb_full_3.1.4_2.png ├── classicwb_full_3.2_1.png └── classicwb_full_3.2_2.png └── tools ├── build_guide.ps1 ├── build_html.ps1 ├── build_package.ps1 ├── convert_zip_to_amiga.ps1 ├── create_zip_from_directory.ps1 └── github-pandoc.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/README.md -------------------------------------------------------------------------------- /package/Help/Scalos-Disabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Help/Scalos-Disabled.txt -------------------------------------------------------------------------------- /package/Install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Install -------------------------------------------------------------------------------- /package/Patches/Add-WorkbenchPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Add-WorkbenchPatches -------------------------------------------------------------------------------- /package/Patches/Scalos.prefs.none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos.prefs.none -------------------------------------------------------------------------------- /package/Patches/Scalos.prefs.oldicons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos.prefs.oldicons -------------------------------------------------------------------------------- /package/Patches/Scalos.prefs.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos.prefs.theme -------------------------------------------------------------------------------- /package/Patches/Scalos/C/Icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/Icons -------------------------------------------------------------------------------- /package/Patches/Scalos/C/Icons2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/Icons2 -------------------------------------------------------------------------------- /package/Patches/Scalos/C/MagicMenu_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/MagicMenu_disable -------------------------------------------------------------------------------- /package/Patches/Scalos/C/MagicMenu_disable.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/MagicMenu_disable.info -------------------------------------------------------------------------------- /package/Patches/Scalos/C/MagicMenu_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/MagicMenu_enable -------------------------------------------------------------------------------- /package/Patches/Scalos/C/MagicMenu_enable.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/MagicMenu_enable.info -------------------------------------------------------------------------------- /package/Patches/Scalos/C/OpenDrawer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/OpenDrawer -------------------------------------------------------------------------------- /package/Patches/Scalos/C/SFStools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/SFStools -------------------------------------------------------------------------------- /package/Patches/Scalos/C/Scalos_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/Scalos_disable -------------------------------------------------------------------------------- /package/Patches/Scalos/C/Scalos_disable.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/Scalos_disable.info -------------------------------------------------------------------------------- /package/Patches/Scalos/C/Scalos_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/Scalos_enable -------------------------------------------------------------------------------- /package/Patches/Scalos/C/Scalos_enable.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/Scalos_enable.info -------------------------------------------------------------------------------- /package/Patches/Scalos/C/ToolsDaemon_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/ToolsDaemon_disable -------------------------------------------------------------------------------- /package/Patches/Scalos/C/ToolsDaemon_disable.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/ToolsDaemon_disable.info -------------------------------------------------------------------------------- /package/Patches/Scalos/C/ToolsDaemon_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/ToolsDaemon_enable -------------------------------------------------------------------------------- /package/Patches/Scalos/C/ToolsDaemon_enable.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/C/ToolsDaemon_enable.info -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/Env-Archive/MagicMenu.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/Env-Archive/MagicMenu.prefs -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/Env-Archive/Sys/WBPattern.prefs.regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/Env-Archive/Sys/WBPattern.prefs.regen -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/Env-Archive/Sys/WBPattern.prefs.retro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/Env-Archive/Sys/WBPattern.prefs.retro -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/Env-Archive/Sys/def_ram.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/Env-Archive/Sys/def_ram.info -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/Env-Archive/Sys/fullpalette.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/Env-Archive/Sys/fullpalette.prefs -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/MagicMenuPrefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/MagicMenuPrefs -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/MagicMenuPrefs.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/MagicMenuPrefs.info -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/ToolsPrefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/ToolsPrefs -------------------------------------------------------------------------------- /package/Patches/Scalos/Prefs/ToolsPrefs.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Prefs/ToolsPrefs.info -------------------------------------------------------------------------------- /package/Patches/Scalos/Programs/DirOpus4/s/DirectoryOpus.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Programs/DirOpus4/s/DirectoryOpus.CFG -------------------------------------------------------------------------------- /package/Patches/Scalos/S/ToolsDaemon.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/S/ToolsDaemon.menu -------------------------------------------------------------------------------- /package/Patches/Scalos/Storage/Startup/MagicMenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Storage/Startup/MagicMenu -------------------------------------------------------------------------------- /package/Patches/Scalos/Storage/Startup/MagicMenu.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Storage/Startup/MagicMenu.info -------------------------------------------------------------------------------- /package/Patches/Scalos/Storage/Startup/ToolsDaemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Storage/Startup/ToolsDaemon -------------------------------------------------------------------------------- /package/Patches/Scalos/Storage/Startup/ToolsDaemon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/Storage/Startup/ToolsDaemon.info -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Drawers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Drawers -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Menus/Components: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Menus/Components -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Menus/MagicMenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Menus/MagicMenu -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Menus/MagicMenu.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Menus/MagicMenu.info -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Menus/Prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Menus/Prefs -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Menus/Prefs.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Menus/Prefs.info -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Menus/Scalos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Menus/Scalos -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Menus/ToolsDaemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Menus/ToolsDaemon -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Menus/ToolsDaemon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Menus/ToolsDaemon.info -------------------------------------------------------------------------------- /package/Patches/Scalos/System/BMenu/Settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/BMenu/Settings -------------------------------------------------------------------------------- /package/Patches/Scalos/System/FPalette/FPPrefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/FPalette/FPPrefs -------------------------------------------------------------------------------- /package/Patches/Scalos/System/FPalette/FullPalette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/FPalette/FullPalette -------------------------------------------------------------------------------- /package/Patches/Scalos/System/FPalette/FullPalette.guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/FPalette/FullPalette.guide -------------------------------------------------------------------------------- /package/Patches/Scalos/System/FPalette/FullPalette.guide.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/FPalette/FullPalette.guide.info -------------------------------------------------------------------------------- /package/Patches/Scalos/System/FPalette/FullPalette.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Scalos/System/FPalette/FullPalette.info -------------------------------------------------------------------------------- /package/Patches/Startup-Sequence.3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Startup-Sequence.3.1 -------------------------------------------------------------------------------- /package/Patches/Startup-Sequence.3.1.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Startup-Sequence.3.1.4 -------------------------------------------------------------------------------- /package/Patches/Startup-Sequence.3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/Startup-Sequence.3.2 -------------------------------------------------------------------------------- /package/Patches/SystemDir/S/BootMenu-Startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/SystemDir/S/BootMenu-Startup -------------------------------------------------------------------------------- /package/Patches/SystemDir/S/BootPatches-Startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/SystemDir/S/BootPatches-Startup -------------------------------------------------------------------------------- /package/Patches/SystemDir/S/WorkbenchPatches-Startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/SystemDir/S/WorkbenchPatches-Startup -------------------------------------------------------------------------------- /package/Patches/mui38usr.lha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Patches/mui38usr.lha -------------------------------------------------------------------------------- /package/README: -------------------------------------------------------------------------------- 1 | multiview README.guide -------------------------------------------------------------------------------- /package/README.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/README.info -------------------------------------------------------------------------------- /package/Temp/AntiClick_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Temp/AntiClick_disable -------------------------------------------------------------------------------- /package/Temp/BorderBlank_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Temp/BorderBlank_enable -------------------------------------------------------------------------------- /package/Temp/Copper_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Temp/Copper_enable -------------------------------------------------------------------------------- /package/Temp/FreeWheel_disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Temp/FreeWheel_disable -------------------------------------------------------------------------------- /package/Temp/StackAttack_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/Temp/StackAttack_enable -------------------------------------------------------------------------------- /package/classicwb_full_v28.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/classicwb_full_v28.zip -------------------------------------------------------------------------------- /package/hstwb-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/package/hstwb-package.json -------------------------------------------------------------------------------- /screenshots/classicwb_full1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full1.png -------------------------------------------------------------------------------- /screenshots/classicwb_full2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full2.png -------------------------------------------------------------------------------- /screenshots/classicwb_full3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full3.png -------------------------------------------------------------------------------- /screenshots/classicwb_full4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full4.png -------------------------------------------------------------------------------- /screenshots/classicwb_full5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full5.png -------------------------------------------------------------------------------- /screenshots/classicwb_full6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full6.png -------------------------------------------------------------------------------- /screenshots/classicwb_full7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full7.png -------------------------------------------------------------------------------- /screenshots/classicwb_full8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full8.png -------------------------------------------------------------------------------- /screenshots/classicwb_full_3.1.4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full_3.1.4_1.png -------------------------------------------------------------------------------- /screenshots/classicwb_full_3.1.4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full_3.1.4_2.png -------------------------------------------------------------------------------- /screenshots/classicwb_full_3.2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full_3.2_1.png -------------------------------------------------------------------------------- /screenshots/classicwb_full_3.2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/screenshots/classicwb_full_3.2_2.png -------------------------------------------------------------------------------- /tools/build_guide.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/tools/build_guide.ps1 -------------------------------------------------------------------------------- /tools/build_html.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/tools/build_html.ps1 -------------------------------------------------------------------------------- /tools/build_package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/tools/build_package.ps1 -------------------------------------------------------------------------------- /tools/convert_zip_to_amiga.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/tools/convert_zip_to_amiga.ps1 -------------------------------------------------------------------------------- /tools/create_zip_from_directory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/tools/create_zip_from_directory.ps1 -------------------------------------------------------------------------------- /tools/github-pandoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henrikstengaard/classicwb-full-package/HEAD/tools/github-pandoc.css --------------------------------------------------------------------------------