mirror of https://github.com/procxx/kepka.git
parent
9eb34e496f
commit
81e074115d
|
@ -35,7 +35,7 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
struct UserpicData;
|
struct UserpicData;
|
||||||
struct PeersMap;
|
class PeersMap;
|
||||||
struct MediaData;
|
struct MediaData;
|
||||||
|
|
||||||
} // namespace details
|
} // namespace details
|
||||||
|
|
|
@ -463,7 +463,7 @@ void EditScans::setupSpecialScans(std::map<SpecialFile, ScanInfo> &&files) {
|
||||||
createSpecialScanRow(scan, scan.file, requiresBothSides);
|
createSpecialScanRow(scan, scan.file, requiresBothSides);
|
||||||
}
|
}
|
||||||
auto label = scan.rowCreated.value(
|
auto label = scan.rowCreated.value(
|
||||||
) | rpl::map([=](bool created) {
|
) | rpl::map([=, type = type](bool created) {
|
||||||
return Lang::Viewer(uploadKey(type, created));
|
return Lang::Viewer(uploadKey(type, created));
|
||||||
}) | rpl::flatten_latest(
|
}) | rpl::flatten_latest(
|
||||||
) | Info::Profile::ToUpperValue();
|
) | Info::Profile::ToUpperValue();
|
||||||
|
|
|
@ -124,6 +124,12 @@
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'utils.gyp:Packer',
|
'utils.gyp:Packer',
|
||||||
],
|
],
|
||||||
|
}], [ 'build_mac', {
|
||||||
|
'mac_bundle': '1',
|
||||||
|
'mac_bundle_resources': [
|
||||||
|
'<!@(python -c "for s in \'<@(langpacks)\'.split(\' \'): print(\'<(res_loc)/langs/\' + s + \'.lproj/Localizable.strings\')")',
|
||||||
|
'../Telegram/Images.xcassets',
|
||||||
|
],
|
||||||
}],
|
}],
|
||||||
],
|
],
|
||||||
}],
|
}],
|
||||||
|
|
|
@ -36,11 +36,6 @@
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'mac_bundle': '1',
|
|
||||||
'mac_bundle_resources': [
|
|
||||||
'<!@(python -c "for s in \'<@(langpacks)\'.split(\' \'): print(\'<(res_loc)/langs/\' + s + \'.lproj/Localizable.strings\')")',
|
|
||||||
'../Telegram/Images.xcassets',
|
|
||||||
],
|
|
||||||
}], [ 'build_macold', {
|
}], [ 'build_macold', {
|
||||||
'xcode_settings': {
|
'xcode_settings': {
|
||||||
'OTHER_CPLUSPLUSFLAGS': [ '-nostdinc++' ],
|
'OTHER_CPLUSPLUSFLAGS': [ '-nostdinc++' ],
|
||||||
|
|
Loading…
Reference in New Issue