Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
arrzwao7c9
Browse files Browse the repository at this point in the history
  • Loading branch information
discarded-account-davidasx committed Sep 7, 2024
1 parent 9ab58db commit a1adef9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion latest.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.15
3.3.16
9 changes: 3 additions & 6 deletions wordle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include<windows.h>
#include<graphics.h>
using namespace std;
string ver="3.3.15";
string ver="3.3.16";
string date="20240907";
string config="\\wordle.conf";
vector<string> keyboard={ "Q W E R T Y U I O P",
Expand Down Expand Up @@ -898,9 +898,7 @@ void settings(){
return;
}
int download_file(string pth,string out){
string url="https://github.com/Davidasx/wordle-cpp/raw/main/"+pth;
if(strv["DOWNLOAD_HEAD"]!="")
url="https://cdn.jsdelivr.net/gh/Davidasx/wordle-cpp/"+pth;
string url=strv["DOWNLOAD_HEAD"]+"https://raw.githubusercontent.com/Davidasx/wordle-cpp/main/"+pth;
return system("curl \""+url+"\" --silent -o "+out);
}
int download_release(string rls,string fil,string out){
Expand Down Expand Up @@ -1001,7 +999,7 @@ void update(){
}
else if(EM.lbutton){
if(EM.y>=BG-2&&EM.y<=ED-2&&EM.x>=10&&EM.x<=290){
t=(EM.y-ED+22)/20;
t=(EM.y-BG+22)/20;
}
else continue;
}
Expand Down Expand Up @@ -1300,4 +1298,3 @@ int main(int argc,char** argv){
}
return 0;
}

Binary file modified wordle.exe
Binary file not shown.

0 comments on commit a1adef9

Please # to comment.