├── .gitignore ├── 2048-ARIPOS ├── 2048-ARIPOS.c ├── 2048.c ├── 2048.h ├── Game2048.dsp ├── Game2048.dsw ├── Game2048.md ├── Game2048.xl ├── Makefile ├── ReadMe.md └── res │ ├── Game2048.cres │ ├── Game2048_resources.h │ └── bmps ├── 2048-BREW ├── CMakeLists.txt ├── ReadMe.md ├── brew_2048.bar ├── brew_2048.bid ├── brew_2048.brh ├── brew_2048.brx ├── brew_2048.c ├── brew_2048.mfx ├── brew_2048.mif ├── icons │ ├── action │ ├── brew_large_65x42.png │ ├── brew_medium_26x26.png │ └── brew_small_16x16.png └── save │ └── brew_2048.sav ├── 2048-Carbon ├── 2048-AUX │ ├── 2048-AUX.c │ ├── 2048-AUX.r │ ├── 2048-Xaw.c │ ├── 2048-Xlib.c │ ├── 2048.c │ ├── 2048.h │ ├── Makefile │ └── ReadMe.md ├── 2048-Carbon.cp ├── 2048-Carbon.icns ├── 2048-Carbon.plc ├── 2048-Carbon.r ├── 2048-IIGS │ ├── App.2048.cc │ ├── Icons │ │ └── IIGS.2048.Icons │ ├── ReadMe.md │ ├── Src.2048.c │ └── Src.2048.h ├── 2048-MCW │ ├── 2048-MCW.cp │ ├── 2048-MCW.r │ ├── 2048.c │ ├── 2048.h │ ├── Makefile │ └── ReadMe.md ├── 2048-ThinkC │ ├── 2048-ThinkC.c │ ├── 2048.c │ ├── 2048.h │ ├── ExOffScreen │ │ ├── ExOffScreen.c │ │ └── ReadMe.md │ └── ReadMe.md ├── 2048.c ├── 2048.h ├── DiskImages │ └── ReadMe.md ├── ProjectBuilder │ ├── 2048-Carbon.cp │ ├── 2048-Carbon.icns │ ├── 2048-Carbon.pbproj │ │ └── project.pbxproj │ ├── 2048-Carbon.r │ ├── 2048.c │ ├── 2048.h │ ├── English.lproj │ │ └── InfoPlist.strings │ └── ReadMe.md ├── ReadMe.md ├── Xcode2 │ ├── 2048-Carbon.c │ ├── 2048-Carbon.icns │ ├── 2048-Carbon.xcodeproj │ │ └── project.pbxproj │ ├── 2048.c │ ├── 2048.h │ ├── English.lproj │ │ ├── 2048-Carbon.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.xib │ │ └── InfoPlist.strings │ ├── Info.plist │ └── ReadMe.md └── Xcode3 │ ├── 2048-Carbon.c │ ├── 2048-Carbon.icns │ ├── 2048-Carbon.xcodeproj │ ├── TemplateIcon.icns │ └── project.pbxproj │ ├── 2048.c │ ├── 2048.h │ ├── English.lproj │ └── 2048-Carbon.xib │ ├── Info.plist │ └── ReadMe.md ├── 2048-Cocoa ├── 2048-Cocoa.icns ├── 2048-Cocoa.pbproj │ └── project.pbxproj ├── 2048.c ├── 2048.h ├── English.lproj │ ├── 2048-Cocoa.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── objects.nib │ ├── InfoPlist.strings │ └── Localizable.strings ├── GameController.h ├── GameController.m ├── GameView.h ├── GameView.m ├── ReadMe.md ├── Xcode10 │ ├── 2048-Cocoa.entitlements │ ├── 2048-Cocoa.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── 2048-Cocoa.xcscheme │ ├── 2048.c │ ├── 2048.h │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 2048-Cocoa-1024.png │ │ │ ├── 2048-Cocoa-128.png │ │ │ ├── 2048-Cocoa-16.png │ │ │ ├── 2048-Cocoa-256.png │ │ │ ├── 2048-Cocoa-32.png │ │ │ ├── 2048-Cocoa-512.png │ │ │ ├── 2048-Cocoa-64.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── 2048-Cocoa.xib │ ├── GameController.h │ ├── GameController.m │ ├── GameView.h │ ├── GameView.m │ ├── Info.plist │ ├── Localizable.strings │ ├── ReadMe.md │ └── main.m ├── Xcode3 │ ├── 2048-Cocoa-modern.icns │ ├── 2048-Cocoa.xcodeproj │ │ ├── TemplateIcon.icns │ │ └── project.pbxproj │ ├── 2048.c │ ├── 2048.h │ ├── English.lproj │ │ ├── 2048-Cocoa.xib │ │ └── Localizable.strings │ ├── GameController.h │ ├── GameController.m │ ├── GameView.h │ ├── GameView.m │ ├── Info.plist │ ├── ReadMe.md │ └── main.m ├── Xcode4 │ ├── 2048-Cocoa-Info.plist │ ├── 2048-Cocoa-Prefix.pch │ ├── 2048-Cocoa-modern.icns │ ├── 2048-Cocoa.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── 2048.c │ ├── 2048.h │ ├── GameController.h │ ├── GameController.m │ ├── GameView.h │ ├── GameView.m │ ├── ReadMe.md │ ├── en.lproj │ │ ├── 2048-Cocoa.xib │ │ ├── Credits.rtf │ │ └── Localizable.strings │ └── main.m ├── Xcode5 │ ├── 2048-Cocoa-Info.plist │ ├── 2048-Cocoa-Prefix.pch │ ├── 2048-Cocoa.entitlements │ ├── 2048-Cocoa.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── 2048.c │ ├── 2048.h │ ├── GameController.h │ ├── GameController.m │ ├── GameView.h │ ├── GameView.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── 2048-Cocoa-1024.png │ │ │ ├── 2048-Cocoa-128.png │ │ │ ├── 2048-Cocoa-16.png │ │ │ ├── 2048-Cocoa-256.png │ │ │ ├── 2048-Cocoa-32.png │ │ │ ├── 2048-Cocoa-512.png │ │ │ ├── 2048-Cocoa-64.png │ │ │ └── Contents.json │ ├── ReadMe.md │ ├── en.lproj │ │ ├── 2048-Cocoa.xib │ │ ├── Credits.rtf │ │ └── Localizable.strings │ └── main.m └── main.m ├── 2048-CyOS ├── 2048-CyOS.c ├── 2048.c ├── 2048.h ├── Makefile ├── ReadMe.md ├── make.bat └── res │ ├── 0.bmp │ ├── 0.help │ ├── 1.bmp │ ├── classic │ └── root.inf │ ├── filer_classic.list │ ├── filer_xtreme.list │ ├── intro.bmp │ ├── root.bmp │ ├── root.spl │ ├── score.inf │ ├── score.mus │ ├── score_1.bmp │ ├── score_2.bmp │ ├── score_lose.mus │ ├── score_win.mus │ ├── title.mus │ └── xtreme │ └── root.inf ├── 2048-EZX ├── 2048-EZX.cpp ├── 2048-EZX.pro ├── 2048-EZX_E2.cpp ├── Makefile ├── Makefile.e2 ├── Makefile.e680 ├── Makefile.e680i ├── ReadMe.md └── mpkg │ ├── 2048_EZX.desktop │ ├── 2048_EZX_E2.desktop │ ├── 2048_EZX_E680.desktop │ └── 2048_EZX_E680I.desktop ├── 2048-Gtk1 ├── 2048-Gtk1.c ├── CMakeLists.txt └── ReadMe.md ├── 2048-Gtk2 ├── 2048-Gtk2.c ├── CMakeLists.txt └── ReadMe.md ├── 2048-Gtk3 ├── 2048-Gtk3.c ├── CMakeLists.txt └── ReadMe.md ├── 2048-JUCE ├── 2048-JUCE.jucer ├── Builds │ └── LinuxMakefile │ │ └── Makefile ├── JuceLibraryCode │ ├── JuceHeader.h │ ├── ReadMe.txt │ ├── include_juce_core.cpp │ ├── include_juce_core.mm │ ├── include_juce_data_structures.cpp │ ├── include_juce_data_structures.mm │ ├── include_juce_events.cpp │ ├── include_juce_events.mm │ ├── include_juce_graphics.cpp │ ├── include_juce_graphics.mm │ ├── include_juce_gui_basics.cpp │ └── include_juce_gui_basics.mm ├── ReadMe.md └── Source │ └── 2048-JUCE.cpp ├── 2048-MRE ├── .gitignore ├── Makefile ├── ReadMe.md ├── manifest.json └── src │ ├── 2048.c │ ├── c_fix.c │ ├── gccmain.c │ └── main.c ├── 2048-MRP ├── .gitignore ├── Makefile ├── ReadMe.md ├── main.c └── pack.json ├── 2048-Motif ├── 2048-Motif.c ├── CMakeLists.txt └── ReadMe.md ├── 2048-MotoMAGX ├── 2048-MotoMAGX.cpp ├── Makefile ├── Makefile.emu ├── MotoDevStudioProject │ ├── 2048-MotoMAGX │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.core.resources.prefs │ │ ├── MOTOMAGX_0.3_x86_Debug │ │ │ ├── package.descriptor │ │ │ └── package.files │ │ ├── MOTOMAGX_0.3_x86_Release │ │ │ ├── package.descriptor │ │ │ └── package.files │ │ ├── resource │ │ │ └── icon_usr.png │ │ └── src │ │ │ ├── 2048-MotoMAGX.cpp │ │ │ ├── 2048.c │ │ │ └── 2048.h │ └── ReadMe.md ├── QtCreatorProject │ ├── 2048-MotoMAGX.cflags │ ├── 2048-MotoMAGX.config │ ├── 2048-MotoMAGX.creator │ ├── 2048-MotoMAGX.cxxflags │ ├── 2048-MotoMAGX.files │ └── 2048-MotoMAGX.includes ├── ReadMe.md ├── build.sh ├── mgx │ └── 2048.cfg ├── mpkg │ └── 2048-MotoMAGX.desktop └── pep │ └── description.ini ├── 2048-NeXTSTEP ├── 2048-NeXTSTEP.iconheader ├── 2048-NeXTSTEP.info ├── 2048-NeXTSTEP_main.m ├── 2048.c ├── 2048.h ├── English.lproj │ ├── 2048-Info.nib │ │ ├── data.classes │ │ └── data.nib │ └── 2048-NeXTSTEP.nib │ │ ├── data.classes │ │ └── data.nib ├── GameController.h ├── GameController.m ├── GameView.h ├── GameView.m ├── KeyCodes.h ├── Makefile ├── Makefile.postamble ├── Makefile.preamble ├── PB.gdbinit ├── PB.project ├── PostScriptWraps.psw ├── ReadMe.md ├── avatar.tiff ├── icon150.tiff └── icon48.tiff ├── 2048-P2K ├── 2048-AHI │ ├── 2048-AHI.c │ ├── 2048-AHI.qbs │ ├── CMakeLists.txt │ ├── Makefile │ ├── ReadMe.md │ ├── make_ep1.bat │ ├── make_ep2.bat │ └── qtcreator │ │ ├── 2048-AHI.cflags │ │ ├── 2048-AHI.config │ │ ├── 2048-AHI.creator │ │ ├── 2048-AHI.cxxflags │ │ ├── 2048-AHI.files │ │ └── 2048-AHI.includes ├── 2048-UIS.c ├── 2048-UIS.qbs ├── CMakeLists.txt ├── Makefile ├── Makefile.mcore ├── ReadMe.md ├── make_em1.bat ├── make_em2.bat ├── make_ep1.bat ├── make_ep2.bat ├── qtcreator │ ├── 2048-UIS.cflags │ ├── 2048-UIS.config │ ├── 2048-UIS.creator │ ├── 2048-UIS.cxxflags │ ├── 2048-UIS.files │ └── 2048-UIS.includes └── save │ └── 2048.sav ├── 2048-Photon ├── Makefile ├── ReadMe.md ├── abapp.dfn ├── abapp.wsp ├── common.mk ├── src │ ├── 2048.c │ ├── 2048.h │ ├── GmGlobals.h │ ├── GmMenuItemsCbs.c │ ├── GmRawDrawCb.c │ ├── GmRawInitCb.c │ ├── GmSourceButtonEventCb.c │ ├── GmWindowKeyEventCb.c │ ├── Usemsg │ ├── abLfiles │ ├── abWfiles │ ├── abdefine.h │ ├── abevents.h │ ├── abimport.h │ ├── ablibs.h │ ├── ablinks.h │ ├── abmain.c │ ├── abplatform │ ├── abvars.h │ ├── abwidgets.h │ ├── indLfiles │ └── proto.h ├── wgt │ ├── GmDialogAbout.wgtd │ ├── GmMenuGame.wgtm │ ├── GmMenuHelp.wgtm │ ├── GmMenuView.wgtm │ ├── GmWindow.wgtw │ └── Icon.wgti └── x86 │ ├── Makefile │ ├── o-g │ └── Makefile │ └── o │ └── Makefile ├── 2048-Qt1 ├── 2048-Qt1.cpp ├── CMakeLists.txt └── ReadMe.md ├── 2048-Qt2 ├── 2048-Qt2.cpp ├── CMakeLists.txt └── ReadMe.md ├── 2048-Qt3 ├── 2048-Qt3.cpp ├── CMakeLists.txt └── ReadMe.md ├── 2048-Qt4-Qtopia4 ├── 2048-Qt4-Qtopia4.cpp ├── 2048-Qt4-Qtopia4.desktop ├── 2048-Qt4-Qtopia4.kdevelop ├── 2048-Qt4-Qtopia4.pro ├── 2048-Qt4-Qtopia4.ui ├── ReadMe.md ├── help │ └── html │ │ └── 2048-Qt4-Qtopia4.html └── pics │ └── 2048_qt4_qtopia4.svg ├── 2048-Qt4-S60 ├── 2048-Qt4-S60.cpp ├── 2048-Qt4-S60.desktop ├── 2048-Qt4-S60.png ├── 2048-Qt4-S60.pro ├── 2048-Qt4-S60.svg ├── 2048-Qt4-S60.ui ├── ReadMe.md └── deployment.pri ├── 2048-Qt4 ├── 2048-Qt4.cpp ├── CMakeLists.txt └── ReadMe.md ├── 2048-Qt5 ├── 2048-Qt5.cpp ├── CMakeLists.txt └── ReadMe.md ├── 2048-QtQuick ├── 2048-QtQuick.cpp ├── 2048-QtQuick.qml ├── 2048-QtQuick.qrc ├── CMakeLists.txt └── ReadMe.md ├── 2048-SE ├── 2048 │ ├── 2048.ewp │ ├── 2048.eww │ ├── conf_loader.cpp │ ├── conf_loader.h │ ├── config_data.c │ ├── config_data.h │ ├── icon32.h │ ├── icon64.h │ ├── main.c │ ├── rand.c │ ├── rand.h │ └── stdint.h ├── .gitignore └── ReadMe.md ├── 2048-SMD ├── QtCreatorProject │ ├── 2048-SMD.cflags │ ├── 2048-SMD.config │ ├── 2048-SMD.creator │ ├── 2048-SMD.cxxflags │ ├── 2048-SMD.files │ └── 2048-SMD.includes ├── ReadMe.md ├── inc │ └── 2048.h ├── res │ ├── gfx.res │ ├── gfx │ │ ├── MD_GameOver_Mirrored.png │ │ ├── MD_GameOver_Normal.png │ │ ├── MD_Tiles_480x40.png │ │ ├── MD_YouWon_Mirrored.png │ │ └── MD_YouWon_Normal.png │ ├── sfx.res │ └── sfx │ │ └── MD_Turn.wav └── src │ ├── 2048-SMD.c │ ├── 2048.c │ └── boot │ ├── rom_head.c │ └── sega.s ├── 2048-Serenity ├── 2048-Serenity.files ├── Makefile ├── ReadMe.md ├── main.cpp └── port │ ├── 2048 │ └── package.sh │ ├── 2048-Serenity.af │ └── Makefile.port ├── 2048-Swift ├── 2048-Swift-Bridging-Header.h ├── 2048-Swift-Bridging.c ├── 2048-Swift.entitlements ├── 2048-Swift.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── 2048.c ├── 2048.h ├── Assets.xcassets ├── Base.lproj │ └── 2048-Swift.xib ├── GameController.swift ├── GameView.swift ├── Info.plist ├── Localizable.strings └── ReadMe.md ├── 2048-UIQ2 ├── 2048-UIQ2.cpp ├── 2048-UIQ2.hrh ├── 2048-UIQ2.mmp ├── 2048-UIQ2.pkg ├── 2048-UIQ2.rss ├── 2048-UIQ2_AIF.rss ├── ReadMe.md └── bld.inf ├── 2048-Vala ├── 2048-Vala.vala ├── EngineWrapper.c ├── ReadMe.md └── meson.build ├── 2048-Xaw ├── 2048-Xaw.c ├── CMakeLists.txt └── ReadMe.md ├── 2048-Xcb ├── 2048-Xcb.c ├── CMakeLists.txt └── ReadMe.md ├── 2048-Xlib ├── 2048-Xlib.c ├── CMakeLists.txt └── ReadMe.md ├── License.md ├── ReadMe.md ├── doc ├── BinaryInformation.md ├── MemoryConsumption.md ├── NotesClassicMacOS.md ├── NotesMacOS.md ├── NotesMotoEZX-E2.md ├── NotesMotoEZX-E680.md ├── NotesMotoEZX-E680i.md ├── NotesMotoEZX.md ├── NotesMotoMAGX.md ├── NotesMotoP2K.md └── NotesUIQ2.md ├── image ├── 2048-AHI-E1-Screenshot1.png ├── 2048-AHI-E1-Screenshot2.png ├── 2048-AHI-E1-Screenshot3.png ├── 2048-AHI-E1-Screenshot4.png ├── 2048-AHI-E1-Screenshot5.png ├── 2048-AHI-K1-Screenshot1.png ├── 2048-AHI-K1-Screenshot2.png ├── 2048-AHI-K1-Screenshot3.png ├── 2048-AHI-K1-Screenshot4.png ├── 2048-AHI-K1-Screenshot5.png ├── 2048-AHI-L6-Screenshot1.png ├── 2048-AHI-L6-Screenshot2.png ├── 2048-AHI-L6-Screenshot3.png ├── 2048-AHI-L6-Screenshot4.png ├── 2048-AHI-L6-Screenshot5.png ├── 2048-AHI-L7e-Screenshot1.png ├── 2048-AHI-L7e-Screenshot2.png ├── 2048-AHI-L7e-Screenshot3.png ├── 2048-AHI-L7e-Screenshot4.png ├── 2048-AHI-L7e-Screenshot5.png ├── 2048-AHI-L9-Screenshot1.png ├── 2048-AHI-L9-Screenshot2.png ├── 2048-AHI-L9-Screenshot3.png ├── 2048-AHI-L9-Screenshot4.png ├── 2048-AHI-L9-Screenshot5.png ├── 2048-AHI-V600-Screenshot1.png ├── 2048-AHI-V600-Screenshot2.png ├── 2048-AHI-V600-Screenshot3.png ├── 2048-AHI-V600-Screenshot4.png ├── 2048-AHI-V600-Screenshot5.png ├── 2048-ARIPOS-C-Pen-600MX-Photo-1.jpg ├── 2048-ARIPOS-Screenshot.png ├── 2048-AUX-3-1000-Screenshot-3.png ├── 2048-AUX-3-1000000-Screenshot-4.png ├── 2048-AUX-3-2-Screenshot-1.png ├── 2048-AUX-3-256-Screenshot-2.png ├── 2048-Carbon-Screenshot-10_0.png ├── 2048-Carbon-Screenshot-10_4.png ├── 2048-Carbon-Screenshot-10_5.png ├── 2048-Carbon-Screenshot-CFM-10_0.png ├── 2048-Carbon-Screenshot-CFM-8_6.png ├── 2048-Carbon-Screenshot-CFM-9_0_4.png ├── 2048-Cocoa-Screenshot-10_0.png ├── 2048-Cocoa-Screenshot-10_13.png ├── 2048-Cocoa-Screenshot-10_5.png ├── 2048-Cocoa-Screenshot-10_6.png ├── 2048-Cocoa-Screenshot-10_8.png ├── 2048-CyOS-Cybiko-Xtreme-Photo-1.jpg ├── 2048-CyOS-Screenshot.png ├── 2048-EZX-E2-Photo.jpg ├── 2048-EZX-E2-Screenshot1.png ├── 2048-EZX-E2-Screenshot2.png ├── 2048-EZX-E2-Screenshot3.png ├── 2048-EZX-E2-Screenshot4.png ├── 2048-EZX-E6-Photo.jpg ├── 2048-EZX-E6-Screenshot1.png ├── 2048-EZX-E6-Screenshot2.png ├── 2048-EZX-E6-Screenshot3.png ├── 2048-EZX-E6-Screenshot4.png ├── 2048-EZX-E680-Photo.jpg ├── 2048-EZX-E680-Screenshot1.png ├── 2048-EZX-E680-Screenshot2.png ├── 2048-EZX-E680-Screenshot3.png ├── 2048-EZX-E680-Screenshot4.png ├── 2048-EZX-E680i-Screenshot1.png ├── 2048-EZX-E680i-Screenshot2.png ├── 2048-EZX-E680i-Screenshot3.png ├── 2048-EZX-E680i-Screenshot4.png ├── 2048-Gtk1-Screenshot.png ├── 2048-Gtk2-Screenshot.png ├── 2048-Gtk3-Screenshot.png ├── 2048-JUCE-Screenshot.png ├── 2048-MCW-MacOS-6-QD-256-Screenshot-7.png ├── 2048-MCW-MacOS-6-QD-Millions-Screenshot-9.png ├── 2048-MCW-MacOS-6-QD-Thousands-Screenshot-8.png ├── 2048-MCW-MacOS-7-QD-GX-Screenshot-2.png ├── 2048-MCW-MacOS-7-QD-Screenshot-1.png ├── 2048-MCW-MacOS-8-QD-GX-Screenshot-4.png ├── 2048-MCW-MacOS-8-QD-Screenshot-3.png ├── 2048-MCW-MacOS-9-QD-GX-Screenshot-6.png ├── 2048-MCW-MacOS-9-QD-Screenshot-5.png ├── 2048-MRE-Nokia-215-Photo.jpg ├── 2048-MRP-myPhone-8870-Photo.jpg ├── 2048-Motif-Screenshot.png ├── 2048-MotoMAGX-ZN5-Screenshot1.png ├── 2048-MotoMAGX-ZN5-Screenshot2.png ├── 2048-MotoMAGX-ZN5-Screenshot3.png ├── 2048-MotoMAGX-ZN5-Screenshot4.png ├── 2048-MotoMAGX-ZN5-Screenshot5.png ├── 2048-MotoMAGX-ZN5-Screenshot6.png ├── 2048-NeXTSTEP-Screenshot.png ├── 2048-P2K-C650-Screenshot1.png ├── 2048-P2K-C650-Screenshot2.png ├── 2048-P2K-C650-Screenshot3.png ├── 2048-P2K-C650-Screenshot4.png ├── 2048-P2K-C650-Screenshot5.png ├── 2048-P2K-E1-Screenshot1.png ├── 2048-P2K-E1-Screenshot10.png ├── 2048-P2K-E1-Screenshot11.png ├── 2048-P2K-E1-Screenshot12.png ├── 2048-P2K-E1-Screenshot13.png ├── 2048-P2K-E1-Screenshot14.png ├── 2048-P2K-E1-Screenshot15.png ├── 2048-P2K-E1-Screenshot2.png ├── 2048-P2K-E1-Screenshot3.png ├── 2048-P2K-E1-Screenshot4.png ├── 2048-P2K-E1-Screenshot5.png ├── 2048-P2K-E1-Screenshot6.png ├── 2048-P2K-E1-Screenshot7.png ├── 2048-P2K-E1-Screenshot8.png ├── 2048-P2K-E1-Screenshot9.png ├── 2048-P2K-K1-Screenshot1.png ├── 2048-P2K-K1-Screenshot2.png ├── 2048-P2K-K1-Screenshot3.png ├── 2048-P2K-K1-Screenshot4.png ├── 2048-P2K-K1-Screenshot5.png ├── 2048-P2K-L6-Screenshot1.png ├── 2048-P2K-L6-Screenshot10.png ├── 2048-P2K-L6-Screenshot11.png ├── 2048-P2K-L6-Screenshot12.png ├── 2048-P2K-L6-Screenshot13.png ├── 2048-P2K-L6-Screenshot14.png ├── 2048-P2K-L6-Screenshot15.png ├── 2048-P2K-L6-Screenshot2.png ├── 2048-P2K-L6-Screenshot3.png ├── 2048-P2K-L6-Screenshot4.png ├── 2048-P2K-L6-Screenshot5.png ├── 2048-P2K-L6-Screenshot6.png ├── 2048-P2K-L6-Screenshot7.png ├── 2048-P2K-L6-Screenshot8.png ├── 2048-P2K-L6-Screenshot9.png ├── 2048-P2K-L7e-Screenshot1.png ├── 2048-P2K-L7e-Screenshot2.png ├── 2048-P2K-L7e-Screenshot3.png ├── 2048-P2K-L7e-Screenshot4.png ├── 2048-P2K-L7e-Screenshot5.png ├── 2048-P2K-L9-Screenshot1.png ├── 2048-P2K-L9-Screenshot2.png ├── 2048-P2K-L9-Screenshot3.png ├── 2048-P2K-L9-Screenshot4.png ├── 2048-P2K-L9-Screenshot5.png ├── 2048-P2K-UIS-L6-E1-Photo.jpg ├── 2048-P2K-UIS-L7e-Photo.jpg ├── 2048-P2K-UIS-V235-Photo.jpg ├── 2048-P2K-UIS-V3r-Photo_1.jpg ├── 2048-P2K-UIS-V3r-Photo_2.jpg ├── 2048-P2K-V600-Screenshot1.png ├── 2048-P2K-V600-Screenshot10.png ├── 2048-P2K-V600-Screenshot11.png ├── 2048-P2K-V600-Screenshot12.png ├── 2048-P2K-V600-Screenshot13.png ├── 2048-P2K-V600-Screenshot14.png ├── 2048-P2K-V600-Screenshot15.png ├── 2048-P2K-V600-Screenshot2.png ├── 2048-P2K-V600-Screenshot3.png ├── 2048-P2K-V600-Screenshot4.png ├── 2048-P2K-V600-Screenshot5.png ├── 2048-P2K-V600-Screenshot6.png ├── 2048-P2K-V600-Screenshot7.png ├── 2048-P2K-V600-Screenshot8.png ├── 2048-P2K-V600-Screenshot9.png ├── 2048-Photon-QNX-Screenshot.png ├── 2048-Qt1-Screenshot.png ├── 2048-Qt2-Screenshot.png ├── 2048-Qt3-Screenshot.png ├── 2048-Qt4-S60-Nokia-C6-00-Photo.jpg ├── 2048-Qt4-Screenshot.png ├── 2048-Qt5-Screenshot.png ├── 2048-QtQuick-Screenshot.png ├── 2048-SMD-Photo.jpg ├── 2048-SMD-Picodrive-Screenshot1.png ├── 2048-SMD-Picodrive-Screenshot2.png ├── 2048-SMD-Picodrive-Screenshot3.png ├── 2048-Serenity-Screenshot.png ├── 2048-Swift-Screenshot-10_13.png ├── 2048-ThinkC-Screenshot-MacOS-6.png ├── 2048-ThinkC-Screenshot-MacOS-8-1.png ├── 2048-ThinkC-Screenshot-MacOS-8-2.png ├── 2048-ThinkC-Screenshot-MacOS-8-3.png ├── 2048-UIQ2-6708-Photo.jpg ├── 2048-UIQ2-A1000-Photo.jpg ├── 2048-UIQ2-A920-Photo.jpg ├── 2048-UIQ2-A925-Photo.jpg ├── 2048-UIQ2-M1000-Photo.jpg ├── 2048-UIQ2-M1000-Screenshot1.png ├── 2048-UIQ2-M1000-Screenshot2.png ├── 2048-UIQ2-M1000-Screenshot3.png ├── 2048-UIQ2-M1000-Screenshot4.png ├── 2048-UIQ2-P800-Photo.jpg ├── 2048-UIQ2-P900-Photo.jpg ├── 2048-UIQ2-P910-Photo.jpg ├── 2048-Vala-Screenshot.png ├── 2048-Xaw-MacX-AUX-3-2-Screenshot-1.png ├── 2048-Xaw-Screenshot.png ├── 2048-Xaw-X11-AUX-3-2-Screenshot-2.png ├── 2048-Xcb-Screenshot.png ├── 2048-Xlib-MacX-AUX-3-2-Screenshot-1.png ├── 2048-Xlib-Screenshot.png ├── 2048-Xlib-X11-AUX-3-2-Screenshot-2.png ├── AnyDesk-Remote-E680-Windows-XP-Screenshot.jpg ├── EZX-E2-Screenshot1.png ├── EZX-E2-Screenshot2.png ├── EZX-E2-Screenshot3.png ├── EZX-E2-Screenshot4.png ├── EZX-E6-Screenshot1.png ├── EZX-E6-Screenshot2.png ├── EZX-E6-Screenshot3.png ├── EZX-E6-Screenshot4.png ├── EZX-E680-Screenshot1.png ├── EZX-E680-Screenshot2.png ├── EZX-E680-Screenshot3.png ├── EZX-E680-Screenshot4.png ├── EZX-E680i-Screenshot1.png ├── EZX-E680i-Screenshot2.png ├── EZX-E680i-Screenshot3.png ├── EZX-E680i-Screenshot4.png ├── Finder-AUX-3-2048-AUX.png ├── Finder-MacOS-6-2048-ThinkC.png ├── Finder-MacOS-6-ExOffScreen.png ├── Finder-MacOS-8-2048-MCW.png ├── Finder-MacOS-9-2048-Carbon.png ├── GNOME-Builder-Fedora-Screenshot.png ├── HackStudio-Serenity-Screenshot.png ├── InterfaceBuilder-MacOSX-10_4-Screenshot.png ├── InterfaceBuilder-MacOSX-10_5-Screenshot.png ├── InterfaceBuilder-MacOSX-Screenshot.png ├── InterfaceBuilder-NeXTSTEP-Screenshot.png ├── MCW-MacOS-8_1-Screenshot_1.png ├── MCW-MacOS-8_1-Screenshot_2.png ├── MCW-MacOS-9_0-Screenshot.png ├── MOTODEV-Studio-Windows-XP-Screenshot.png ├── MPW-MacOS-8_1-Screenshot.png ├── MSVC-CPen-Screenshot1.png ├── P2K-E1-Screenshot1.png ├── P2K-E1-Screenshot10.png ├── P2K-E1-Screenshot11.png ├── P2K-E1-Screenshot12.png ├── P2K-E1-Screenshot13.png ├── P2K-E1-Screenshot14.png ├── P2K-E1-Screenshot15.png ├── P2K-E1-Screenshot2.png ├── P2K-E1-Screenshot3.png ├── P2K-E1-Screenshot4.png ├── P2K-E1-Screenshot5.png ├── P2K-E1-Screenshot6.png ├── P2K-E1-Screenshot7.png ├── P2K-E1-Screenshot8.png ├── P2K-E1-Screenshot9.png ├── P2K-K1-Screenshot1.png ├── P2K-K1-Screenshot2.png ├── P2K-K1-Screenshot3.png ├── P2K-K1-Screenshot4.png ├── P2K-K1-Screenshot5.png ├── P2K-L6-Screenshot1.png ├── P2K-L6-Screenshot10.png ├── P2K-L6-Screenshot11.png ├── P2K-L6-Screenshot12.png ├── P2K-L6-Screenshot13.png ├── P2K-L6-Screenshot14.png ├── P2K-L6-Screenshot15.png ├── P2K-L6-Screenshot2.png ├── P2K-L6-Screenshot3.png ├── P2K-L6-Screenshot4.png ├── P2K-L6-Screenshot5.png ├── P2K-L6-Screenshot6.png ├── P2K-L6-Screenshot7.png ├── P2K-L6-Screenshot8.png ├── P2K-L6-Screenshot9.png ├── P2K-L7e-Screenshot1.png ├── P2K-L7e-Screenshot2.png ├── P2K-L7e-Screenshot3.png ├── P2K-L7e-Screenshot4.png ├── P2K-L7e-Screenshot5.png ├── P2K-L9-Screenshot1.png ├── P2K-L9-Screenshot2.png ├── P2K-L9-Screenshot3.png ├── P2K-L9-Screenshot4.png ├── P2K-L9-Screenshot5.png ├── P2K-V600-Screenshot1.png ├── P2K-V600-Screenshot10.png ├── P2K-V600-Screenshot11.png ├── P2K-V600-Screenshot12.png ├── P2K-V600-Screenshot13.png ├── P2K-V600-Screenshot14.png ├── P2K-V600-Screenshot15.png ├── P2K-V600-Screenshot2.png ├── P2K-V600-Screenshot3.png ├── P2K-V600-Screenshot4.png ├── P2K-V600-Screenshot5.png ├── P2K-V600-Screenshot6.png ├── P2K-V600-Screenshot7.png ├── P2K-V600-Screenshot8.png ├── P2K-V600-Screenshot9.png ├── PhAB-QNX-Screenshot1.png ├── PhAB-QNX-Screenshot2.png ├── ProjectBuilder-MacOSX-Screenshot.png ├── ProjectBuilder-NeXTSTEP-Screenshot.png ├── Projucer-Fedora-Screenshot.png ├── QtCreator-Fedora-Screenshot.png ├── ResEdit-Screenshot-MacOS-6.png ├── SE-C510-Screenshot.png ├── SE-J108-Screenshot.png ├── SE-K510-Screenshot.png ├── SE-U10-Screenshot.png ├── SE-W660-Screenshot.png ├── System-Monitor-Serenity-Screenshot.png ├── TextEditor-Terminal-QNX-Screenshot.png ├── ThinkC-Screenshot-MacOS-6.png ├── UIQ2-Devel-Win2K-Screenshot.png ├── UIQ2-Screenshot1.png ├── UIQ2-Screenshot2.png ├── UIQ2-Screenshot3.png ├── UIQ2-Screenshot4.png ├── Versions-NeXTSTEP-Screenshot.png ├── Vi-AUX-Finder-3_0-Screenshot-1.png ├── Vi-AUX-X11-3_0-Screenshot-2.png ├── Xcode-MacOSX-10_4-Screenshot.png ├── Xcode-MacOSX-10_5-Screenshot.png ├── Xcode-MacOSX-10_6-Screenshot1.png ├── Xcode-MacOSX-10_6-Screenshot2.png ├── Xcode-MacOSX-10_8-Screenshot1.png ├── Xcode-MacOSX-10_8-Screenshot2.png ├── Xcode-macOS-10_13-Screenshot1.png ├── Xcode-macOS-10_13-Screenshot2.png ├── avatar.tiff ├── gfx │ ├── MD_GameOver_Mirrored.png │ ├── MD_GameOver_Normal.png │ ├── MD_Tiles_480x40.png │ ├── MD_YouWon_Mirrored.png │ ├── MD_YouWon_Normal.png │ ├── P2K_End_102x64.bmp │ ├── P2K_Frame_23x23.bmp │ ├── P2K_Frame_36x36.bmp │ ├── P2K_GFX_Bitmaps.h │ ├── P2K_Gen_Res_1bpp.py │ ├── P2K_Numbers_231x21.bmp │ ├── P2K_Numbers_352x32.bmp │ └── P2K_Pattern_16x16.bmp ├── hw │ ├── C-Pen-600_Photo_1.jpg │ ├── C-Pen-600_Photo_2.jpg │ ├── C-Pen-600_Photo_3.jpg │ └── Cybiko-Classic_Photo_1.jpg ├── icon │ ├── 2048-Carbon.icns │ ├── 2048-Cocoa-modern.icns │ ├── 2048-Cocoa.icns │ ├── IIGS.2048.Icons │ ├── action │ │ ├── icon_about_16x16.png │ │ ├── icon_checkbox_false_16x16.png │ │ ├── icon_checkbox_true_16x16.png │ │ ├── icon_exit_16x16.png │ │ ├── icon_help_16x16.png │ │ ├── icon_load_16x16.png │ │ ├── icon_reset_16x16.png │ │ ├── icon_save_16x16.png │ │ └── icon_tiles_16x16.png │ ├── app-2048-Serenity-16.png │ ├── app-2048-Serenity-32.png │ ├── aripos │ │ ├── ArrowH.bmp │ │ ├── ArrowV.bmp │ │ ├── IconBig.bmp │ │ ├── IconSmall.bmp │ │ ├── Lose.bmp │ │ └── Win.bmp │ ├── brew_large_65x42.png │ ├── brew_medium_26x26.png │ ├── brew_small_16x16.png │ ├── cybiko │ │ ├── 0.bmp │ │ ├── 1.bmp │ │ ├── intro.bmp │ │ ├── root.bmp │ │ ├── score_1.bmp │ │ └── score_2.bmp │ ├── ezx_big_68x43.png │ ├── ezx_dia_50x50.png │ ├── ezx_sml_32x24.png │ ├── ic_launcher0.png │ ├── ic_launcher1.png │ ├── ic_launcher2.png │ ├── ic_launcher3.png │ ├── ic_launcher4.png │ ├── ic_launcher5.png │ ├── icon1024.png │ ├── icon128.png │ ├── icon150.tiff │ ├── icon256.png │ ├── icon48.tiff │ ├── icon64.png │ ├── icon_qt4_s60.svg │ ├── magx_16x16.png │ ├── magx_48x48.png │ ├── magx_96x96.png │ ├── p2k_15x15.gif │ ├── p2k_33x33.gif │ ├── p2k_41x41.gif │ ├── precompiled │ │ ├── p2k_app_icon_15x15_gif.h │ │ └── p2k_app_icon_41x41_gif.h │ ├── qnx_14x14.png │ ├── qnx_17x14.png │ ├── qnx_24x20.png │ ├── qnx_44x51.png │ ├── qnx_45x43.png │ ├── uiq_20x16i.bmp │ ├── uiq_20x16m.bmp │ ├── uiq_32x32i.bmp │ └── uiq_32x32m.bmp └── src │ ├── Icon_2048_Mac_OS_6.xcf │ ├── Icon_2048_Mac_OS_8.xcf │ ├── Icon_2048_Mac_OS_9.xcf │ ├── Icon_2048_Mac_OS_X.xcf │ └── MD_Tiles_480x40.xcf ├── sound └── MD_Turn.wav ├── src ├── 2048.c ├── 2048.h ├── CMakeLists.txt ├── ReadMe.md ├── cpp │ ├── 2048.cpp │ ├── 2048.hpp │ └── ReadMe.md ├── old │ ├── 2048.c │ ├── 2048.h │ └── ReadMe.md └── wsd │ ├── 2048.c │ ├── 2048.h │ └── ReadMe.md └── util ├── build_all_linux.sh ├── build_all_mgx_zn5_package.sh ├── build_mpkg_e2_package.sh ├── build_mpkg_e680_package.sh ├── build_mpkg_e680i_package.sh ├── build_mpkg_e6_packages.sh ├── build_mpkg_z6_package.sh └── build_pep_z6_zn5_packages.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/.gitignore -------------------------------------------------------------------------------- /2048-ARIPOS/2048-ARIPOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/2048-ARIPOS.c -------------------------------------------------------------------------------- /2048-ARIPOS/2048.c: -------------------------------------------------------------------------------- 1 | ../src/2048.c -------------------------------------------------------------------------------- /2048-ARIPOS/2048.h: -------------------------------------------------------------------------------- 1 | ../src/2048.h -------------------------------------------------------------------------------- /2048-ARIPOS/Game2048.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/Game2048.dsp -------------------------------------------------------------------------------- /2048-ARIPOS/Game2048.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/Game2048.dsw -------------------------------------------------------------------------------- /2048-ARIPOS/Game2048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/Game2048.md -------------------------------------------------------------------------------- /2048-ARIPOS/Game2048.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/Game2048.xl -------------------------------------------------------------------------------- /2048-ARIPOS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/Makefile -------------------------------------------------------------------------------- /2048-ARIPOS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/ReadMe.md -------------------------------------------------------------------------------- /2048-ARIPOS/res/Game2048.cres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/res/Game2048.cres -------------------------------------------------------------------------------- /2048-ARIPOS/res/Game2048_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-ARIPOS/res/Game2048_resources.h -------------------------------------------------------------------------------- /2048-ARIPOS/res/bmps: -------------------------------------------------------------------------------- 1 | ../../image/icon/aripos -------------------------------------------------------------------------------- /2048-BREW/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/CMakeLists.txt -------------------------------------------------------------------------------- /2048-BREW/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/ReadMe.md -------------------------------------------------------------------------------- /2048-BREW/brew_2048.bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/brew_2048.bar -------------------------------------------------------------------------------- /2048-BREW/brew_2048.bid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/brew_2048.bid -------------------------------------------------------------------------------- /2048-BREW/brew_2048.brh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/brew_2048.brh -------------------------------------------------------------------------------- /2048-BREW/brew_2048.brx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/brew_2048.brx -------------------------------------------------------------------------------- /2048-BREW/brew_2048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/brew_2048.c -------------------------------------------------------------------------------- /2048-BREW/brew_2048.mfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/brew_2048.mfx -------------------------------------------------------------------------------- /2048-BREW/brew_2048.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/brew_2048.mif -------------------------------------------------------------------------------- /2048-BREW/icons/action: -------------------------------------------------------------------------------- 1 | ../../image/icon/action -------------------------------------------------------------------------------- /2048-BREW/icons/brew_large_65x42.png: -------------------------------------------------------------------------------- 1 | ../../image/icon/brew_large_65x42.png -------------------------------------------------------------------------------- /2048-BREW/icons/brew_medium_26x26.png: -------------------------------------------------------------------------------- 1 | ../../image/icon/brew_medium_26x26.png -------------------------------------------------------------------------------- /2048-BREW/icons/brew_small_16x16.png: -------------------------------------------------------------------------------- 1 | ../../image/icon/brew_small_16x16.png -------------------------------------------------------------------------------- /2048-BREW/save/brew_2048.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-BREW/save/brew_2048.sav -------------------------------------------------------------------------------- /2048-Carbon/2048-AUX/2048-AUX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-AUX/2048-AUX.c -------------------------------------------------------------------------------- /2048-Carbon/2048-AUX/2048-AUX.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-AUX/2048-AUX.r -------------------------------------------------------------------------------- /2048-Carbon/2048-AUX/2048-Xaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-AUX/2048-Xaw.c -------------------------------------------------------------------------------- /2048-Carbon/2048-AUX/2048-Xlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-AUX/2048-Xlib.c -------------------------------------------------------------------------------- /2048-Carbon/2048-AUX/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/old/2048.c -------------------------------------------------------------------------------- /2048-Carbon/2048-AUX/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/old/2048.h -------------------------------------------------------------------------------- /2048-Carbon/2048-AUX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-AUX/Makefile -------------------------------------------------------------------------------- /2048-Carbon/2048-AUX/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-AUX/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/2048-Carbon.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-Carbon.cp -------------------------------------------------------------------------------- /2048-Carbon/2048-Carbon.icns: -------------------------------------------------------------------------------- 1 | ../image/icon/2048-Carbon.icns -------------------------------------------------------------------------------- /2048-Carbon/2048-Carbon.plc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-Carbon.plc -------------------------------------------------------------------------------- /2048-Carbon/2048-Carbon.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-Carbon.r -------------------------------------------------------------------------------- /2048-Carbon/2048-IIGS/App.2048.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-IIGS/App.2048.cc -------------------------------------------------------------------------------- /2048-Carbon/2048-IIGS/Icons/IIGS.2048.Icons: -------------------------------------------------------------------------------- 1 | ../../../image/icon/IIGS.2048.Icons -------------------------------------------------------------------------------- /2048-Carbon/2048-IIGS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-IIGS/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/2048-IIGS/Src.2048.c: -------------------------------------------------------------------------------- 1 | ../../src/old/2048.c -------------------------------------------------------------------------------- /2048-Carbon/2048-IIGS/Src.2048.h: -------------------------------------------------------------------------------- 1 | ../../src/old/2048.h -------------------------------------------------------------------------------- /2048-Carbon/2048-MCW/2048-MCW.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-MCW/2048-MCW.cp -------------------------------------------------------------------------------- /2048-Carbon/2048-MCW/2048-MCW.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-MCW/2048-MCW.r -------------------------------------------------------------------------------- /2048-Carbon/2048-MCW/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Carbon/2048-MCW/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Carbon/2048-MCW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-MCW/Makefile -------------------------------------------------------------------------------- /2048-Carbon/2048-MCW/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-MCW/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/2048-ThinkC/2048-ThinkC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-ThinkC/2048-ThinkC.c -------------------------------------------------------------------------------- /2048-Carbon/2048-ThinkC/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Carbon/2048-ThinkC/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Carbon/2048-ThinkC/ExOffScreen/ExOffScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-ThinkC/ExOffScreen/ExOffScreen.c -------------------------------------------------------------------------------- /2048-Carbon/2048-ThinkC/ExOffScreen/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-ThinkC/ExOffScreen/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/2048-ThinkC/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/2048-ThinkC/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/2048.c: -------------------------------------------------------------------------------- 1 | ../src/2048.c -------------------------------------------------------------------------------- /2048-Carbon/2048.h: -------------------------------------------------------------------------------- 1 | ../src/2048.h -------------------------------------------------------------------------------- /2048-Carbon/DiskImages/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/DiskImages/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/ProjectBuilder/2048-Carbon.cp: -------------------------------------------------------------------------------- 1 | ../2048-Carbon.cp -------------------------------------------------------------------------------- /2048-Carbon/ProjectBuilder/2048-Carbon.icns: -------------------------------------------------------------------------------- 1 | ../../image/icon/2048-Carbon.icns -------------------------------------------------------------------------------- /2048-Carbon/ProjectBuilder/2048-Carbon.pbproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/ProjectBuilder/2048-Carbon.pbproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Carbon/ProjectBuilder/2048-Carbon.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/ProjectBuilder/2048-Carbon.r -------------------------------------------------------------------------------- /2048-Carbon/ProjectBuilder/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Carbon/ProjectBuilder/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Carbon/ProjectBuilder/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/ProjectBuilder/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /2048-Carbon/ProjectBuilder/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/ProjectBuilder/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/2048-Carbon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode2/2048-Carbon.c -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/2048-Carbon.icns: -------------------------------------------------------------------------------- 1 | ../../image/icon/2048-Carbon.icns -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/2048-Carbon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode2/2048-Carbon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/English.lproj/2048-Carbon.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode2/English.lproj/2048-Carbon.nib/info.nib -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode2/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode2/Info.plist -------------------------------------------------------------------------------- /2048-Carbon/Xcode2/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode2/ReadMe.md -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/2048-Carbon.c: -------------------------------------------------------------------------------- 1 | ../Xcode2/2048-Carbon.c -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/2048-Carbon.icns: -------------------------------------------------------------------------------- 1 | ../../image/icon/2048-Carbon.icns -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/2048-Carbon.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode3/2048-Carbon.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/2048-Carbon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode3/2048-Carbon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/English.lproj/2048-Carbon.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode3/English.lproj/2048-Carbon.xib -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode3/Info.plist -------------------------------------------------------------------------------- /2048-Carbon/Xcode3/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Carbon/Xcode3/ReadMe.md -------------------------------------------------------------------------------- /2048-Cocoa/2048-Cocoa.icns: -------------------------------------------------------------------------------- 1 | ../image/icon/2048-Cocoa.icns -------------------------------------------------------------------------------- /2048-Cocoa/2048-Cocoa.pbproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/2048-Cocoa.pbproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Cocoa/2048.c: -------------------------------------------------------------------------------- 1 | ../src/2048.c -------------------------------------------------------------------------------- /2048-Cocoa/2048.h: -------------------------------------------------------------------------------- 1 | ../src/2048.h -------------------------------------------------------------------------------- /2048-Cocoa/English.lproj/2048-Cocoa.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/English.lproj/2048-Cocoa.nib/classes.nib -------------------------------------------------------------------------------- /2048-Cocoa/English.lproj/2048-Cocoa.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/English.lproj/2048-Cocoa.nib/info.nib -------------------------------------------------------------------------------- /2048-Cocoa/English.lproj/2048-Cocoa.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/English.lproj/2048-Cocoa.nib/objects.nib -------------------------------------------------------------------------------- /2048-Cocoa/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /2048-Cocoa/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /2048-Cocoa/GameController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/GameController.h -------------------------------------------------------------------------------- /2048-Cocoa/GameController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/GameController.m -------------------------------------------------------------------------------- /2048-Cocoa/GameView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/GameView.h -------------------------------------------------------------------------------- /2048-Cocoa/GameView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/GameView.m -------------------------------------------------------------------------------- /2048-Cocoa/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/ReadMe.md -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/2048-Cocoa.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode10/2048-Cocoa.entitlements -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/2048-Cocoa.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode10/2048-Cocoa.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/2048.c: -------------------------------------------------------------------------------- 1 | ../2048.c -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/2048.h: -------------------------------------------------------------------------------- 1 | ../2048.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Assets.xcassets/AppIcon.appiconset/2048-Cocoa-1024.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/icon1024.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Assets.xcassets/AppIcon.appiconset/2048-Cocoa-128.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/icon128.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Assets.xcassets/AppIcon.appiconset/2048-Cocoa-16.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/app-2048-Serenity-16.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Assets.xcassets/AppIcon.appiconset/2048-Cocoa-256.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/icon256.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Assets.xcassets/AppIcon.appiconset/2048-Cocoa-32.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/app-2048-Serenity-32.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Assets.xcassets/AppIcon.appiconset/2048-Cocoa-512.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/ic_launcher5.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Assets.xcassets/AppIcon.appiconset/2048-Cocoa-64.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/icon64.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode10/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Base.lproj/2048-Cocoa.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode10/Base.lproj/2048-Cocoa.xib -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/GameController.h: -------------------------------------------------------------------------------- 1 | ../GameController.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/GameController.m: -------------------------------------------------------------------------------- 1 | ../GameController.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/GameView.h: -------------------------------------------------------------------------------- 1 | ../GameView.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/GameView.m: -------------------------------------------------------------------------------- 1 | ../GameView.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode10/Info.plist -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/Localizable.strings: -------------------------------------------------------------------------------- 1 | ../English.lproj/Localizable.strings -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode10/ReadMe.md -------------------------------------------------------------------------------- /2048-Cocoa/Xcode10/main.m: -------------------------------------------------------------------------------- 1 | ../main.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/2048-Cocoa-modern.icns: -------------------------------------------------------------------------------- 1 | ../../image/icon/2048-Cocoa-modern.icns -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/2048-Cocoa.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode3/2048-Cocoa.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/2048-Cocoa.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode3/2048-Cocoa.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/English.lproj/2048-Cocoa.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode3/English.lproj/2048-Cocoa.xib -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | ../../English.lproj/Localizable.strings -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/GameController.h: -------------------------------------------------------------------------------- 1 | ../GameController.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/GameController.m: -------------------------------------------------------------------------------- 1 | ../GameController.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/GameView.h: -------------------------------------------------------------------------------- 1 | ../GameView.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/GameView.m: -------------------------------------------------------------------------------- 1 | ../GameView.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode3/Info.plist -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode3/ReadMe.md -------------------------------------------------------------------------------- /2048-Cocoa/Xcode3/main.m: -------------------------------------------------------------------------------- 1 | ../main.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/2048-Cocoa-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode4/2048-Cocoa-Info.plist -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/2048-Cocoa-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode4/2048-Cocoa-Prefix.pch -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/2048-Cocoa-modern.icns: -------------------------------------------------------------------------------- 1 | ../../image/icon/2048-Cocoa-modern.icns -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/2048-Cocoa.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode4/2048-Cocoa.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/GameController.h: -------------------------------------------------------------------------------- 1 | ../GameController.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/GameController.m: -------------------------------------------------------------------------------- 1 | ../GameController.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/GameView.h: -------------------------------------------------------------------------------- 1 | ../GameView.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/GameView.m: -------------------------------------------------------------------------------- 1 | ../GameView.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode4/ReadMe.md -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/en.lproj/2048-Cocoa.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode4/en.lproj/2048-Cocoa.xib -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- 1 | ../../Xcode5/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | ../../English.lproj/Localizable.strings -------------------------------------------------------------------------------- /2048-Cocoa/Xcode4/main.m: -------------------------------------------------------------------------------- 1 | ../main.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/2048-Cocoa-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode5/2048-Cocoa-Info.plist -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/2048-Cocoa-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode5/2048-Cocoa-Prefix.pch -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/2048-Cocoa.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode5/2048-Cocoa.entitlements -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/2048-Cocoa.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode5/2048-Cocoa.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/GameController.h: -------------------------------------------------------------------------------- 1 | ../GameController.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/GameController.m: -------------------------------------------------------------------------------- 1 | ../GameController.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/GameView.h: -------------------------------------------------------------------------------- 1 | ../GameView.h -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/GameView.m: -------------------------------------------------------------------------------- 1 | ../GameView.m -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/Images.xcassets/AppIcon.appiconset/2048-Cocoa-1024.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/icon1024.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/Images.xcassets/AppIcon.appiconset/2048-Cocoa-128.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/icon128.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/Images.xcassets/AppIcon.appiconset/2048-Cocoa-16.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/app-2048-Serenity-16.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/Images.xcassets/AppIcon.appiconset/2048-Cocoa-256.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/icon256.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/Images.xcassets/AppIcon.appiconset/2048-Cocoa-32.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/app-2048-Serenity-32.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/Images.xcassets/AppIcon.appiconset/2048-Cocoa-512.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/ic_launcher5.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/Images.xcassets/AppIcon.appiconset/2048-Cocoa-64.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/icon64.png -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode5/ReadMe.md -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/en.lproj/2048-Cocoa.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode5/en.lproj/2048-Cocoa.xib -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/Xcode5/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | ../../English.lproj/Localizable.strings -------------------------------------------------------------------------------- /2048-Cocoa/Xcode5/main.m: -------------------------------------------------------------------------------- 1 | ../main.m -------------------------------------------------------------------------------- /2048-Cocoa/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Cocoa/main.m -------------------------------------------------------------------------------- /2048-CyOS/2048-CyOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/2048-CyOS.c -------------------------------------------------------------------------------- /2048-CyOS/2048.c: -------------------------------------------------------------------------------- 1 | ../src/2048.c -------------------------------------------------------------------------------- /2048-CyOS/2048.h: -------------------------------------------------------------------------------- 1 | ../src/2048.h -------------------------------------------------------------------------------- /2048-CyOS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/Makefile -------------------------------------------------------------------------------- /2048-CyOS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/ReadMe.md -------------------------------------------------------------------------------- /2048-CyOS/make.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | vmake new -p2 %1 3 | -------------------------------------------------------------------------------- /2048-CyOS/res/0.bmp: -------------------------------------------------------------------------------- 1 | ../../image/icon/cybiko/0.bmp -------------------------------------------------------------------------------- /2048-CyOS/res/0.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/0.help -------------------------------------------------------------------------------- /2048-CyOS/res/1.bmp: -------------------------------------------------------------------------------- 1 | ../../image/icon/cybiko/1.bmp -------------------------------------------------------------------------------- /2048-CyOS/res/classic/root.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/classic/root.inf -------------------------------------------------------------------------------- /2048-CyOS/res/filer_classic.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/filer_classic.list -------------------------------------------------------------------------------- /2048-CyOS/res/filer_xtreme.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/filer_xtreme.list -------------------------------------------------------------------------------- /2048-CyOS/res/intro.bmp: -------------------------------------------------------------------------------- 1 | ../../image/icon/cybiko/intro.bmp -------------------------------------------------------------------------------- /2048-CyOS/res/root.bmp: -------------------------------------------------------------------------------- 1 | ../../image/icon/cybiko/root.bmp -------------------------------------------------------------------------------- /2048-CyOS/res/root.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/root.spl -------------------------------------------------------------------------------- /2048-CyOS/res/score.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/score.inf -------------------------------------------------------------------------------- /2048-CyOS/res/score.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/score.mus -------------------------------------------------------------------------------- /2048-CyOS/res/score_1.bmp: -------------------------------------------------------------------------------- 1 | ../../image/icon/cybiko/score_1.bmp -------------------------------------------------------------------------------- /2048-CyOS/res/score_2.bmp: -------------------------------------------------------------------------------- 1 | ../../image/icon/cybiko/score_2.bmp -------------------------------------------------------------------------------- /2048-CyOS/res/score_lose.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/score_lose.mus -------------------------------------------------------------------------------- /2048-CyOS/res/score_win.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/score_win.mus -------------------------------------------------------------------------------- /2048-CyOS/res/title.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/title.mus -------------------------------------------------------------------------------- /2048-CyOS/res/xtreme/root.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-CyOS/res/xtreme/root.inf -------------------------------------------------------------------------------- /2048-EZX/2048-EZX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/2048-EZX.cpp -------------------------------------------------------------------------------- /2048-EZX/2048-EZX.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/2048-EZX.pro -------------------------------------------------------------------------------- /2048-EZX/2048-EZX_E2.cpp: -------------------------------------------------------------------------------- 1 | ../2048-MotoMAGX/2048-MotoMAGX.cpp -------------------------------------------------------------------------------- /2048-EZX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/Makefile -------------------------------------------------------------------------------- /2048-EZX/Makefile.e2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/Makefile.e2 -------------------------------------------------------------------------------- /2048-EZX/Makefile.e680: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/Makefile.e680 -------------------------------------------------------------------------------- /2048-EZX/Makefile.e680i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/Makefile.e680i -------------------------------------------------------------------------------- /2048-EZX/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/ReadMe.md -------------------------------------------------------------------------------- /2048-EZX/mpkg/2048_EZX.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/mpkg/2048_EZX.desktop -------------------------------------------------------------------------------- /2048-EZX/mpkg/2048_EZX_E2.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/mpkg/2048_EZX_E2.desktop -------------------------------------------------------------------------------- /2048-EZX/mpkg/2048_EZX_E680.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/mpkg/2048_EZX_E680.desktop -------------------------------------------------------------------------------- /2048-EZX/mpkg/2048_EZX_E680I.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-EZX/mpkg/2048_EZX_E680I.desktop -------------------------------------------------------------------------------- /2048-Gtk1/2048-Gtk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk1/2048-Gtk1.c -------------------------------------------------------------------------------- /2048-Gtk1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk1/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Gtk1/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk1/ReadMe.md -------------------------------------------------------------------------------- /2048-Gtk2/2048-Gtk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk2/2048-Gtk2.c -------------------------------------------------------------------------------- /2048-Gtk2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk2/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Gtk2/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk2/ReadMe.md -------------------------------------------------------------------------------- /2048-Gtk3/2048-Gtk3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk3/2048-Gtk3.c -------------------------------------------------------------------------------- /2048-Gtk3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk3/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Gtk3/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Gtk3/ReadMe.md -------------------------------------------------------------------------------- /2048-JUCE/2048-JUCE.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/2048-JUCE.jucer -------------------------------------------------------------------------------- /2048-JUCE/Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_graphics.cpp -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_graphics.mm -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_gui_basics.cpp -------------------------------------------------------------------------------- /2048-JUCE/JuceLibraryCode/include_juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/JuceLibraryCode/include_juce_gui_basics.mm -------------------------------------------------------------------------------- /2048-JUCE/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/ReadMe.md -------------------------------------------------------------------------------- /2048-JUCE/Source/2048-JUCE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-JUCE/Source/2048-JUCE.cpp -------------------------------------------------------------------------------- /2048-MRE/.gitignore: -------------------------------------------------------------------------------- 1 | sdk/ 2 | *.vxp -------------------------------------------------------------------------------- /2048-MRE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRE/Makefile -------------------------------------------------------------------------------- /2048-MRE/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRE/ReadMe.md -------------------------------------------------------------------------------- /2048-MRE/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRE/manifest.json -------------------------------------------------------------------------------- /2048-MRE/src/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-MRE/src/c_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRE/src/c_fix.c -------------------------------------------------------------------------------- /2048-MRE/src/gccmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRE/src/gccmain.c -------------------------------------------------------------------------------- /2048-MRE/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRE/src/main.c -------------------------------------------------------------------------------- /2048-MRP/.gitignore: -------------------------------------------------------------------------------- 1 | header/ 2 | lib/ 3 | mrp.exe 4 | *.mrp -------------------------------------------------------------------------------- /2048-MRP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRP/Makefile -------------------------------------------------------------------------------- /2048-MRP/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRP/ReadMe.md -------------------------------------------------------------------------------- /2048-MRP/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRP/main.c -------------------------------------------------------------------------------- /2048-MRP/pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MRP/pack.json -------------------------------------------------------------------------------- /2048-Motif/2048-Motif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Motif/2048-Motif.c -------------------------------------------------------------------------------- /2048-Motif/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Motif/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Motif/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Motif/ReadMe.md -------------------------------------------------------------------------------- /2048-MotoMAGX/2048-MotoMAGX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/2048-MotoMAGX.cpp -------------------------------------------------------------------------------- /2048-MotoMAGX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/Makefile -------------------------------------------------------------------------------- /2048-MotoMAGX/Makefile.emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/Makefile.emu -------------------------------------------------------------------------------- /2048-MotoMAGX/MotoDevStudioProject/2048-MotoMAGX/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/MotoDevStudioProject/2048-MotoMAGX/.cproject -------------------------------------------------------------------------------- /2048-MotoMAGX/MotoDevStudioProject/2048-MotoMAGX/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/MotoDevStudioProject/2048-MotoMAGX/.project -------------------------------------------------------------------------------- /2048-MotoMAGX/MotoDevStudioProject/2048-MotoMAGX/resource/icon_usr.png: -------------------------------------------------------------------------------- 1 | ../../../../image/icon/magx_48x48.png -------------------------------------------------------------------------------- /2048-MotoMAGX/MotoDevStudioProject/2048-MotoMAGX/src/2048-MotoMAGX.cpp: -------------------------------------------------------------------------------- 1 | ../../../2048-MotoMAGX.cpp -------------------------------------------------------------------------------- /2048-MotoMAGX/MotoDevStudioProject/2048-MotoMAGX/src/2048.c: -------------------------------------------------------------------------------- 1 | ../../../../src/2048.c -------------------------------------------------------------------------------- /2048-MotoMAGX/MotoDevStudioProject/2048-MotoMAGX/src/2048.h: -------------------------------------------------------------------------------- 1 | ../../../../src/2048.h -------------------------------------------------------------------------------- /2048-MotoMAGX/MotoDevStudioProject/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/MotoDevStudioProject/ReadMe.md -------------------------------------------------------------------------------- /2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.cflags: -------------------------------------------------------------------------------- 1 | -std=c89 2 | -------------------------------------------------------------------------------- /2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.config -------------------------------------------------------------------------------- /2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.cxxflags: -------------------------------------------------------------------------------- 1 | -std=c++98 2 | -------------------------------------------------------------------------------- /2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.files -------------------------------------------------------------------------------- /2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/QtCreatorProject/2048-MotoMAGX.includes -------------------------------------------------------------------------------- /2048-MotoMAGX/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/ReadMe.md -------------------------------------------------------------------------------- /2048-MotoMAGX/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/build.sh -------------------------------------------------------------------------------- /2048-MotoMAGX/mgx/2048.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/mgx/2048.cfg -------------------------------------------------------------------------------- /2048-MotoMAGX/mpkg/2048-MotoMAGX.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/mpkg/2048-MotoMAGX.desktop -------------------------------------------------------------------------------- /2048-MotoMAGX/pep/description.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-MotoMAGX/pep/description.ini -------------------------------------------------------------------------------- /2048-NeXTSTEP/2048-NeXTSTEP.iconheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/2048-NeXTSTEP.iconheader -------------------------------------------------------------------------------- /2048-NeXTSTEP/2048-NeXTSTEP.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/2048-NeXTSTEP.info -------------------------------------------------------------------------------- /2048-NeXTSTEP/2048-NeXTSTEP_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/2048-NeXTSTEP_main.m -------------------------------------------------------------------------------- /2048-NeXTSTEP/2048.c: -------------------------------------------------------------------------------- 1 | ../src/2048.c -------------------------------------------------------------------------------- /2048-NeXTSTEP/2048.h: -------------------------------------------------------------------------------- 1 | ../src/2048.h -------------------------------------------------------------------------------- /2048-NeXTSTEP/English.lproj/2048-Info.nib/data.classes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/English.lproj/2048-Info.nib/data.classes -------------------------------------------------------------------------------- /2048-NeXTSTEP/English.lproj/2048-Info.nib/data.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/English.lproj/2048-Info.nib/data.nib -------------------------------------------------------------------------------- /2048-NeXTSTEP/English.lproj/2048-NeXTSTEP.nib/data.classes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/English.lproj/2048-NeXTSTEP.nib/data.classes -------------------------------------------------------------------------------- /2048-NeXTSTEP/English.lproj/2048-NeXTSTEP.nib/data.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/English.lproj/2048-NeXTSTEP.nib/data.nib -------------------------------------------------------------------------------- /2048-NeXTSTEP/GameController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/GameController.h -------------------------------------------------------------------------------- /2048-NeXTSTEP/GameController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/GameController.m -------------------------------------------------------------------------------- /2048-NeXTSTEP/GameView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/GameView.h -------------------------------------------------------------------------------- /2048-NeXTSTEP/GameView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/GameView.m -------------------------------------------------------------------------------- /2048-NeXTSTEP/KeyCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/KeyCodes.h -------------------------------------------------------------------------------- /2048-NeXTSTEP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/Makefile -------------------------------------------------------------------------------- /2048-NeXTSTEP/Makefile.postamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/Makefile.postamble -------------------------------------------------------------------------------- /2048-NeXTSTEP/Makefile.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/Makefile.preamble -------------------------------------------------------------------------------- /2048-NeXTSTEP/PB.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/PB.gdbinit -------------------------------------------------------------------------------- /2048-NeXTSTEP/PB.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/PB.project -------------------------------------------------------------------------------- /2048-NeXTSTEP/PostScriptWraps.psw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/PostScriptWraps.psw -------------------------------------------------------------------------------- /2048-NeXTSTEP/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-NeXTSTEP/ReadMe.md -------------------------------------------------------------------------------- /2048-NeXTSTEP/avatar.tiff: -------------------------------------------------------------------------------- 1 | ../image/avatar.tiff -------------------------------------------------------------------------------- /2048-NeXTSTEP/icon150.tiff: -------------------------------------------------------------------------------- 1 | ../image/icon/icon150.tiff -------------------------------------------------------------------------------- /2048-NeXTSTEP/icon48.tiff: -------------------------------------------------------------------------------- 1 | ../image/icon/icon48.tiff -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/2048-AHI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/2048-AHI.c -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/2048-AHI.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/2048-AHI.qbs -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/CMakeLists.txt -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/Makefile -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/ReadMe.md -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/make_ep1.bat -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/make_ep2.bat -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/qtcreator/2048-AHI.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/qtcreator/2048-AHI.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/qtcreator/2048-AHI.config -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/qtcreator/2048-AHI.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/qtcreator/2048-AHI.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/qtcreator/2048-AHI.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/qtcreator/2048-AHI.files -------------------------------------------------------------------------------- /2048-P2K/2048-AHI/qtcreator/2048-AHI.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-AHI/qtcreator/2048-AHI.includes -------------------------------------------------------------------------------- /2048-P2K/2048-UIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-UIS.c -------------------------------------------------------------------------------- /2048-P2K/2048-UIS.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/2048-UIS.qbs -------------------------------------------------------------------------------- /2048-P2K/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/CMakeLists.txt -------------------------------------------------------------------------------- /2048-P2K/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/Makefile -------------------------------------------------------------------------------- /2048-P2K/Makefile.mcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/Makefile.mcore -------------------------------------------------------------------------------- /2048-P2K/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/ReadMe.md -------------------------------------------------------------------------------- /2048-P2K/make_em1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/make_em1.bat -------------------------------------------------------------------------------- /2048-P2K/make_em2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/make_em2.bat -------------------------------------------------------------------------------- /2048-P2K/make_ep1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/make_ep1.bat -------------------------------------------------------------------------------- /2048-P2K/make_ep2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/make_ep2.bat -------------------------------------------------------------------------------- /2048-P2K/qtcreator/2048-UIS.cflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /2048-P2K/qtcreator/2048-UIS.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/qtcreator/2048-UIS.config -------------------------------------------------------------------------------- /2048-P2K/qtcreator/2048-UIS.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /2048-P2K/qtcreator/2048-UIS.cxxflags: -------------------------------------------------------------------------------- 1 | -Wno-int-to-void-pointer-cast 2 | -------------------------------------------------------------------------------- /2048-P2K/qtcreator/2048-UIS.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/qtcreator/2048-UIS.files -------------------------------------------------------------------------------- /2048-P2K/qtcreator/2048-UIS.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/qtcreator/2048-UIS.includes -------------------------------------------------------------------------------- /2048-P2K/save/2048.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-P2K/save/2048.sav -------------------------------------------------------------------------------- /2048-Photon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/Makefile -------------------------------------------------------------------------------- /2048-Photon/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/ReadMe.md -------------------------------------------------------------------------------- /2048-Photon/abapp.dfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/abapp.dfn -------------------------------------------------------------------------------- /2048-Photon/abapp.wsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/abapp.wsp -------------------------------------------------------------------------------- /2048-Photon/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/common.mk -------------------------------------------------------------------------------- /2048-Photon/src/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-Photon/src/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-Photon/src/GmGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/GmGlobals.h -------------------------------------------------------------------------------- /2048-Photon/src/GmMenuItemsCbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/GmMenuItemsCbs.c -------------------------------------------------------------------------------- /2048-Photon/src/GmRawDrawCb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/GmRawDrawCb.c -------------------------------------------------------------------------------- /2048-Photon/src/GmRawInitCb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/GmRawInitCb.c -------------------------------------------------------------------------------- /2048-Photon/src/GmSourceButtonEventCb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/GmSourceButtonEventCb.c -------------------------------------------------------------------------------- /2048-Photon/src/GmWindowKeyEventCb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/GmWindowKeyEventCb.c -------------------------------------------------------------------------------- /2048-Photon/src/Usemsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/Usemsg -------------------------------------------------------------------------------- /2048-Photon/src/abLfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abLfiles -------------------------------------------------------------------------------- /2048-Photon/src/abWfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abWfiles -------------------------------------------------------------------------------- /2048-Photon/src/abdefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abdefine.h -------------------------------------------------------------------------------- /2048-Photon/src/abevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abevents.h -------------------------------------------------------------------------------- /2048-Photon/src/abimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abimport.h -------------------------------------------------------------------------------- /2048-Photon/src/ablibs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/ablibs.h -------------------------------------------------------------------------------- /2048-Photon/src/ablinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/ablinks.h -------------------------------------------------------------------------------- /2048-Photon/src/abmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abmain.c -------------------------------------------------------------------------------- /2048-Photon/src/abplatform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abplatform -------------------------------------------------------------------------------- /2048-Photon/src/abvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abvars.h -------------------------------------------------------------------------------- /2048-Photon/src/abwidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/abwidgets.h -------------------------------------------------------------------------------- /2048-Photon/src/indLfiles: -------------------------------------------------------------------------------- 1 | MYLIB = 2 | -------------------------------------------------------------------------------- /2048-Photon/src/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/src/proto.h -------------------------------------------------------------------------------- /2048-Photon/wgt/GmDialogAbout.wgtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/wgt/GmDialogAbout.wgtd -------------------------------------------------------------------------------- /2048-Photon/wgt/GmMenuGame.wgtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/wgt/GmMenuGame.wgtm -------------------------------------------------------------------------------- /2048-Photon/wgt/GmMenuHelp.wgtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/wgt/GmMenuHelp.wgtm -------------------------------------------------------------------------------- /2048-Photon/wgt/GmMenuView.wgtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/wgt/GmMenuView.wgtm -------------------------------------------------------------------------------- /2048-Photon/wgt/GmWindow.wgtw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/wgt/GmWindow.wgtw -------------------------------------------------------------------------------- /2048-Photon/wgt/Icon.wgti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/wgt/Icon.wgti -------------------------------------------------------------------------------- /2048-Photon/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Photon/x86/Makefile -------------------------------------------------------------------------------- /2048-Photon/x86/o-g/Makefile: -------------------------------------------------------------------------------- 1 | include ../../common.mk 2 | -------------------------------------------------------------------------------- /2048-Photon/x86/o/Makefile: -------------------------------------------------------------------------------- 1 | include ../../common.mk 2 | -------------------------------------------------------------------------------- /2048-Qt1/2048-Qt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt1/2048-Qt1.cpp -------------------------------------------------------------------------------- /2048-Qt1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt1/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Qt1/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt1/ReadMe.md -------------------------------------------------------------------------------- /2048-Qt2/2048-Qt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt2/2048-Qt2.cpp -------------------------------------------------------------------------------- /2048-Qt2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt2/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Qt2/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt2/ReadMe.md -------------------------------------------------------------------------------- /2048-Qt3/2048-Qt3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt3/2048-Qt3.cpp -------------------------------------------------------------------------------- /2048-Qt3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt3/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Qt3/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt3/ReadMe.md -------------------------------------------------------------------------------- /2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.cpp -------------------------------------------------------------------------------- /2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.desktop -------------------------------------------------------------------------------- /2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.kdevelop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.kdevelop -------------------------------------------------------------------------------- /2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.pro -------------------------------------------------------------------------------- /2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-Qtopia4/2048-Qt4-Qtopia4.ui -------------------------------------------------------------------------------- /2048-Qt4-Qtopia4/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-Qtopia4/ReadMe.md -------------------------------------------------------------------------------- /2048-Qt4-Qtopia4/help/html/2048-Qt4-Qtopia4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-Qtopia4/help/html/2048-Qt4-Qtopia4.html -------------------------------------------------------------------------------- /2048-Qt4-Qtopia4/pics/2048_qt4_qtopia4.svg: -------------------------------------------------------------------------------- 1 | ../../image/icon/icon_qt4_s60.svg -------------------------------------------------------------------------------- /2048-Qt4-S60/2048-Qt4-S60.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-S60/2048-Qt4-S60.cpp -------------------------------------------------------------------------------- /2048-Qt4-S60/2048-Qt4-S60.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-S60/2048-Qt4-S60.desktop -------------------------------------------------------------------------------- /2048-Qt4-S60/2048-Qt4-S60.png: -------------------------------------------------------------------------------- 1 | ../image/icon/icon64.png -------------------------------------------------------------------------------- /2048-Qt4-S60/2048-Qt4-S60.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-S60/2048-Qt4-S60.pro -------------------------------------------------------------------------------- /2048-Qt4-S60/2048-Qt4-S60.svg: -------------------------------------------------------------------------------- 1 | ../image/icon/icon_qt4_s60.svg -------------------------------------------------------------------------------- /2048-Qt4-S60/2048-Qt4-S60.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-S60/2048-Qt4-S60.ui -------------------------------------------------------------------------------- /2048-Qt4-S60/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-S60/ReadMe.md -------------------------------------------------------------------------------- /2048-Qt4-S60/deployment.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4-S60/deployment.pri -------------------------------------------------------------------------------- /2048-Qt4/2048-Qt4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4/2048-Qt4.cpp -------------------------------------------------------------------------------- /2048-Qt4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Qt4/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt4/ReadMe.md -------------------------------------------------------------------------------- /2048-Qt5/2048-Qt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt5/2048-Qt5.cpp -------------------------------------------------------------------------------- /2048-Qt5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt5/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Qt5/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Qt5/ReadMe.md -------------------------------------------------------------------------------- /2048-QtQuick/2048-QtQuick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-QtQuick/2048-QtQuick.cpp -------------------------------------------------------------------------------- /2048-QtQuick/2048-QtQuick.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-QtQuick/2048-QtQuick.qml -------------------------------------------------------------------------------- /2048-QtQuick/2048-QtQuick.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-QtQuick/2048-QtQuick.qrc -------------------------------------------------------------------------------- /2048-QtQuick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-QtQuick/CMakeLists.txt -------------------------------------------------------------------------------- /2048-QtQuick/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-QtQuick/ReadMe.md -------------------------------------------------------------------------------- /2048-SE/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/.gitignore -------------------------------------------------------------------------------- /2048-SE/2048/2048.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/2048.ewp -------------------------------------------------------------------------------- /2048-SE/2048/2048.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/2048.eww -------------------------------------------------------------------------------- /2048-SE/2048/conf_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/conf_loader.cpp -------------------------------------------------------------------------------- /2048-SE/2048/conf_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/conf_loader.h -------------------------------------------------------------------------------- /2048-SE/2048/config_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/config_data.c -------------------------------------------------------------------------------- /2048-SE/2048/config_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/config_data.h -------------------------------------------------------------------------------- /2048-SE/2048/icon32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/icon32.h -------------------------------------------------------------------------------- /2048-SE/2048/icon64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/icon64.h -------------------------------------------------------------------------------- /2048-SE/2048/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/main.c -------------------------------------------------------------------------------- /2048-SE/2048/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/rand.c -------------------------------------------------------------------------------- /2048-SE/2048/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/rand.h -------------------------------------------------------------------------------- /2048-SE/2048/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/2048/stdint.h -------------------------------------------------------------------------------- /2048-SE/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SE/ReadMe.md -------------------------------------------------------------------------------- /2048-SMD/QtCreatorProject/2048-SMD.cflags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2048-SMD/QtCreatorProject/2048-SMD.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/QtCreatorProject/2048-SMD.config -------------------------------------------------------------------------------- /2048-SMD/QtCreatorProject/2048-SMD.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /2048-SMD/QtCreatorProject/2048-SMD.cxxflags: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2048-SMD/QtCreatorProject/2048-SMD.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/QtCreatorProject/2048-SMD.files -------------------------------------------------------------------------------- /2048-SMD/QtCreatorProject/2048-SMD.includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/QtCreatorProject/2048-SMD.includes -------------------------------------------------------------------------------- /2048-SMD/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/ReadMe.md -------------------------------------------------------------------------------- /2048-SMD/inc/2048.h: -------------------------------------------------------------------------------- 1 | ../../src/2048.h -------------------------------------------------------------------------------- /2048-SMD/res/gfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/res/gfx.res -------------------------------------------------------------------------------- /2048-SMD/res/gfx/MD_GameOver_Mirrored.png: -------------------------------------------------------------------------------- 1 | ../../../image/gfx/MD_GameOver_Mirrored.png -------------------------------------------------------------------------------- /2048-SMD/res/gfx/MD_GameOver_Normal.png: -------------------------------------------------------------------------------- 1 | ../../../image/gfx/MD_GameOver_Normal.png -------------------------------------------------------------------------------- /2048-SMD/res/gfx/MD_Tiles_480x40.png: -------------------------------------------------------------------------------- 1 | ../../../image/gfx/MD_Tiles_480x40.png -------------------------------------------------------------------------------- /2048-SMD/res/gfx/MD_YouWon_Mirrored.png: -------------------------------------------------------------------------------- 1 | ../../../image/gfx/MD_YouWon_Mirrored.png -------------------------------------------------------------------------------- /2048-SMD/res/gfx/MD_YouWon_Normal.png: -------------------------------------------------------------------------------- 1 | ../../../image/gfx/MD_YouWon_Normal.png -------------------------------------------------------------------------------- /2048-SMD/res/sfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/res/sfx.res -------------------------------------------------------------------------------- /2048-SMD/res/sfx/MD_Turn.wav: -------------------------------------------------------------------------------- 1 | ../../../sound/MD_Turn.wav -------------------------------------------------------------------------------- /2048-SMD/src/2048-SMD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/src/2048-SMD.c -------------------------------------------------------------------------------- /2048-SMD/src/2048.c: -------------------------------------------------------------------------------- 1 | ../../src/2048.c -------------------------------------------------------------------------------- /2048-SMD/src/boot/rom_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/src/boot/rom_head.c -------------------------------------------------------------------------------- /2048-SMD/src/boot/sega.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-SMD/src/boot/sega.s -------------------------------------------------------------------------------- /2048-Serenity/2048-Serenity.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Serenity/2048-Serenity.files -------------------------------------------------------------------------------- /2048-Serenity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Serenity/Makefile -------------------------------------------------------------------------------- /2048-Serenity/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Serenity/ReadMe.md -------------------------------------------------------------------------------- /2048-Serenity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Serenity/main.cpp -------------------------------------------------------------------------------- /2048-Serenity/port/2048-Serenity.af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Serenity/port/2048-Serenity.af -------------------------------------------------------------------------------- /2048-Serenity/port/2048/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Serenity/port/2048/package.sh -------------------------------------------------------------------------------- /2048-Serenity/port/Makefile.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Serenity/port/Makefile.port -------------------------------------------------------------------------------- /2048-Swift/2048-Swift-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/2048-Swift-Bridging-Header.h -------------------------------------------------------------------------------- /2048-Swift/2048-Swift-Bridging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/2048-Swift-Bridging.c -------------------------------------------------------------------------------- /2048-Swift/2048-Swift.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/2048-Swift.entitlements -------------------------------------------------------------------------------- /2048-Swift/2048-Swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/2048-Swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2048-Swift/2048.c: -------------------------------------------------------------------------------- 1 | ../src/2048.c -------------------------------------------------------------------------------- /2048-Swift/2048.h: -------------------------------------------------------------------------------- 1 | ../src/2048.h -------------------------------------------------------------------------------- /2048-Swift/Assets.xcassets: -------------------------------------------------------------------------------- 1 | ../2048-Cocoa/Xcode10/Assets.xcassets/ -------------------------------------------------------------------------------- /2048-Swift/Base.lproj/2048-Swift.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/Base.lproj/2048-Swift.xib -------------------------------------------------------------------------------- /2048-Swift/GameController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/GameController.swift -------------------------------------------------------------------------------- /2048-Swift/GameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/GameView.swift -------------------------------------------------------------------------------- /2048-Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/Info.plist -------------------------------------------------------------------------------- /2048-Swift/Localizable.strings: -------------------------------------------------------------------------------- 1 | ../2048-Cocoa/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /2048-Swift/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Swift/ReadMe.md -------------------------------------------------------------------------------- /2048-UIQ2/2048-UIQ2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-UIQ2/2048-UIQ2.cpp -------------------------------------------------------------------------------- /2048-UIQ2/2048-UIQ2.hrh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-UIQ2/2048-UIQ2.hrh -------------------------------------------------------------------------------- /2048-UIQ2/2048-UIQ2.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-UIQ2/2048-UIQ2.mmp -------------------------------------------------------------------------------- /2048-UIQ2/2048-UIQ2.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-UIQ2/2048-UIQ2.pkg -------------------------------------------------------------------------------- /2048-UIQ2/2048-UIQ2.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-UIQ2/2048-UIQ2.rss -------------------------------------------------------------------------------- /2048-UIQ2/2048-UIQ2_AIF.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-UIQ2/2048-UIQ2_AIF.rss -------------------------------------------------------------------------------- /2048-UIQ2/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-UIQ2/ReadMe.md -------------------------------------------------------------------------------- /2048-UIQ2/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-UIQ2/bld.inf -------------------------------------------------------------------------------- /2048-Vala/2048-Vala.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Vala/2048-Vala.vala -------------------------------------------------------------------------------- /2048-Vala/EngineWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Vala/EngineWrapper.c -------------------------------------------------------------------------------- /2048-Vala/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Vala/ReadMe.md -------------------------------------------------------------------------------- /2048-Vala/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Vala/meson.build -------------------------------------------------------------------------------- /2048-Xaw/2048-Xaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xaw/2048-Xaw.c -------------------------------------------------------------------------------- /2048-Xaw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xaw/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Xaw/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xaw/ReadMe.md -------------------------------------------------------------------------------- /2048-Xcb/2048-Xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xcb/2048-Xcb.c -------------------------------------------------------------------------------- /2048-Xcb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xcb/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Xcb/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xcb/ReadMe.md -------------------------------------------------------------------------------- /2048-Xlib/2048-Xlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xlib/2048-Xlib.c -------------------------------------------------------------------------------- /2048-Xlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xlib/CMakeLists.txt -------------------------------------------------------------------------------- /2048-Xlib/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/2048-Xlib/ReadMe.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/License.md -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/ReadMe.md -------------------------------------------------------------------------------- /doc/BinaryInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/BinaryInformation.md -------------------------------------------------------------------------------- /doc/MemoryConsumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/MemoryConsumption.md -------------------------------------------------------------------------------- /doc/NotesClassicMacOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesClassicMacOS.md -------------------------------------------------------------------------------- /doc/NotesMacOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesMacOS.md -------------------------------------------------------------------------------- /doc/NotesMotoEZX-E2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesMotoEZX-E2.md -------------------------------------------------------------------------------- /doc/NotesMotoEZX-E680.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesMotoEZX-E680.md -------------------------------------------------------------------------------- /doc/NotesMotoEZX-E680i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesMotoEZX-E680i.md -------------------------------------------------------------------------------- /doc/NotesMotoEZX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesMotoEZX.md -------------------------------------------------------------------------------- /doc/NotesMotoMAGX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesMotoMAGX.md -------------------------------------------------------------------------------- /doc/NotesMotoP2K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesMotoP2K.md -------------------------------------------------------------------------------- /doc/NotesUIQ2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/doc/NotesUIQ2.md -------------------------------------------------------------------------------- /image/2048-AHI-E1-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-E1-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-AHI-E1-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-E1-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-AHI-E1-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-E1-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-AHI-E1-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-E1-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-AHI-E1-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-E1-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-AHI-K1-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-K1-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-AHI-K1-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-K1-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-AHI-K1-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-K1-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-AHI-K1-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-K1-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-AHI-K1-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-K1-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-AHI-L6-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L6-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-AHI-L6-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L6-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-AHI-L6-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L6-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-AHI-L6-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L6-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-AHI-L6-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L6-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-AHI-L7e-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L7e-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-AHI-L7e-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L7e-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-AHI-L7e-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L7e-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-AHI-L7e-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L7e-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-AHI-L7e-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L7e-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-AHI-L9-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L9-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-AHI-L9-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L9-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-AHI-L9-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L9-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-AHI-L9-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L9-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-AHI-L9-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-L9-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-AHI-V600-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-V600-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-AHI-V600-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-V600-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-AHI-V600-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-V600-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-AHI-V600-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-V600-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-AHI-V600-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AHI-V600-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-ARIPOS-C-Pen-600MX-Photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-ARIPOS-C-Pen-600MX-Photo-1.jpg -------------------------------------------------------------------------------- /image/2048-ARIPOS-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-ARIPOS-Screenshot.png -------------------------------------------------------------------------------- /image/2048-AUX-3-1000-Screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AUX-3-1000-Screenshot-3.png -------------------------------------------------------------------------------- /image/2048-AUX-3-1000000-Screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AUX-3-1000000-Screenshot-4.png -------------------------------------------------------------------------------- /image/2048-AUX-3-2-Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AUX-3-2-Screenshot-1.png -------------------------------------------------------------------------------- /image/2048-AUX-3-256-Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-AUX-3-256-Screenshot-2.png -------------------------------------------------------------------------------- /image/2048-Carbon-Screenshot-10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Carbon-Screenshot-10_0.png -------------------------------------------------------------------------------- /image/2048-Carbon-Screenshot-10_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Carbon-Screenshot-10_4.png -------------------------------------------------------------------------------- /image/2048-Carbon-Screenshot-10_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Carbon-Screenshot-10_5.png -------------------------------------------------------------------------------- /image/2048-Carbon-Screenshot-CFM-10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Carbon-Screenshot-CFM-10_0.png -------------------------------------------------------------------------------- /image/2048-Carbon-Screenshot-CFM-8_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Carbon-Screenshot-CFM-8_6.png -------------------------------------------------------------------------------- /image/2048-Carbon-Screenshot-CFM-9_0_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Carbon-Screenshot-CFM-9_0_4.png -------------------------------------------------------------------------------- /image/2048-Cocoa-Screenshot-10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Cocoa-Screenshot-10_0.png -------------------------------------------------------------------------------- /image/2048-Cocoa-Screenshot-10_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Cocoa-Screenshot-10_13.png -------------------------------------------------------------------------------- /image/2048-Cocoa-Screenshot-10_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Cocoa-Screenshot-10_5.png -------------------------------------------------------------------------------- /image/2048-Cocoa-Screenshot-10_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Cocoa-Screenshot-10_6.png -------------------------------------------------------------------------------- /image/2048-Cocoa-Screenshot-10_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Cocoa-Screenshot-10_8.png -------------------------------------------------------------------------------- /image/2048-CyOS-Cybiko-Xtreme-Photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-CyOS-Cybiko-Xtreme-Photo-1.jpg -------------------------------------------------------------------------------- /image/2048-CyOS-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-CyOS-Screenshot.png -------------------------------------------------------------------------------- /image/2048-EZX-E2-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E2-Photo.jpg -------------------------------------------------------------------------------- /image/2048-EZX-E2-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E2-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-EZX-E2-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E2-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-EZX-E2-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E2-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-EZX-E2-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E2-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-EZX-E6-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E6-Photo.jpg -------------------------------------------------------------------------------- /image/2048-EZX-E6-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E6-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-EZX-E6-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E6-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-EZX-E6-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E6-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-EZX-E6-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E6-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-EZX-E680-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680-Photo.jpg -------------------------------------------------------------------------------- /image/2048-EZX-E680-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-EZX-E680-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-EZX-E680-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-EZX-E680-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-EZX-E680i-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680i-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-EZX-E680i-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680i-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-EZX-E680i-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680i-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-EZX-E680i-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-EZX-E680i-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-Gtk1-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Gtk1-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Gtk2-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Gtk2-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Gtk3-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Gtk3-Screenshot.png -------------------------------------------------------------------------------- /image/2048-JUCE-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-JUCE-Screenshot.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-6-QD-256-Screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-6-QD-256-Screenshot-7.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-6-QD-Millions-Screenshot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-6-QD-Millions-Screenshot-9.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-6-QD-Thousands-Screenshot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-6-QD-Thousands-Screenshot-8.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-7-QD-GX-Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-7-QD-GX-Screenshot-2.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-7-QD-Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-7-QD-Screenshot-1.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-8-QD-GX-Screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-8-QD-GX-Screenshot-4.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-8-QD-Screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-8-QD-Screenshot-3.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-9-QD-GX-Screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-9-QD-GX-Screenshot-6.png -------------------------------------------------------------------------------- /image/2048-MCW-MacOS-9-QD-Screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MCW-MacOS-9-QD-Screenshot-5.png -------------------------------------------------------------------------------- /image/2048-MRE-Nokia-215-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MRE-Nokia-215-Photo.jpg -------------------------------------------------------------------------------- /image/2048-MRP-myPhone-8870-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MRP-myPhone-8870-Photo.jpg -------------------------------------------------------------------------------- /image/2048-Motif-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Motif-Screenshot.png -------------------------------------------------------------------------------- /image/2048-MotoMAGX-ZN5-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MotoMAGX-ZN5-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-MotoMAGX-ZN5-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MotoMAGX-ZN5-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-MotoMAGX-ZN5-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MotoMAGX-ZN5-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-MotoMAGX-ZN5-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MotoMAGX-ZN5-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-MotoMAGX-ZN5-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MotoMAGX-ZN5-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-MotoMAGX-ZN5-Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-MotoMAGX-ZN5-Screenshot6.png -------------------------------------------------------------------------------- /image/2048-NeXTSTEP-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-NeXTSTEP-Screenshot.png -------------------------------------------------------------------------------- /image/2048-P2K-C650-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-C650-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-P2K-C650-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-C650-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-P2K-C650-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-C650-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-P2K-C650-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-C650-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-P2K-C650-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-C650-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot10.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot11.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot12.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot13.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot14.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot15.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot6.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot7.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot8.png -------------------------------------------------------------------------------- /image/2048-P2K-E1-Screenshot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-E1-Screenshot9.png -------------------------------------------------------------------------------- /image/2048-P2K-K1-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-K1-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-P2K-K1-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-K1-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-P2K-K1-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-K1-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-P2K-K1-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-K1-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-P2K-K1-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-K1-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot10.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot11.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot12.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot13.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot14.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot15.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot6.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot7.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot8.png -------------------------------------------------------------------------------- /image/2048-P2K-L6-Screenshot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L6-Screenshot9.png -------------------------------------------------------------------------------- /image/2048-P2K-L7e-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L7e-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-P2K-L7e-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L7e-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-P2K-L7e-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L7e-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-P2K-L7e-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L7e-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-P2K-L7e-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L7e-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-P2K-L9-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L9-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-P2K-L9-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L9-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-P2K-L9-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L9-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-P2K-L9-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L9-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-P2K-L9-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-L9-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-P2K-UIS-L6-E1-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-UIS-L6-E1-Photo.jpg -------------------------------------------------------------------------------- /image/2048-P2K-UIS-L7e-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-UIS-L7e-Photo.jpg -------------------------------------------------------------------------------- /image/2048-P2K-UIS-V235-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-UIS-V235-Photo.jpg -------------------------------------------------------------------------------- /image/2048-P2K-UIS-V3r-Photo_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-UIS-V3r-Photo_1.jpg -------------------------------------------------------------------------------- /image/2048-P2K-UIS-V3r-Photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-UIS-V3r-Photo_2.jpg -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot10.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot11.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot12.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot13.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot14.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot15.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot5.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot6.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot7.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot8.png -------------------------------------------------------------------------------- /image/2048-P2K-V600-Screenshot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-P2K-V600-Screenshot9.png -------------------------------------------------------------------------------- /image/2048-Photon-QNX-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Photon-QNX-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Qt1-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Qt1-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Qt2-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Qt2-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Qt3-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Qt3-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Qt4-S60-Nokia-C6-00-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Qt4-S60-Nokia-C6-00-Photo.jpg -------------------------------------------------------------------------------- /image/2048-Qt4-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Qt4-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Qt5-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Qt5-Screenshot.png -------------------------------------------------------------------------------- /image/2048-QtQuick-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-QtQuick-Screenshot.png -------------------------------------------------------------------------------- /image/2048-SMD-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-SMD-Photo.jpg -------------------------------------------------------------------------------- /image/2048-SMD-Picodrive-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-SMD-Picodrive-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-SMD-Picodrive-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-SMD-Picodrive-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-SMD-Picodrive-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-SMD-Picodrive-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-Serenity-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Serenity-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Swift-Screenshot-10_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Swift-Screenshot-10_13.png -------------------------------------------------------------------------------- /image/2048-ThinkC-Screenshot-MacOS-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-ThinkC-Screenshot-MacOS-6.png -------------------------------------------------------------------------------- /image/2048-ThinkC-Screenshot-MacOS-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-ThinkC-Screenshot-MacOS-8-1.png -------------------------------------------------------------------------------- /image/2048-ThinkC-Screenshot-MacOS-8-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-ThinkC-Screenshot-MacOS-8-2.png -------------------------------------------------------------------------------- /image/2048-ThinkC-Screenshot-MacOS-8-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-ThinkC-Screenshot-MacOS-8-3.png -------------------------------------------------------------------------------- /image/2048-UIQ2-6708-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-6708-Photo.jpg -------------------------------------------------------------------------------- /image/2048-UIQ2-A1000-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-A1000-Photo.jpg -------------------------------------------------------------------------------- /image/2048-UIQ2-A920-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-A920-Photo.jpg -------------------------------------------------------------------------------- /image/2048-UIQ2-A925-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-A925-Photo.jpg -------------------------------------------------------------------------------- /image/2048-UIQ2-M1000-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-M1000-Photo.jpg -------------------------------------------------------------------------------- /image/2048-UIQ2-M1000-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-M1000-Screenshot1.png -------------------------------------------------------------------------------- /image/2048-UIQ2-M1000-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-M1000-Screenshot2.png -------------------------------------------------------------------------------- /image/2048-UIQ2-M1000-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-M1000-Screenshot3.png -------------------------------------------------------------------------------- /image/2048-UIQ2-M1000-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-M1000-Screenshot4.png -------------------------------------------------------------------------------- /image/2048-UIQ2-P800-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-P800-Photo.jpg -------------------------------------------------------------------------------- /image/2048-UIQ2-P900-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-P900-Photo.jpg -------------------------------------------------------------------------------- /image/2048-UIQ2-P910-Photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-UIQ2-P910-Photo.jpg -------------------------------------------------------------------------------- /image/2048-Vala-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Vala-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Xaw-MacX-AUX-3-2-Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Xaw-MacX-AUX-3-2-Screenshot-1.png -------------------------------------------------------------------------------- /image/2048-Xaw-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Xaw-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Xaw-X11-AUX-3-2-Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Xaw-X11-AUX-3-2-Screenshot-2.png -------------------------------------------------------------------------------- /image/2048-Xcb-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Xcb-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Xlib-MacX-AUX-3-2-Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Xlib-MacX-AUX-3-2-Screenshot-1.png -------------------------------------------------------------------------------- /image/2048-Xlib-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Xlib-Screenshot.png -------------------------------------------------------------------------------- /image/2048-Xlib-X11-AUX-3-2-Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/2048-Xlib-X11-AUX-3-2-Screenshot-2.png -------------------------------------------------------------------------------- /image/AnyDesk-Remote-E680-Windows-XP-Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/AnyDesk-Remote-E680-Windows-XP-Screenshot.jpg -------------------------------------------------------------------------------- /image/EZX-E2-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E2-Screenshot1.png -------------------------------------------------------------------------------- /image/EZX-E2-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E2-Screenshot2.png -------------------------------------------------------------------------------- /image/EZX-E2-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E2-Screenshot3.png -------------------------------------------------------------------------------- /image/EZX-E2-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E2-Screenshot4.png -------------------------------------------------------------------------------- /image/EZX-E6-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E6-Screenshot1.png -------------------------------------------------------------------------------- /image/EZX-E6-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E6-Screenshot2.png -------------------------------------------------------------------------------- /image/EZX-E6-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E6-Screenshot3.png -------------------------------------------------------------------------------- /image/EZX-E6-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E6-Screenshot4.png -------------------------------------------------------------------------------- /image/EZX-E680-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E680-Screenshot1.png -------------------------------------------------------------------------------- /image/EZX-E680-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E680-Screenshot2.png -------------------------------------------------------------------------------- /image/EZX-E680-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E680-Screenshot3.png -------------------------------------------------------------------------------- /image/EZX-E680-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E680-Screenshot4.png -------------------------------------------------------------------------------- /image/EZX-E680i-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E680i-Screenshot1.png -------------------------------------------------------------------------------- /image/EZX-E680i-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E680i-Screenshot2.png -------------------------------------------------------------------------------- /image/EZX-E680i-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E680i-Screenshot3.png -------------------------------------------------------------------------------- /image/EZX-E680i-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/EZX-E680i-Screenshot4.png -------------------------------------------------------------------------------- /image/Finder-AUX-3-2048-AUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Finder-AUX-3-2048-AUX.png -------------------------------------------------------------------------------- /image/Finder-MacOS-6-2048-ThinkC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Finder-MacOS-6-2048-ThinkC.png -------------------------------------------------------------------------------- /image/Finder-MacOS-6-ExOffScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Finder-MacOS-6-ExOffScreen.png -------------------------------------------------------------------------------- /image/Finder-MacOS-8-2048-MCW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Finder-MacOS-8-2048-MCW.png -------------------------------------------------------------------------------- /image/Finder-MacOS-9-2048-Carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Finder-MacOS-9-2048-Carbon.png -------------------------------------------------------------------------------- /image/GNOME-Builder-Fedora-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/GNOME-Builder-Fedora-Screenshot.png -------------------------------------------------------------------------------- /image/HackStudio-Serenity-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/HackStudio-Serenity-Screenshot.png -------------------------------------------------------------------------------- /image/InterfaceBuilder-MacOSX-10_4-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/InterfaceBuilder-MacOSX-10_4-Screenshot.png -------------------------------------------------------------------------------- /image/InterfaceBuilder-MacOSX-10_5-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/InterfaceBuilder-MacOSX-10_5-Screenshot.png -------------------------------------------------------------------------------- /image/InterfaceBuilder-MacOSX-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/InterfaceBuilder-MacOSX-Screenshot.png -------------------------------------------------------------------------------- /image/InterfaceBuilder-NeXTSTEP-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/InterfaceBuilder-NeXTSTEP-Screenshot.png -------------------------------------------------------------------------------- /image/MCW-MacOS-8_1-Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/MCW-MacOS-8_1-Screenshot_1.png -------------------------------------------------------------------------------- /image/MCW-MacOS-8_1-Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/MCW-MacOS-8_1-Screenshot_2.png -------------------------------------------------------------------------------- /image/MCW-MacOS-9_0-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/MCW-MacOS-9_0-Screenshot.png -------------------------------------------------------------------------------- /image/MOTODEV-Studio-Windows-XP-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/MOTODEV-Studio-Windows-XP-Screenshot.png -------------------------------------------------------------------------------- /image/MPW-MacOS-8_1-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/MPW-MacOS-8_1-Screenshot.png -------------------------------------------------------------------------------- /image/MSVC-CPen-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/MSVC-CPen-Screenshot1.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot1.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot10.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot11.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot12.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot13.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot14.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot15.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot2.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot3.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot4.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot5.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot6.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot7.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot8.png -------------------------------------------------------------------------------- /image/P2K-E1-Screenshot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-E1-Screenshot9.png -------------------------------------------------------------------------------- /image/P2K-K1-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-K1-Screenshot1.png -------------------------------------------------------------------------------- /image/P2K-K1-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-K1-Screenshot2.png -------------------------------------------------------------------------------- /image/P2K-K1-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-K1-Screenshot3.png -------------------------------------------------------------------------------- /image/P2K-K1-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-K1-Screenshot4.png -------------------------------------------------------------------------------- /image/P2K-K1-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-K1-Screenshot5.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot1.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot10.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot11.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot12.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot13.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot14.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot15.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot2.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot3.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot4.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot5.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot6.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot7.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot8.png -------------------------------------------------------------------------------- /image/P2K-L6-Screenshot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L6-Screenshot9.png -------------------------------------------------------------------------------- /image/P2K-L7e-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L7e-Screenshot1.png -------------------------------------------------------------------------------- /image/P2K-L7e-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L7e-Screenshot2.png -------------------------------------------------------------------------------- /image/P2K-L7e-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L7e-Screenshot3.png -------------------------------------------------------------------------------- /image/P2K-L7e-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L7e-Screenshot4.png -------------------------------------------------------------------------------- /image/P2K-L7e-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L7e-Screenshot5.png -------------------------------------------------------------------------------- /image/P2K-L9-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L9-Screenshot1.png -------------------------------------------------------------------------------- /image/P2K-L9-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L9-Screenshot2.png -------------------------------------------------------------------------------- /image/P2K-L9-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L9-Screenshot3.png -------------------------------------------------------------------------------- /image/P2K-L9-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L9-Screenshot4.png -------------------------------------------------------------------------------- /image/P2K-L9-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-L9-Screenshot5.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot1.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot10.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot11.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot12.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot13.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot14.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot15.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot2.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot3.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot4.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot5.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot6.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot7.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot8.png -------------------------------------------------------------------------------- /image/P2K-V600-Screenshot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/P2K-V600-Screenshot9.png -------------------------------------------------------------------------------- /image/PhAB-QNX-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/PhAB-QNX-Screenshot1.png -------------------------------------------------------------------------------- /image/PhAB-QNX-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/PhAB-QNX-Screenshot2.png -------------------------------------------------------------------------------- /image/ProjectBuilder-MacOSX-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/ProjectBuilder-MacOSX-Screenshot.png -------------------------------------------------------------------------------- /image/ProjectBuilder-NeXTSTEP-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/ProjectBuilder-NeXTSTEP-Screenshot.png -------------------------------------------------------------------------------- /image/Projucer-Fedora-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Projucer-Fedora-Screenshot.png -------------------------------------------------------------------------------- /image/QtCreator-Fedora-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/QtCreator-Fedora-Screenshot.png -------------------------------------------------------------------------------- /image/ResEdit-Screenshot-MacOS-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/ResEdit-Screenshot-MacOS-6.png -------------------------------------------------------------------------------- /image/SE-C510-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/SE-C510-Screenshot.png -------------------------------------------------------------------------------- /image/SE-J108-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/SE-J108-Screenshot.png -------------------------------------------------------------------------------- /image/SE-K510-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/SE-K510-Screenshot.png -------------------------------------------------------------------------------- /image/SE-U10-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/SE-U10-Screenshot.png -------------------------------------------------------------------------------- /image/SE-W660-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/SE-W660-Screenshot.png -------------------------------------------------------------------------------- /image/System-Monitor-Serenity-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/System-Monitor-Serenity-Screenshot.png -------------------------------------------------------------------------------- /image/TextEditor-Terminal-QNX-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/TextEditor-Terminal-QNX-Screenshot.png -------------------------------------------------------------------------------- /image/ThinkC-Screenshot-MacOS-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/ThinkC-Screenshot-MacOS-6.png -------------------------------------------------------------------------------- /image/UIQ2-Devel-Win2K-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/UIQ2-Devel-Win2K-Screenshot.png -------------------------------------------------------------------------------- /image/UIQ2-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/UIQ2-Screenshot1.png -------------------------------------------------------------------------------- /image/UIQ2-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/UIQ2-Screenshot2.png -------------------------------------------------------------------------------- /image/UIQ2-Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/UIQ2-Screenshot3.png -------------------------------------------------------------------------------- /image/UIQ2-Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/UIQ2-Screenshot4.png -------------------------------------------------------------------------------- /image/Versions-NeXTSTEP-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Versions-NeXTSTEP-Screenshot.png -------------------------------------------------------------------------------- /image/Vi-AUX-Finder-3_0-Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Vi-AUX-Finder-3_0-Screenshot-1.png -------------------------------------------------------------------------------- /image/Vi-AUX-X11-3_0-Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Vi-AUX-X11-3_0-Screenshot-2.png -------------------------------------------------------------------------------- /image/Xcode-MacOSX-10_4-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Xcode-MacOSX-10_4-Screenshot.png -------------------------------------------------------------------------------- /image/Xcode-MacOSX-10_5-Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Xcode-MacOSX-10_5-Screenshot.png -------------------------------------------------------------------------------- /image/Xcode-MacOSX-10_6-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Xcode-MacOSX-10_6-Screenshot1.png -------------------------------------------------------------------------------- /image/Xcode-MacOSX-10_6-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Xcode-MacOSX-10_6-Screenshot2.png -------------------------------------------------------------------------------- /image/Xcode-MacOSX-10_8-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Xcode-MacOSX-10_8-Screenshot1.png -------------------------------------------------------------------------------- /image/Xcode-MacOSX-10_8-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Xcode-MacOSX-10_8-Screenshot2.png -------------------------------------------------------------------------------- /image/Xcode-macOS-10_13-Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Xcode-macOS-10_13-Screenshot1.png -------------------------------------------------------------------------------- /image/Xcode-macOS-10_13-Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/Xcode-macOS-10_13-Screenshot2.png -------------------------------------------------------------------------------- /image/avatar.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/avatar.tiff -------------------------------------------------------------------------------- /image/gfx/MD_GameOver_Mirrored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/MD_GameOver_Mirrored.png -------------------------------------------------------------------------------- /image/gfx/MD_GameOver_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/MD_GameOver_Normal.png -------------------------------------------------------------------------------- /image/gfx/MD_Tiles_480x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/MD_Tiles_480x40.png -------------------------------------------------------------------------------- /image/gfx/MD_YouWon_Mirrored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/MD_YouWon_Mirrored.png -------------------------------------------------------------------------------- /image/gfx/MD_YouWon_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/MD_YouWon_Normal.png -------------------------------------------------------------------------------- /image/gfx/P2K_End_102x64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/P2K_End_102x64.bmp -------------------------------------------------------------------------------- /image/gfx/P2K_Frame_23x23.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/P2K_Frame_23x23.bmp -------------------------------------------------------------------------------- /image/gfx/P2K_Frame_36x36.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/P2K_Frame_36x36.bmp -------------------------------------------------------------------------------- /image/gfx/P2K_GFX_Bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/P2K_GFX_Bitmaps.h -------------------------------------------------------------------------------- /image/gfx/P2K_Gen_Res_1bpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/P2K_Gen_Res_1bpp.py -------------------------------------------------------------------------------- /image/gfx/P2K_Numbers_231x21.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/P2K_Numbers_231x21.bmp -------------------------------------------------------------------------------- /image/gfx/P2K_Numbers_352x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/P2K_Numbers_352x32.bmp -------------------------------------------------------------------------------- /image/gfx/P2K_Pattern_16x16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/gfx/P2K_Pattern_16x16.bmp -------------------------------------------------------------------------------- /image/hw/C-Pen-600_Photo_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/hw/C-Pen-600_Photo_1.jpg -------------------------------------------------------------------------------- /image/hw/C-Pen-600_Photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/hw/C-Pen-600_Photo_2.jpg -------------------------------------------------------------------------------- /image/hw/C-Pen-600_Photo_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/hw/C-Pen-600_Photo_3.jpg -------------------------------------------------------------------------------- /image/hw/Cybiko-Classic_Photo_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/hw/Cybiko-Classic_Photo_1.jpg -------------------------------------------------------------------------------- /image/icon/2048-Carbon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/2048-Carbon.icns -------------------------------------------------------------------------------- /image/icon/2048-Cocoa-modern.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/2048-Cocoa-modern.icns -------------------------------------------------------------------------------- /image/icon/2048-Cocoa.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/2048-Cocoa.icns -------------------------------------------------------------------------------- /image/icon/IIGS.2048.Icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/IIGS.2048.Icons -------------------------------------------------------------------------------- /image/icon/action/icon_about_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_about_16x16.png -------------------------------------------------------------------------------- /image/icon/action/icon_checkbox_false_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_checkbox_false_16x16.png -------------------------------------------------------------------------------- /image/icon/action/icon_checkbox_true_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_checkbox_true_16x16.png -------------------------------------------------------------------------------- /image/icon/action/icon_exit_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_exit_16x16.png -------------------------------------------------------------------------------- /image/icon/action/icon_help_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_help_16x16.png -------------------------------------------------------------------------------- /image/icon/action/icon_load_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_load_16x16.png -------------------------------------------------------------------------------- /image/icon/action/icon_reset_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_reset_16x16.png -------------------------------------------------------------------------------- /image/icon/action/icon_save_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_save_16x16.png -------------------------------------------------------------------------------- /image/icon/action/icon_tiles_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/action/icon_tiles_16x16.png -------------------------------------------------------------------------------- /image/icon/app-2048-Serenity-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/app-2048-Serenity-16.png -------------------------------------------------------------------------------- /image/icon/app-2048-Serenity-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/app-2048-Serenity-32.png -------------------------------------------------------------------------------- /image/icon/aripos/ArrowH.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/aripos/ArrowH.bmp -------------------------------------------------------------------------------- /image/icon/aripos/ArrowV.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/aripos/ArrowV.bmp -------------------------------------------------------------------------------- /image/icon/aripos/IconBig.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/aripos/IconBig.bmp -------------------------------------------------------------------------------- /image/icon/aripos/IconSmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/aripos/IconSmall.bmp -------------------------------------------------------------------------------- /image/icon/aripos/Lose.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/aripos/Lose.bmp -------------------------------------------------------------------------------- /image/icon/aripos/Win.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/aripos/Win.bmp -------------------------------------------------------------------------------- /image/icon/brew_large_65x42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/brew_large_65x42.png -------------------------------------------------------------------------------- /image/icon/brew_medium_26x26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/brew_medium_26x26.png -------------------------------------------------------------------------------- /image/icon/brew_small_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/brew_small_16x16.png -------------------------------------------------------------------------------- /image/icon/cybiko/0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/cybiko/0.bmp -------------------------------------------------------------------------------- /image/icon/cybiko/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/cybiko/1.bmp -------------------------------------------------------------------------------- /image/icon/cybiko/intro.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/cybiko/intro.bmp -------------------------------------------------------------------------------- /image/icon/cybiko/root.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/cybiko/root.bmp -------------------------------------------------------------------------------- /image/icon/cybiko/score_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/cybiko/score_1.bmp -------------------------------------------------------------------------------- /image/icon/cybiko/score_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/cybiko/score_2.bmp -------------------------------------------------------------------------------- /image/icon/ezx_big_68x43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ezx_big_68x43.png -------------------------------------------------------------------------------- /image/icon/ezx_dia_50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ezx_dia_50x50.png -------------------------------------------------------------------------------- /image/icon/ezx_sml_32x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ezx_sml_32x24.png -------------------------------------------------------------------------------- /image/icon/ic_launcher0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ic_launcher0.png -------------------------------------------------------------------------------- /image/icon/ic_launcher1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ic_launcher1.png -------------------------------------------------------------------------------- /image/icon/ic_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ic_launcher2.png -------------------------------------------------------------------------------- /image/icon/ic_launcher3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ic_launcher3.png -------------------------------------------------------------------------------- /image/icon/ic_launcher4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ic_launcher4.png -------------------------------------------------------------------------------- /image/icon/ic_launcher5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/ic_launcher5.png -------------------------------------------------------------------------------- /image/icon/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/icon1024.png -------------------------------------------------------------------------------- /image/icon/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/icon128.png -------------------------------------------------------------------------------- /image/icon/icon150.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/icon150.tiff -------------------------------------------------------------------------------- /image/icon/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/icon256.png -------------------------------------------------------------------------------- /image/icon/icon48.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/icon48.tiff -------------------------------------------------------------------------------- /image/icon/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/icon64.png -------------------------------------------------------------------------------- /image/icon/icon_qt4_s60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/icon_qt4_s60.svg -------------------------------------------------------------------------------- /image/icon/magx_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/magx_16x16.png -------------------------------------------------------------------------------- /image/icon/magx_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/magx_48x48.png -------------------------------------------------------------------------------- /image/icon/magx_96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/magx_96x96.png -------------------------------------------------------------------------------- /image/icon/p2k_15x15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/p2k_15x15.gif -------------------------------------------------------------------------------- /image/icon/p2k_33x33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/p2k_33x33.gif -------------------------------------------------------------------------------- /image/icon/p2k_41x41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/p2k_41x41.gif -------------------------------------------------------------------------------- /image/icon/precompiled/p2k_app_icon_15x15_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/precompiled/p2k_app_icon_15x15_gif.h -------------------------------------------------------------------------------- /image/icon/precompiled/p2k_app_icon_41x41_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/precompiled/p2k_app_icon_41x41_gif.h -------------------------------------------------------------------------------- /image/icon/qnx_14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/qnx_14x14.png -------------------------------------------------------------------------------- /image/icon/qnx_17x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/qnx_17x14.png -------------------------------------------------------------------------------- /image/icon/qnx_24x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/qnx_24x20.png -------------------------------------------------------------------------------- /image/icon/qnx_44x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/qnx_44x51.png -------------------------------------------------------------------------------- /image/icon/qnx_45x43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/qnx_45x43.png -------------------------------------------------------------------------------- /image/icon/uiq_20x16i.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/uiq_20x16i.bmp -------------------------------------------------------------------------------- /image/icon/uiq_20x16m.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/uiq_20x16m.bmp -------------------------------------------------------------------------------- /image/icon/uiq_32x32i.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/uiq_32x32i.bmp -------------------------------------------------------------------------------- /image/icon/uiq_32x32m.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/icon/uiq_32x32m.bmp -------------------------------------------------------------------------------- /image/src/Icon_2048_Mac_OS_6.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/src/Icon_2048_Mac_OS_6.xcf -------------------------------------------------------------------------------- /image/src/Icon_2048_Mac_OS_8.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/src/Icon_2048_Mac_OS_8.xcf -------------------------------------------------------------------------------- /image/src/Icon_2048_Mac_OS_9.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/src/Icon_2048_Mac_OS_9.xcf -------------------------------------------------------------------------------- /image/src/Icon_2048_Mac_OS_X.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/src/Icon_2048_Mac_OS_X.xcf -------------------------------------------------------------------------------- /image/src/MD_Tiles_480x40.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/image/src/MD_Tiles_480x40.xcf -------------------------------------------------------------------------------- /sound/MD_Turn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/sound/MD_Turn.wav -------------------------------------------------------------------------------- /src/2048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/2048.c -------------------------------------------------------------------------------- /src/2048.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/2048.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/ReadMe.md -------------------------------------------------------------------------------- /src/cpp/2048.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/cpp/2048.cpp -------------------------------------------------------------------------------- /src/cpp/2048.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/cpp/2048.hpp -------------------------------------------------------------------------------- /src/cpp/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/cpp/ReadMe.md -------------------------------------------------------------------------------- /src/old/2048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/old/2048.c -------------------------------------------------------------------------------- /src/old/2048.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/old/2048.h -------------------------------------------------------------------------------- /src/old/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/old/ReadMe.md -------------------------------------------------------------------------------- /src/wsd/2048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/wsd/2048.c -------------------------------------------------------------------------------- /src/wsd/2048.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/wsd/2048.h -------------------------------------------------------------------------------- /src/wsd/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/src/wsd/ReadMe.md -------------------------------------------------------------------------------- /util/build_all_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/util/build_all_linux.sh -------------------------------------------------------------------------------- /util/build_all_mgx_zn5_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/util/build_all_mgx_zn5_package.sh -------------------------------------------------------------------------------- /util/build_mpkg_e2_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/util/build_mpkg_e2_package.sh -------------------------------------------------------------------------------- /util/build_mpkg_e680_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/util/build_mpkg_e680_package.sh -------------------------------------------------------------------------------- /util/build_mpkg_e680i_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/util/build_mpkg_e680i_package.sh -------------------------------------------------------------------------------- /util/build_mpkg_e6_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/util/build_mpkg_e6_packages.sh -------------------------------------------------------------------------------- /util/build_mpkg_z6_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/util/build_mpkg_z6_package.sh -------------------------------------------------------------------------------- /util/build_pep_z6_zn5_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXL/2048/HEAD/util/build_pep_z6_zn5_packages.sh --------------------------------------------------------------------------------