mirror of
				https://gitee.com/gfdgd-xi/deep-wine-runner
				synced 2025-11-04 07:22:23 +08:00 
			
		
		
		
	Compare commits
	
		
			4 Commits
		
	
	
		
			fcd4e5e610
			...
			0623b95fca
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 0623b95fca | |||
| fbd14710a5 | |||
| 9a212ca212 | |||
| ee6b166dd7 | 
							
								
								
									
										33
									
								
								.github/workflows/auto-building-pkg.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								.github/workflows/auto-building-pkg.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,33 @@
 | 
				
			|||||||
 | 
					name: Auto Building Wine Runner(pkg)
 | 
				
			||||||
 | 
					run-name: ${{ github.actor }} Auto Building Wine Runner(pkg) 🚀
 | 
				
			||||||
 | 
					on:
 | 
				
			||||||
 | 
					  workflow_dispatch:
 | 
				
			||||||
 | 
					jobs:
 | 
				
			||||||
 | 
					  Explore-GitHub-Actions:
 | 
				
			||||||
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
 | 
					    container: archlinux
 | 
				
			||||||
 | 
					    steps:
 | 
				
			||||||
 | 
					      - name: Building PKG
 | 
				
			||||||
 | 
					        env: 
 | 
				
			||||||
 | 
					          GUSER: ${{ secrets.GUSER }}
 | 
				
			||||||
 | 
					          PASSWORD: ${{ secrets.PASSWORD }}
 | 
				
			||||||
 | 
					          UPLOADURL: ${{ secrets.UPLOADURL }}
 | 
				
			||||||
 | 
					        run: |
 | 
				
			||||||
 | 
					          # 配置环境
 | 
				
			||||||
 | 
					          pacman -Sy
 | 
				
			||||||
 | 
					          pacman -S yay git sudo
 | 
				
			||||||
 | 
					          pacman -S dpkg qt5-base -y
 | 
				
			||||||
 | 
					          yay install
 | 
				
			||||||
 | 
					          git clone https://github.com/gfdgd-xi/deep-wine-runner
 | 
				
			||||||
 | 
					          cd deep-wine-runner
 | 
				
			||||||
 | 
					          make package-deb -j4 
 | 
				
			||||||
 | 
					          make package-pkg -j4
 | 
				
			||||||
 | 
					          cd ..
 | 
				
			||||||
 | 
					          mv spark-deepin-wine-runner*.pkg.tar.zst ../spark-deepin-wine-runner.pkg.tar.zst
 | 
				
			||||||
 | 
					      - name: upload result
 | 
				
			||||||
 | 
					        uses: actions/upload-artifact@v3
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					          name: spark-deepin-wine-runner.pkg.tar.zst
 | 
				
			||||||
 | 
					          path: spark-deepin-wine-runner.pkg.tar.zst
 | 
				
			||||||
 | 
					      
 | 
				
			||||||
 | 
					    
 | 
				
			||||||
							
								
								
									
										20
									
								
								.github/workflows/auto-building.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/auto-building.yml
									
									
									
									
										vendored
									
									
								
							@ -8,10 +8,6 @@ jobs:
 | 
				
			|||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - name: Building DEB
 | 
					      - name: Building DEB
 | 
				
			||||||
        env: 
 | 
					 | 
				
			||||||
          GUSER: ${{ secrets.GUSER }}
 | 
					 | 
				
			||||||
          PASSWORD: ${{ secrets.PASSWORD }}
 | 
					 | 
				
			||||||
          UPLOADURL: ${{ secrets.UPLOADURL }}
 | 
					 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          # 配置环境
 | 
					          # 配置环境
 | 
				
			||||||
          sudo apt update
 | 
					          sudo apt update
 | 
				
			||||||
@ -22,14 +18,24 @@ jobs:
 | 
				
			|||||||
          mv spark-deepin-wine-runner.deb ~
 | 
					          mv spark-deepin-wine-runner.deb ~
 | 
				
			||||||
          mv spark-deepin-wine-runner-ace.deb ~
 | 
					          mv spark-deepin-wine-runner-ace.deb ~
 | 
				
			||||||
      - name: upload result
 | 
					      - name: upload result
 | 
				
			||||||
        uses: actions/upload-artifact@v1
 | 
					        uses: actions/upload-artifact@v3
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          name: spark-deepin-wine-runner.deb
 | 
					          name: spark-deepin-wine-runner.deb
 | 
				
			||||||
          path: /home/runner/spark-deepin-wine-runner.deb
 | 
					          path: /home/runner/spark-deepin-wine-runner.deb
 | 
				
			||||||
      - name: upload result
 | 
					      - name: upload result
 | 
				
			||||||
        uses: actions/upload-artifact@v1
 | 
					        uses: actions/upload-artifact@v3
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          name: spark-deepin-wine-runner-ace.deb
 | 
					          name: spark-deepin-wine-runner-ace.deb
 | 
				
			||||||
          path: /home/runner/spark-deepin-wine-runner-ace.deb
 | 
					          path: /home/runner/spark-deepin-wine-runner-ace.deb
 | 
				
			||||||
      
 | 
					      - name: Building DEB (termux)
 | 
				
			||||||
 | 
					        run: |
 | 
				
			||||||
 | 
					          cd deep-wine-runner
 | 
				
			||||||
 | 
					          make package-deb-termux -j4
 | 
				
			||||||
 | 
					          mv spark-deepin-wine-runner-termux.deb ~
 | 
				
			||||||
 | 
					      - name: upload result
 | 
				
			||||||
 | 
					        uses: actions/upload-artifact@v3
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					          name: spark-deepin-wine-runner-termux.deb
 | 
				
			||||||
 | 
					          path: /home/runner/spark-deepin-wine-runner-termux.deb
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
@ -8,4 +8,7 @@ import requests
 | 
				
			|||||||
programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
 | 
					programPath = os.path.split(os.path.realpath(__file__))[0]  # 返回 string
 | 
				
			||||||
with open(f"{programPath}/information.json") as file:
 | 
					with open(f"{programPath}/information.json") as file:
 | 
				
			||||||
    version = json.loads(file.read())["Version"]
 | 
					    version = json.loads(file.read())["Version"]
 | 
				
			||||||
print(requests.get(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0L3NwYXJrLWRlZXBpbi13aW5lLXJ1bm5lci9JbnN0YWxsLnBocD9WZXJzaW9uPQ==").decode("utf-8") + version).text)
 | 
					print(requests.get(base64.b64decode("aHR0cHM6Ly9zb3VyY2Vmb3JnZS5uZXQvcHJvamVjdHMvZGVlcC13aW5lLXJ1bm5lci13aW5lLWRvd25sb2FkL2ZpbGVzL2Rvd25sb2FkLXRpbWUv").decode("utf-8") 
 | 
				
			||||||
 | 
					                   + version
 | 
				
			||||||
 | 
					                   + base64.b64decode("L2Rvd25sb2Fk").decode("utf-8")
 | 
				
			||||||
 | 
					                   ).text)
 | 
				
			||||||
@ -58,14 +58,6 @@ https://gfdgdxi.lanzouw.com/b0plly5cj
 | 
				
			|||||||
spark-deepin-wine-runner 是普通包,spark-deepin-wine-runner-ace 是使用 ace 兼容环境运行的运行器
 | 
					spark-deepin-wine-runner 是普通包,spark-deepin-wine-runner-ace 是使用 ace 兼容环境运行的运行器
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Wine 运行器离线包
 | 
					## Wine 运行器离线包
 | 
				
			||||||
### X86
 | 
					 | 
				
			||||||
123pan:https://www.123pan.com/s/pDSKVv-pAJWv.html  
 | 
					 | 
				
			||||||
百度网盘:https://pan.baidu.com/s/1klBw63tw2_ZQLzmi11dDBw?pwd=7bu5 提取码: 7bu5  
 | 
					 | 
				
			||||||
诚通网盘:http://ctfile.gfdgdxi.top/d/31540479-59254792-909739?p=2061 (访问密码: 2061)  
 | 
					 | 
				
			||||||
Github:https://github.com/gfdgd-xi/deep-wine-runner/releases/  
 | 
					 | 
				
			||||||
Sourceforge:https://sourceforge.net/projects/deep-wine-runner/files/  
 | 
					 | 
				
			||||||
更多需求需要私聊作者定制(有偿服务)
 | 
					 | 
				
			||||||
### ARM
 | 
					 | 
				
			||||||
需要私聊作者定制(有偿服务)  
 | 
					需要私聊作者定制(有偿服务)  
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 软件架构
 | 
					## 软件架构
 | 
				
			||||||
 | 
				
			|||||||
@ -2615,7 +2615,7 @@ else:
 | 
				
			|||||||
#<h1>©2020~{time.strftime("%Y")} <a href="https://gitee.com/gfdgd-xi">By gfdgd xi</h1>'''
 | 
					#<h1>©2020~{time.strftime("%Y")} <a href="https://gitee.com/gfdgd-xi">By gfdgd xi</h1>'''
 | 
				
			||||||
updateThings = "{} 更新内容:\n{}\n更新时间:{}".format(version, updateThingsString, updateTime, time.strftime("%Y"))
 | 
					updateThings = "{} 更新内容:\n{}\n更新时间:{}".format(version, updateThingsString, updateTime, time.strftime("%Y"))
 | 
				
			||||||
try:
 | 
					try:
 | 
				
			||||||
    threading.Thread(target=requests.get, args=[parse.unquote(base64.b64decode("aHR0cDovLzEyMC4yNS4xNTMuMTQ0L3NwYXJrLWRlZXBpbi13aW5lLXJ1bm5lci9vcGVuL0luc3RhbGwucGhw").decode("utf-8")) + "?Version=" + version]).start()
 | 
					    threading.Thread(target=requests.get, args=[parse.unquote(base64.b64decode("aHR0cHM6Ly9zb3VyY2Vmb3JnZS5uZXQvcHJvamVjdHMvZGVlcC13aW5lLXJ1bm5lci13aW5lLWRvd25sb2FkL2ZpbGVzL29wZW4tdGltZS8=").decode("utf-8")) + version + base64.b64decode("L2Rvd25sb2Fk").decode("utf-8")]).start()
 | 
				
			||||||
except:
 | 
					except:
 | 
				
			||||||
    pass
 | 
					    pass
 | 
				
			||||||
iconListUnBuild = json.loads(readtxt(f"{programPath}/IconList.json"))[0]
 | 
					iconListUnBuild = json.loads(readtxt(f"{programPath}/IconList.json"))[0]
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										5856
									
								
								winetricks
									
									
									
									
									
								
							
							
						
						
									
										5856
									
								
								winetricks
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user