Compare commits
	
		
			No commits in common. "8c850ad7db0203d9ea9be51b57a5880fb04a19d1" and "c7e3d4f718e46fe2dfb7caa78da1fa818e92257b" have entirely different histories.
		
	
	
		
			8c850ad7db
			...
			c7e3d4f718
		
	
		| 
						 | 
					@ -16,7 +16,7 @@ android {
 | 
				
			||||||
        minSdk 29
 | 
					        minSdk 29
 | 
				
			||||||
        targetSdk 34
 | 
					        targetSdk 34
 | 
				
			||||||
        versionCode 4
 | 
					        versionCode 4
 | 
				
			||||||
        versionName "v1.6.3"
 | 
					        versionName "v1.6.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 | 
					        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 | 
				
			||||||
        vectorDrawables {
 | 
					        vectorDrawables {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +0,0 @@
 | 
				
			||||||
<lint>
 | 
					 | 
				
			||||||
    <issue id="ExtraTranslation" severity="ignore" />
 | 
					 | 
				
			||||||
</lint>
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1 +1 @@
 | 
				
			||||||
Subproject commit df448152cfb55c528d66832b2470ff1c2277e980
 | 
					Subproject commit 3a9344dea4bc295756a9e05f321da2b8fc26c875
 | 
				
			||||||
| 
						 | 
					@ -521,17 +521,6 @@ namespace GakumasLocal::Local {
 | 
				
			||||||
            return false;
 | 
					            return false;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // 匹配升级卡名
 | 
					 | 
				
			||||||
        if (auto plusPos = origText.find_last_not_of('+'); plusPos != std::string::npos) {
 | 
					 | 
				
			||||||
            const auto noPlusText = origText.substr(0, plusPos + 1);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            if (const auto iter = genericText.find(noPlusText); iter != genericText.end()) {
 | 
					 | 
				
			||||||
                size_t plusCount = origText.length() - (plusPos + 1);
 | 
					 | 
				
			||||||
                *newStr = iter->second + std::string(plusCount, '+');
 | 
					 | 
				
			||||||
                return true;
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        // fmt 文本
 | 
					        // fmt 文本
 | 
				
			||||||
        auto fmtText = StringParser::ParseItems::parse(origText, false);
 | 
					        auto fmtText = StringParser::ParseItems::parse(origText, false);
 | 
				
			||||||
        if (fmtText.isValid) {
 | 
					        if (fmtText.isValid) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue