├── OricExplorer
├── Forms
│ ├── StopWatch.cs
│ ├── frmAboutBox.Designer.cs
│ ├── frmMainForm.Designer.cs
│ ├── frmCreateNewDisk.cs
│ ├── frmDataViewer.cs
│ ├── frmAboutBox.cs
│ ├── frmDataViewer.Designer.cs
│ ├── frmProgramInfo.Designer.cs
│ ├── frmFileScan.cs
│ ├── frmDataViewer.resx
│ ├── frmDiskData.resx
│ ├── frmProgramInfo.resx
│ ├── frmImportAtmosBasicFile.resx
│ ├── frmDiskInfoViewer.resx
│ └── ImageViewerForm.resx
├── Resources
│ ├── apply.png
│ ├── cancel.png
│ ├── copy.png
│ ├── delete.png
│ ├── disk.png
│ ├── images.png
│ ├── rename.png
│ ├── tape.png
│ ├── view.png
│ ├── OpCodes.dat
│ ├── PrintHS.png
│ ├── emulator.png
│ ├── refresh.png
│ ├── 1downarrow1.png
│ ├── 1uparrow1.png
│ ├── Folder-icon.png
│ ├── information.png
│ ├── OricExplorer.ico
│ ├── PrintSetupHS.png
│ ├── picture_save.png
│ ├── Folder-Open-icon.png
│ ├── OricExplorerLogo.png
│ ├── PrintPreviewHS.png
│ ├── button_cancel1.png
│ ├── control_end_blue.png
│ ├── source-code-icon.png
│ ├── CharacterSetViewer.bmp
│ ├── control_pause_blue.png
│ ├── control_play_blue.png
│ ├── control_start_blue.png
│ ├── control_stop_blue.png
│ ├── magnifier_zoom_in.png
│ ├── OricExplorerLogoNew.ico
│ ├── control_repeat_blue.png
│ ├── control_rewind_blue.png
│ ├── document-binary-icon.png
│ ├── OricExplorerLogo (Rotated).png
│ ├── UpdatedCharacterSetViewer.bmp
│ ├── control_fastforward_blue.png
│ ├── OricExplorerLogo (Transparent).png
│ ├── OricExplorerLogo (Transparent2).png
│ ├── OricExplorerLogo (Black on White).png
│ ├── OricExplorerLogo (Black on White Shadow).png
│ ├── OricExplorerLogo Rotated (Black on White).png
│ ├── OricExplorerLogo (Black on White Shadow Rotated).png
│ ├── StdCharSet.dat
│ └── OricExplorerLogo (Black on White).svg
├── Classes
│ ├── OricProgram.cs
│ ├── RomInfo.cs
│ ├── Extensions.cs
│ ├── NativeMethods.cs
│ ├── TapeInfo.cs
│ ├── OtherFileInfo.cs
│ ├── OpCodes.cs
│ ├── TeleassTokens.cs
│ ├── BasicTokens.cs
│ ├── OricFileInfo.cs
│ └── ConstantsAndEnums.cs
├── Documents
│ ├── SedOric and OricDos Sector Descriptions.pdf
│ └── Context Menus.rtf
├── Packager
│ ├── create_archive.ps1
│ └── update_app_version.ps1
├── packages.config
├── User Controls
│ ├── ctlTextBoxPlus.cs
│ ├── GradientPanel.Designer.cs
│ ├── ctlCaptureViewer.cs
│ ├── ctlProgressBar.Designer.cs
│ ├── ShadowLabel.resx
│ ├── ctlTextBoxPlus.designer.cs
│ ├── ShadowLabel.cs
│ ├── GradientPanel.cs
│ ├── ctlSequentialFileViewer.Designer.cs
│ ├── ctlProgressBar.cs
│ ├── SoftShadowLabel.cs
│ ├── SoftShadowLabel.resx
│ ├── OutlineShadowLabel.resx
│ ├── ctlCaptureViewer.designer.cs
│ ├── ctlProgressBar.resx
│ ├── ctlCaptureViewer.resx
│ ├── ctlDataFileViewer.resx
│ ├── ctlSequentialFileViewer.resx
│ ├── DiskInfoViewer.resx
│ ├── ctlCharacterSetViewer.resx
│ └── SectorViewer.resx
├── Settings.cs
├── Properties
│ ├── AssemblyInfo.cs
│ └── Settings.settings
├── Program.cs
└── Installer
│ └── OricExplorer.iss
├── -NET SDKs for Visual Studio.url
├── dist
├── OricExplorer_v2.5.0.0.exe
├── OricExplorer_v2.5.0.0.zip
└── app_version.xml
├── packages
├── FCTB.2.16.24
│ ├── .signature.p7s
│ ├── FCTB.2.16.24.nupkg
│ └── lib
│ │ └── FastColoredTextBox.dll
├── ZipStorer.3.6.0
│ ├── .signature.p7s
│ ├── ZipStorer.3.6.0.nupkg
│ └── lib
│ │ ├── net20
│ │ └── ZipStorer.dll
│ │ ├── net452
│ │ └── ZipStorer.dll
│ │ └── netstandard2.0
│ │ └── ZipStorer.dll
├── DockPanelSuite.3.0.6
│ ├── .signature.p7s
│ ├── DockPanelSuite.3.0.6.nupkg
│ └── lib
│ │ ├── net40
│ │ └── WeifenLuo.WinFormsUI.Docking.dll
│ │ └── net35-client
│ │ └── WeifenLuo.WinFormsUI.Docking.dll
└── DockPanelSuite.2.11.0-beta2
│ ├── DockPanelSuite.2.11.0-beta2.nupkg
│ └── lib
│ ├── net40
│ └── WeifenLuo.WinFormsUI.Docking.dll
│ └── net35-client
│ └── WeifenLuo.WinFormsUI.Docking.dll
├── OricExplorer-LICENCE-CC-BY-NC-SA-4.0.txt
├── .gitignore
├── doc
├── packaging.md
├── bugs.md
├── application-settings.md
└── user-guide.md
├── OricExplorer.sln
└── AuthorsNotes.md
/OricExplorer/Forms/StopWatch.cs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/-NET SDKs for Visual Studio.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=https://www.microsoft.com/net/download/visual-studio-sdks
3 |
--------------------------------------------------------------------------------
/dist/OricExplorer_v2.5.0.0.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/dist/OricExplorer_v2.5.0.0.exe
--------------------------------------------------------------------------------
/dist/OricExplorer_v2.5.0.0.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/dist/OricExplorer_v2.5.0.0.zip
--------------------------------------------------------------------------------
/OricExplorer/Resources/apply.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/apply.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/cancel.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/copy.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/delete.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/disk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/disk.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/images.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/images.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/rename.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/tape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/tape.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/view.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/view.png
--------------------------------------------------------------------------------
/OricExplorer/Classes/OricProgram.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Classes/OricProgram.cs
--------------------------------------------------------------------------------
/OricExplorer/Resources/OpCodes.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OpCodes.dat
--------------------------------------------------------------------------------
/OricExplorer/Resources/PrintHS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/PrintHS.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/emulator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/emulator.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/refresh.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/1downarrow1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/1downarrow1.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/1uparrow1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/1uparrow1.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/Folder-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/Folder-icon.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/information.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/information.png
--------------------------------------------------------------------------------
/packages/FCTB.2.16.24/.signature.p7s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/FCTB.2.16.24/.signature.p7s
--------------------------------------------------------------------------------
/OricExplorer-LICENCE-CC-BY-NC-SA-4.0.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer-LICENCE-CC-BY-NC-SA-4.0.txt
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorer.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorer.ico
--------------------------------------------------------------------------------
/OricExplorer/Resources/PrintSetupHS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/PrintSetupHS.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/picture_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/picture_save.png
--------------------------------------------------------------------------------
/packages/FCTB.2.16.24/FCTB.2.16.24.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/FCTB.2.16.24/FCTB.2.16.24.nupkg
--------------------------------------------------------------------------------
/packages/ZipStorer.3.6.0/.signature.p7s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/ZipStorer.3.6.0/.signature.p7s
--------------------------------------------------------------------------------
/OricExplorer/Forms/frmAboutBox.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Forms/frmAboutBox.Designer.cs
--------------------------------------------------------------------------------
/OricExplorer/Forms/frmMainForm.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Forms/frmMainForm.Designer.cs
--------------------------------------------------------------------------------
/OricExplorer/Resources/Folder-Open-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/Folder-Open-icon.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogo.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/PrintPreviewHS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/PrintPreviewHS.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/button_cancel1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/button_cancel1.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/control_end_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/control_end_blue.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/source-code-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/source-code-icon.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/CharacterSetViewer.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/CharacterSetViewer.bmp
--------------------------------------------------------------------------------
/OricExplorer/Resources/control_pause_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/control_pause_blue.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/control_play_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/control_play_blue.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/control_start_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/control_start_blue.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/control_stop_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/control_stop_blue.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/magnifier_zoom_in.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/magnifier_zoom_in.png
--------------------------------------------------------------------------------
/packages/DockPanelSuite.3.0.6/.signature.p7s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/DockPanelSuite.3.0.6/.signature.p7s
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogoNew.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogoNew.ico
--------------------------------------------------------------------------------
/OricExplorer/Resources/control_repeat_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/control_repeat_blue.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/control_rewind_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/control_rewind_blue.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/document-binary-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/document-binary-icon.png
--------------------------------------------------------------------------------
/packages/FCTB.2.16.24/lib/FastColoredTextBox.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/FCTB.2.16.24/lib/FastColoredTextBox.dll
--------------------------------------------------------------------------------
/packages/ZipStorer.3.6.0/ZipStorer.3.6.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/ZipStorer.3.6.0/ZipStorer.3.6.0.nupkg
--------------------------------------------------------------------------------
/packages/ZipStorer.3.6.0/lib/net20/ZipStorer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/ZipStorer.3.6.0/lib/net20/ZipStorer.dll
--------------------------------------------------------------------------------
/packages/ZipStorer.3.6.0/lib/net452/ZipStorer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/ZipStorer.3.6.0/lib/net452/ZipStorer.dll
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogo (Rotated).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogo (Rotated).png
--------------------------------------------------------------------------------
/OricExplorer/Resources/UpdatedCharacterSetViewer.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/UpdatedCharacterSetViewer.bmp
--------------------------------------------------------------------------------
/OricExplorer/Resources/control_fastforward_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/control_fastforward_blue.png
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogo (Transparent).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogo (Transparent).png
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogo (Transparent2).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogo (Transparent2).png
--------------------------------------------------------------------------------
/packages/DockPanelSuite.3.0.6/DockPanelSuite.3.0.6.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/DockPanelSuite.3.0.6/DockPanelSuite.3.0.6.nupkg
--------------------------------------------------------------------------------
/packages/ZipStorer.3.6.0/lib/netstandard2.0/ZipStorer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/ZipStorer.3.6.0/lib/netstandard2.0/ZipStorer.dll
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogo (Black on White).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogo (Black on White).png
--------------------------------------------------------------------------------
/OricExplorer/Documents/SedOric and OricDos Sector Descriptions.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Documents/SedOric and OricDos Sector Descriptions.pdf
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogo (Black on White Shadow).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogo (Black on White Shadow).png
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogo Rotated (Black on White).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogo Rotated (Black on White).png
--------------------------------------------------------------------------------
/packages/DockPanelSuite.2.11.0-beta2/DockPanelSuite.2.11.0-beta2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/DockPanelSuite.2.11.0-beta2/DockPanelSuite.2.11.0-beta2.nupkg
--------------------------------------------------------------------------------
/packages/DockPanelSuite.3.0.6/lib/net40/WeifenLuo.WinFormsUI.Docking.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/DockPanelSuite.3.0.6/lib/net40/WeifenLuo.WinFormsUI.Docking.dll
--------------------------------------------------------------------------------
/OricExplorer/Resources/OricExplorerLogo (Black on White Shadow Rotated).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/OricExplorer/Resources/OricExplorerLogo (Black on White Shadow Rotated).png
--------------------------------------------------------------------------------
/dist/app_version.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 2.5.0.0
4 | https://github.com/oric-software/OricExplorer/blob/master/dist
5 |
6 |
--------------------------------------------------------------------------------
/packages/DockPanelSuite.2.11.0-beta2/lib/net40/WeifenLuo.WinFormsUI.Docking.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/DockPanelSuite.2.11.0-beta2/lib/net40/WeifenLuo.WinFormsUI.Docking.dll
--------------------------------------------------------------------------------
/packages/DockPanelSuite.3.0.6/lib/net35-client/WeifenLuo.WinFormsUI.Docking.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/DockPanelSuite.3.0.6/lib/net35-client/WeifenLuo.WinFormsUI.Docking.dll
--------------------------------------------------------------------------------
/packages/DockPanelSuite.2.11.0-beta2/lib/net35-client/WeifenLuo.WinFormsUI.Docking.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oric-software/OricExplorer/HEAD/packages/DockPanelSuite.2.11.0-beta2/lib/net35-client/WeifenLuo.WinFormsUI.Docking.dll
--------------------------------------------------------------------------------
/OricExplorer/Forms/frmCreateNewDisk.cs:
--------------------------------------------------------------------------------
1 | namespace OricExplorer.Forms
2 | {
3 | using System.Windows.Forms;
4 |
5 | public partial class frmCreateNewDisk : Form
6 | {
7 | public frmCreateNewDisk()
8 | {
9 | InitializeComponent();
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/OricExplorer/Packager/create_archive.ps1:
--------------------------------------------------------------------------------
1 | $version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo("$PSScriptRoot\..\bin\release\OricExplorer.exe").FileVersion
2 |
3 | Compress-Archive "$PSScriptRoot\..\bin\release\*.dll", "$PSScriptRoot\..\bin\release\*.exe" "$PSScriptRoot\..\..\dist\OricExplorer_v$version.zip"
--------------------------------------------------------------------------------
/OricExplorer/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/OricExplorer/Packager/update_app_version.ps1:
--------------------------------------------------------------------------------
1 | $version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo("$PSScriptRoot\..\bin\release\OricExplorer.exe").FileVersion
2 |
3 | $xml = @"
4 |
5 |
6 | $version
7 | https://github.com/oric-software/OricExplorer/blob/master/dist
8 |
9 | "@
10 |
11 | $xml.Replace("`r`n","`n") | Out-File -Encoding utf8 -FilePath "$PSScriptRoot\..\..\dist\app_version.xml"
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore Windows and MacOS junk files
2 | [Tt]humbs.db
3 | *.DS_Store
4 | # Ignore Visual Studio work/generated files
5 | # (from https://stackoverflow.com/questions/8527597/how-do-i-ignore-files-in-a-directory-in-git)
6 | .vs/
7 | *.user
8 | *.aps
9 | *.pch
10 | *.vspscc
11 | *.vssscc
12 | *_i.c
13 | *_p.c
14 | *.ncb
15 | *.suo
16 | *.tlb
17 | *.tlh
18 | *.bak
19 | *.[Cc]ache
20 | *.ilk
21 | *.log
22 | *.lib
23 | *.sbr
24 | *.sdf
25 | ipch/
26 | [Bb]in/
27 | [Dd]ebug*/
28 | [Rr]elease*/
29 | [Oo]bj/
30 |
--------------------------------------------------------------------------------
/OricExplorer/Resources/StdCharSet.dat:
--------------------------------------------------------------------------------
1 | >> (
2 | < 02& ((*$ ** > > "&*2" "> >" $> > <" <"" > """" "" > > " "*., "">"" <""<""<