Base URL:
Old mirror logic, mostly gone:
| { | |
| "depends": [ | |
| "codechicken.ForgeMultipart:[1.0.0.228,)", | |
| "net.minecraft:1.6.4" | |
| ], | |
| ... | |
| } |
| /* Before */ | |
| const QMap<QuickModRef, QPair<QuickModVersionRef, bool>> quickmods = | |
| m_instance->getFullVersion()->quickmods; | |
| QList<QuickModRef> mods; | |
| for (auto it = quickmods.cbegin(); it != quickmods.cend(); ++it) | |
| { | |
| const QuickModVersionRef version = it.value().first; | |
| QuickModPtr mod = version.isValid() ? version.findMod() | |
| : MMC->quickmodslist()->mods(it.key()).first(); | |
| QuickModVersionPtr ptr = version.findVersion(); |
| { | |
| "formatVersion": 1, | |
| "installed": [ | |
| { | |
| "qm_uid": "appeng.appliedenergistics2", | |
| "qm_updateUrl": "http://ae2.ae-mod.info/builds/quickmod.qm", | |
| "version": "1.1.21", | |
| "name": "Applied Energistics 2", | |
| "installedFiles": [ | |
| { |
| "versions":{ | |
| "1.5.2":{ | |
| "artefacts":{ | |
| "com.mumfrey:liteloader":{ | |
| "53639d52340479ccf206a04f5e16606f":{ | |
| "tweakClass":"com.mumfrey.liteloader.launch.LiteLoaderTweaker", | |
| "libraries":[ | |
| { | |
| "name":"net.minecraft:launchwrapper:1.5" | |
| }, |
| template <typename T, typename D> | |
| class DefaultVariable | |
| { | |
| public: | |
| operator =(const T & value) | |
| { | |
| currentValue = value; | |
| is_default = currentValue == defaultValue; | |
| } | |
| operator const T &() const |
| class ThumbnailRunnable: public QRunnable | |
| { | |
| public: | |
| ThumbnailRunnable (QString path, SharedIconCache cache) | |
| { | |
| m_path = path; | |
| m_cache = cache; | |
| } | |
| void run() | |
| { |
| template <typename K, typename V> | |
| class RWStorage | |
| { | |
| public: | |
| void add(K key, V value) | |
| { | |
| QWriteLocker l(&lock); | |
| cache[key] = value; | |
| } | |
| V get(K key) const |
| ; ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ S U B R O U T I N E ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ | |
| .text:103CD670 | |
| ; Attributes: bp-based frame | |
| .text:103CD670 | |
| ; int __cdecl MinecraftFuckery() | |
| MinecraftFuckery proc near ; DATA XREF: .text:10129B8Ao | |
| .text:103CD670 | |
| ProcName = dword ptr -4 | |
| .text:103CD670 | |
| push ebp |
| #!/bin/bash -x | |
| # neuter the thing | |
| rm /usr/bin/baloo_file | |
| ln -s /bin/true /usr/bin/baloo_file | |
| rm /usr/bin/baloo_file_cleaner | |
| ln -s /bin/true /usr/bin/baloo_file_cleaner | |
| rm /usr/bin/baloo_file_extractor | |
| ln -s /bin/true /usr/bin/baloo_file_extractor | |
| rm /usr/bin/akonadi_baloo_indexer | |
| ln -s /bin/true /usr/bin/akonadi_baloo_indexer |
Base URL:
Old mirror logic, mostly gone: